1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// A combination of existing analysis statuses.
//
// The following types satisfy this interface:
//
// AnalysisStatusUnionMemberRuntimeAnalysisStatus
// AnalysisStatusUnionMemberSrcCodeOrDbAnalysisStatus
type AnalysisStatusUnion interface {
isAnalysisStatusUnion()
}
// The status of the analysis.
type AnalysisStatusUnionMemberRuntimeAnalysisStatus struct {
Value RuntimeAnalysisStatus
noSmithyDocumentSerde
}
func (*AnalysisStatusUnionMemberRuntimeAnalysisStatus) isAnalysisStatusUnion() {}
// The status of the source code or database analysis.
type AnalysisStatusUnionMemberSrcCodeOrDbAnalysisStatus struct {
Value SrcCodeOrDbAnalysisStatus
noSmithyDocumentSerde
}
func (*AnalysisStatusUnionMemberSrcCodeOrDbAnalysisStatus) isAnalysisStatusUnion() {}
// Summary information about an analyzable server.
type AnalyzableServerSummary struct {
// The host name of the analyzable server.
Hostname *string
// The ip address of the analyzable server.
IpAddress *string
// The data source of the analyzable server.
Source *string
// The virtual machine id of the analyzable server.
VmId *string
noSmithyDocumentSerde
}
// The combination of the existing analyzers.
//
// The following types satisfy this interface:
//
// AnalyzerNameUnionMemberBinaryAnalyzerName
// AnalyzerNameUnionMemberRunTimeAnalyzerName
// AnalyzerNameUnionMemberSourceCodeAnalyzerName
type AnalyzerNameUnion interface {
isAnalyzerNameUnion()
}
// The binary analyzer names.
type AnalyzerNameUnionMemberBinaryAnalyzerName struct {
Value BinaryAnalyzerName
noSmithyDocumentSerde
}
func (*AnalyzerNameUnionMemberBinaryAnalyzerName) isAnalyzerNameUnion() {}
// The assessment analyzer names.
type AnalyzerNameUnionMemberRunTimeAnalyzerName struct {
Value RunTimeAnalyzerName
noSmithyDocumentSerde
}
func (*AnalyzerNameUnionMemberRunTimeAnalyzerName) isAnalyzerNameUnion() {}
// The source code analyzer names.
type AnalyzerNameUnionMemberSourceCodeAnalyzerName struct {
Value SourceCodeAnalyzerName
noSmithyDocumentSerde
}
func (*AnalyzerNameUnionMemberSourceCodeAnalyzerName) isAnalyzerNameUnion() {}
// The anti-pattern report result.
type AntipatternReportResult struct {
// The analyzer name.
AnalyzerName AnalyzerNameUnion
// Contains the S3 bucket name and the Amazon S3 key name.
AntiPatternReportS3Object *S3Object
// The status of the anti-pattern report generation.
AntipatternReportStatus AntipatternReportStatus
// The status message for the anti-pattern.
AntipatternReportStatusMessage *string
noSmithyDocumentSerde
}
// Contains the summary of anti-patterns and their severity.
type AntipatternSeveritySummary struct {
// Contains the count of anti-patterns.
Count *int32
// Contains the severity of anti-patterns.
Severity Severity
noSmithyDocumentSerde
}
// Contains detailed information about an application component.
type ApplicationComponentDetail struct {
// The status of analysis, if the application component has source code or an
// associated database.
AnalysisStatus SrcCodeOrDbAnalysisStatus
// The S3 bucket name and the Amazon S3 key name for the anti-pattern report.
AntipatternReportS3Object *S3Object
// The status of the anti-pattern report generation.
AntipatternReportStatus AntipatternReportStatus
// The status message for the anti-pattern.
AntipatternReportStatusMessage *string
// The type of application component.
AppType AppType
// The error in the analysis of the source code or database.
AppUnitError *AppUnitError
// The ID of the server that the application component is running on.
AssociatedServerId *string
// Configuration details for the database associated with the application
// component.
DatabaseConfigDetail *DatabaseConfigDetail
// The ID of the application component.
Id *string
// Indicates whether the application component has been included for server
// recommendation or not.
InclusionStatus InclusionStatus
// The timestamp of when the application component was assessed.
LastAnalyzedTimestamp *time.Time
// A list of anti-pattern severity summaries.
ListAntipatternSeveritySummary []AntipatternSeveritySummary
// Set to true if the application component is running on multiple servers.
MoreServerAssociationExists *bool
// The name of application component.
Name *string
// OS driver.
OsDriver *string
// OS version.
OsVersion *string
// The top recommendation set for the application component.
RecommendationSet *RecommendationSet
// The application component subtype.
ResourceSubType ResourceSubType
// A list of the analysis results.
ResultList []Result
// The status of the application unit.
RuntimeStatus RuntimeAnalysisStatus
// The status message for the application unit.
RuntimeStatusMessage *string
// Details about the source code repository associated with the application
// component.
SourceCodeRepositories []SourceCodeRepository
// A detailed description of the analysis status and any failure message.
StatusMessage *string
noSmithyDocumentSerde
}
// Summary of the analysis status of the application component.
type ApplicationComponentStatusSummary struct {
// The number of application components successfully analyzed, partially
// successful or failed analysis.
Count *int32
// The status of database analysis.
SrcCodeOrDbAnalysisStatus SrcCodeOrDbAnalysisStatus
noSmithyDocumentSerde
}
// Contains information about a strategy recommendation for an application
// component.
type ApplicationComponentStrategy struct {
// Set to true if the recommendation is set as preferred.
IsPreferred *bool
// Strategy recommendation for the application component.
Recommendation *RecommendationSet
// The recommendation status of a strategy for an application component.
Status StrategyRecommendation
noSmithyDocumentSerde
}
// Contains the summary of application components.
type ApplicationComponentSummary struct {
// Contains the name of application types.
AppType AppType
// Contains the count of application type.
Count *int32
noSmithyDocumentSerde
}
// Application preferences that you specify.
type ApplicationPreferences struct {
// Application preferences that you specify to prefer managed environment.
ManagementPreference ManagementPreference
noSmithyDocumentSerde
}
// Error in the analysis of the application unit.
type AppUnitError struct {
// The category of the error.
AppUnitErrorCategory AppUnitErrorCategory
noSmithyDocumentSerde
}
// Contains the summary of the assessment results.
type AssessmentSummary struct {
// The Amazon S3 object containing the anti-pattern report.
AntipatternReportS3Object *S3Object
// The status of the anti-pattern report.
AntipatternReportStatus AntipatternReportStatus
// The status message of the anti-pattern report.
AntipatternReportStatusMessage *string
// The time the assessment was performed.
LastAnalyzedTimestamp *time.Time
// List of AntipatternSeveritySummary.
ListAntipatternSeveritySummary []AntipatternSeveritySummary
// List of status summaries of the analyzed application components.
ListApplicationComponentStatusSummary []ApplicationComponentStatusSummary
// List of ApplicationComponentStrategySummary.
ListApplicationComponentStrategySummary []StrategySummary
// List of ApplicationComponentSummary.
ListApplicationComponentSummary []ApplicationComponentSummary
// List of status summaries of the analyzed servers.
ListServerStatusSummary []ServerStatusSummary
// List of ServerStrategySummary.
ListServerStrategySummary []StrategySummary
// List of ServerSummary.
ListServerSummary []ServerSummary
noSmithyDocumentSerde
}
// Defines the criteria of assessment.
type AssessmentTarget struct {
// Condition of an assessment.
//
// This member is required.
Condition Condition
// Name of an assessment.
//
// This member is required.
Name *string
// Values of an assessment.
//
// This member is required.
Values []string
noSmithyDocumentSerde
}
// Object containing details about applications as defined in Application
// Discovery Service.
type AssociatedApplication struct {
// ID of the application as defined in Application Discovery Service.
Id *string
// Name of the application as defined in Application Discovery Service.
Name *string
noSmithyDocumentSerde
}
// Object containing the choice of application destination that you specify.
type AwsManagedResources struct {
// The choice of application destination that you specify.
//
// This member is required.
TargetDestination []AwsManagedTargetDestination
noSmithyDocumentSerde
}
// Business goals that you specify.
type BusinessGoals struct {
// Business goal to reduce license costs.
LicenseCostReduction *int32
// Business goal to modernize infrastructure by moving to cloud native
// technologies.
ModernizeInfrastructureWithCloudNativeTechnologies *int32
// Business goal to reduce the operational overhead on the team by moving into
// managed services.
ReduceOperationalOverheadWithManagedServices *int32
// Business goal to achieve migration at a fast pace.
SpeedOfMigration *int32
noSmithyDocumentSerde
}
// Process data collector that runs in the environment that you specify.
type Collector struct {
// Indicates the health of a collector.
CollectorHealth CollectorHealth
// The ID of the collector.
CollectorId *string
// Current version of the collector that is running in the environment that you
// specify.
CollectorVersion *string
// Summary of the collector configuration.
ConfigurationSummary *ConfigurationSummary
// Hostname of the server that is hosting the collector.
HostName *string
// IP address of the server that is hosting the collector.
IpAddress *string
// Time when the collector last pinged the service.
LastActivityTimeStamp *string
// Time when the collector registered with the service.
RegisteredTimeStamp *string
noSmithyDocumentSerde
}
// Summary of the collector configuration.
type ConfigurationSummary struct {
// IP address based configurations.
IpAddressBasedRemoteInfoList []IPAddressBasedRemoteInfo
// The list of pipeline info configurations.
PipelineInfoList []PipelineInfo
// Info about the remote server source code configuration.
RemoteSourceCodeAnalysisServerInfo *RemoteSourceCodeAnalysisServerInfo
// The list of vCenter configurations.
VcenterBasedRemoteInfoList []VcenterBasedRemoteInfo
// The list of the version control configurations.
VersionControlInfoList []VersionControlInfo
noSmithyDocumentSerde
}
// Configuration information used for assessing databases.
type DatabaseConfigDetail struct {
// AWS Secrets Manager key that holds the credentials that you use to connect to a
// database.
SecretName *string
noSmithyDocumentSerde
}
// Preferences for migrating a database to AWS.
//
// The following types satisfy this interface:
//
// DatabaseMigrationPreferenceMemberHeterogeneous
// DatabaseMigrationPreferenceMemberHomogeneous
// DatabaseMigrationPreferenceMemberNoPreference
type DatabaseMigrationPreference interface {
isDatabaseMigrationPreference()
}
// Indicates whether you are interested in moving from one type of database to
// another. For example, from SQL Server to Amazon Aurora MySQL-Compatible Edition.
type DatabaseMigrationPreferenceMemberHeterogeneous struct {
Value Heterogeneous
noSmithyDocumentSerde
}
func (*DatabaseMigrationPreferenceMemberHeterogeneous) isDatabaseMigrationPreference() {}
// Indicates whether you are interested in moving to the same type of database
// into AWS. For example, from SQL Server in your environment to SQL Server on AWS.
type DatabaseMigrationPreferenceMemberHomogeneous struct {
Value Homogeneous
noSmithyDocumentSerde
}
func (*DatabaseMigrationPreferenceMemberHomogeneous) isDatabaseMigrationPreference() {}
// Indicated that you do not prefer heterogeneous or homogeneous.
type DatabaseMigrationPreferenceMemberNoPreference struct {
Value NoDatabaseMigrationPreference
noSmithyDocumentSerde
}
func (*DatabaseMigrationPreferenceMemberNoPreference) isDatabaseMigrationPreference() {}
// Preferences on managing your databases on AWS.
type DatabasePreferences struct {
// Specifies whether you're interested in self-managed databases or databases
// managed by AWS.
DatabaseManagementPreference DatabaseManagementPreference
// Specifies your preferred migration path.
DatabaseMigrationPreference DatabaseMigrationPreference
noSmithyDocumentSerde
}
// Detailed information about an assessment.
type DataCollectionDetails struct {
// The time the assessment completes.
CompletionTime *time.Time
// The number of failed servers in the assessment.
Failed *int32
// The number of servers with the assessment status IN_PROGESS .
InProgress *int32
// The total number of servers in the assessment.
Servers *int32
// The start time of assessment.
StartTime *time.Time
// The status of the assessment.
Status AssessmentStatus
// The status message of the assessment.
StatusMessage *string
// The number of successful servers in the assessment.
Success *int32
noSmithyDocumentSerde
}
// The object containing information about distinct imports or groups for Strategy
// Recommendations.
type Group struct {
// The key of the specific import group.
Name GroupName
// The value of the specific import group.
Value *string
noSmithyDocumentSerde
}
// The object containing details about heterogeneous database preferences.
type Heterogeneous struct {
// The target database engine for heterogeneous database migration preference.
//
// This member is required.
TargetDatabaseEngine []HeterogeneousTargetDatabaseEngine
noSmithyDocumentSerde
}
// The object containing details about homogeneous database preferences.
type Homogeneous struct {
// The target database engine for homogeneous database migration preferences.
TargetDatabaseEngine []HomogeneousTargetDatabaseEngine
noSmithyDocumentSerde
}
// Information about the import file tasks you request.
type ImportFileTaskInformation struct {
// The time that the import task completes.
CompletionTime *time.Time
// The ID of the import file task.
Id *string
// The name of the import task given in StartImportFileTask .
ImportName *string
// The S3 bucket where the import file is located.
InputS3Bucket *string
// The Amazon S3 key name of the import file.
InputS3Key *string
// The number of records that failed to be imported.
NumberOfRecordsFailed *int32
// The number of records successfully imported.
NumberOfRecordsSuccess *int32
// Start time of the import task.
StartTime *time.Time
// Status of import file task.
Status ImportFileTaskStatus
// The S3 bucket name for status report of import task.
StatusReportS3Bucket *string
// The Amazon S3 key name for status report of import task. The report contains
// details about whether each record imported successfully or why it did not.
StatusReportS3Key *string
noSmithyDocumentSerde
}
// IP address based configurations.
type IPAddressBasedRemoteInfo struct {
// The type of authorization.
AuthType AuthType
// The time stamp of the configuration.
IpAddressConfigurationTimeStamp *string
// The type of the operating system.
OsType OSType
noSmithyDocumentSerde
}
// Preferences for migrating an application to AWS.
//
// The following types satisfy this interface:
//
// ManagementPreferenceMemberAwsManagedResources
// ManagementPreferenceMemberNoPreference
// ManagementPreferenceMemberSelfManageResources
type ManagementPreference interface {
isManagementPreference()
}
// Indicates interest in solutions that are managed by AWS.
type ManagementPreferenceMemberAwsManagedResources struct {
Value AwsManagedResources
noSmithyDocumentSerde
}
func (*ManagementPreferenceMemberAwsManagedResources) isManagementPreference() {}
// No specific preference.
type ManagementPreferenceMemberNoPreference struct {
Value NoManagementPreference
noSmithyDocumentSerde
}
func (*ManagementPreferenceMemberNoPreference) isManagementPreference() {}
// Indicates interest in managing your own resources on AWS.
type ManagementPreferenceMemberSelfManageResources struct {
Value SelfManageResources
noSmithyDocumentSerde
}
func (*ManagementPreferenceMemberSelfManageResources) isManagementPreference() {}
// Information about the server's network for which the assessment was run.
type NetworkInfo struct {
// Information about the name of the interface of the server for which the
// assessment was run.
//
// This member is required.
InterfaceName *string
// Information about the IP address of the server for which the assessment was run.
//
// This member is required.
IpAddress *string
// Information about the MAC address of the server for which the assessment was
// run.
//
// This member is required.
MacAddress *string
// Information about the subnet mask of the server for which the assessment was
// run.
//
// This member is required.
NetMask *string
noSmithyDocumentSerde
}
// The object containing details about database migration preferences, when you
// have no particular preference.
type NoDatabaseMigrationPreference struct {
// The target database engine for database migration preference that you specify.
//
// This member is required.
TargetDatabaseEngine []TargetDatabaseEngine
noSmithyDocumentSerde
}
// Object containing the choice of application destination that you specify.
type NoManagementPreference struct {
// The choice of application destination that you specify.
//
// This member is required.
TargetDestination []NoPreferenceTargetDestination
noSmithyDocumentSerde
}
// Information about the operating system.
type OSInfo struct {
// Information about the type of operating system.
Type OSType
// Information about the version of operating system.
Version *string
noSmithyDocumentSerde
}
// Detailed information of the pipeline.
type PipelineInfo struct {
// The time when the pipeline info was configured.
PipelineConfigurationTimeStamp *string
// The type of pipeline.
PipelineType PipelineType
noSmithyDocumentSerde
}
// Rank of business goals based on priority.
type PrioritizeBusinessGoals struct {
// Rank of business goals based on priority.
BusinessGoals *BusinessGoals
noSmithyDocumentSerde
}
// Contains detailed information about a recommendation report.
type RecommendationReportDetails struct {
// The time that the recommendation report generation task completes.
CompletionTime *time.Time
// The S3 bucket where the report file is located.
S3Bucket *string
// The Amazon S3 key name of the report file.
S3Keys []string
// The time that the recommendation report generation task starts.
StartTime *time.Time
// The status of the recommendation report generation task.
Status RecommendationReportStatus
// The status message for recommendation report generation.
StatusMessage *string
noSmithyDocumentSerde
}
// Contains a recommendation set.
type RecommendationSet struct {
// The recommended strategy.
Strategy Strategy
// The recommended target destination.
TargetDestination TargetDestination
// The target destination for the recommendation set.
TransformationTool *TransformationTool
noSmithyDocumentSerde
}
// Information about the server configured for source code analysis.
type RemoteSourceCodeAnalysisServerInfo struct {
// The time when the remote source code server was configured.
RemoteSourceCodeAnalysisServerConfigurationTimestamp *string
noSmithyDocumentSerde
}
// The error in server analysis.
type Result struct {
// The error in server analysis.
AnalysisStatus AnalysisStatusUnion
// The error in server analysis.
AnalysisType AnalysisType
// The error in server analysis.
AntipatternReportResultList []AntipatternReportResult
// The error in server analysis.
StatusMessage *string
noSmithyDocumentSerde
}
// Contains the S3 bucket name and the Amazon S3 key name.
type S3Object struct {
// The S3 bucket name.
S3Bucket *string
// The Amazon S3 key name.
S3key *string
noSmithyDocumentSerde
}
// Self-managed resources.
type SelfManageResources struct {
// Self-managed resources target destination.
//
// This member is required.
TargetDestination []SelfManageTargetDestination
noSmithyDocumentSerde
}
// Detailed information about a server.
type ServerDetail struct {
// The S3 bucket name and Amazon S3 key name for anti-pattern report.
AntipatternReportS3Object *S3Object
// The status of the anti-pattern report generation.
AntipatternReportStatus AntipatternReportStatus
// A message about the status of the anti-pattern report generation.
AntipatternReportStatusMessage *string
// A list of strategy summaries.
ApplicationComponentStrategySummary []StrategySummary
// The status of assessment for the server.
DataCollectionStatus RunTimeAssessmentStatus
// The server ID.
Id *string
// The timestamp of when the server was assessed.
LastAnalyzedTimestamp *time.Time
// A list of anti-pattern severity summaries.
ListAntipatternSeveritySummary []AntipatternSeveritySummary
// The name of the server.
Name *string
// A set of recommendations.
RecommendationSet *RecommendationSet
// The error in server analysis.
ServerError *ServerError
// The type of server.
ServerType *string
// A message about the status of data collection, which contains detailed
// descriptions of any error messages.
StatusMessage *string
// System information about the server.
SystemInfo *SystemInfo
noSmithyDocumentSerde
}
// The error in server analysis.
type ServerError struct {
// The error category of server analysis.
ServerErrorCategory ServerErrorCategory
noSmithyDocumentSerde
}
// The status summary of the server analysis.
type ServerStatusSummary struct {
// The number of servers successfully analyzed, partially successful or failed
// analysis.
Count *int32
// The status of the run time.
RunTimeAssessmentStatus RunTimeAssessmentStatus
noSmithyDocumentSerde
}
// Contains information about a strategy recommendation for a server.
type ServerStrategy struct {
// Set to true if the recommendation is set as preferred.
IsPreferred *bool
// The number of application components with this strategy recommendation running
// on the server.
NumberOfApplicationComponents *int32
// Strategy recommendation for the server.
Recommendation *RecommendationSet
// The recommendation status of the strategy for the server.
Status StrategyRecommendation
noSmithyDocumentSerde
}
// Object containing details about the servers imported by Application Discovery
// Service
type ServerSummary struct {
// Number of servers.
Count *int32
// Type of operating system for the servers.
ServerOsType ServerOsType
noSmithyDocumentSerde
}
// Object containing source code information that is linked to an application
// component.
type SourceCode struct {
// The repository name for the source code.
Location *string
// The name of the project.
ProjectName *string
// The branch of the source code.
SourceVersion *string
// The type of repository to use for the source code.
VersionControl VersionControl
noSmithyDocumentSerde
}
// Object containing source code information that is linked to an application
// component.
type SourceCodeRepository struct {
// The branch of the source code.
Branch *string
// The name of the project.
ProjectName *string
// The repository name for the source code.
Repository *string
// The type of repository to use for the source code.
VersionControlType *string
noSmithyDocumentSerde
}
// Information about all the available strategy options for migrating and
// modernizing an application component.
type StrategyOption struct {
// Indicates if a specific strategy is preferred for the application component.
IsPreferred *bool
// Type of transformation. For example, Rehost, Replatform, and so on.
Strategy Strategy
// Destination information about where the application component can migrate to.
// For example, EC2 , ECS , and so on.
TargetDestination TargetDestination
// The name of the tool that can be used to transform an application component
// using this strategy.
ToolName TransformationToolName
noSmithyDocumentSerde
}
// Object containing the summary of the strategy recommendations.
type StrategySummary struct {
// The count of recommendations per strategy.
Count *int32
// The name of recommended strategy.
Strategy Strategy
noSmithyDocumentSerde
}
// Information about the server that hosts application components.
type SystemInfo struct {
// CPU architecture type for the server.
CpuArchitecture *string
// File system type for the server.
FileSystemType *string
// Networking information related to a server.
NetworkInfoList []NetworkInfo
// Operating system corresponding to a server.
OsInfo *OSInfo
noSmithyDocumentSerde
}
// Information of the transformation tool that can be used to migrate and
// modernize the application.
type TransformationTool struct {
// Description of the tool.
Description *string
// Name of the tool.
Name TransformationToolName
// URL for installing the tool.
TranformationToolInstallationLink *string
noSmithyDocumentSerde
}
// Details about the server in vCenter.
type VcenterBasedRemoteInfo struct {
// The type of the operating system.
OsType OSType
// The time when the remote server based on vCenter was last configured.
VcenterConfigurationTimeStamp *string
noSmithyDocumentSerde
}
// Details about the version control configuration.
type VersionControlInfo struct {
// The time when the version control system was last configured.
VersionControlConfigurationTimeStamp *string
// The type of version control.
VersionControlType VersionControlType
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
// UnknownUnionMember is returned when a union member is returned over the wire,
// but has an unknown tag.
type UnknownUnionMember struct {
Tag string
Value []byte
noSmithyDocumentSerde
}
func (*UnknownUnionMember) isAnalysisStatusUnion() {}
func (*UnknownUnionMember) isAnalyzerNameUnion() {}
func (*UnknownUnionMember) isDatabaseMigrationPreference() {}
func (*UnknownUnionMember) isManagementPreference() {}
|