|
NAMEPaws::DMS::StartReplicationTaskAssessmentRun - Arguments for method StartReplicationTaskAssessmentRun on Paws::DMS DESCRIPTIONThis class represents the parameters used for calling the method StartReplicationTaskAssessmentRun on the AWS Database Migration Service service. Use the attributes of this class as arguments to method StartReplicationTaskAssessmentRun. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to StartReplicationTaskAssessmentRun. SYNOPSIS my $dms = Paws->service('DMS');
my $StartReplicationTaskAssessmentRunResponse =
$dms->StartReplicationTaskAssessmentRun(
AssessmentRunName => 'MyString',
ReplicationTaskArn => 'MyString',
ResultLocationBucket => 'MyString',
ServiceAccessRoleArn => 'MyString',
Exclude => [ 'MyString', ... ], # OPTIONAL
IncludeOnly => [ 'MyString', ... ], # OPTIONAL
ResultEncryptionMode => 'MyString', # OPTIONAL
ResultKmsKeyArn => 'MyString', # OPTIONAL
ResultLocationFolder => 'MyString', # OPTIONAL
);
# Results:
my $ReplicationTaskAssessmentRun =
$StartReplicationTaskAssessmentRunResponse->ReplicationTaskAssessmentRun;
# Returns a L<Paws::DMS::StartReplicationTaskAssessmentRunResponse> object.
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/dms/StartReplicationTaskAssessmentRun> ATTRIBUTESREQUIRED AssessmentRunName => StrUnique name to identify the assessment run. Exclude => ArrayRef[Str|Undef]Space-separated list of names for specific individual assessments that you want to exclude. These names come from the default list of individual assessments that AWS DMS supports for the associated migration task. This task is specified by "ReplicationTaskArn". You can't set a value for "Exclude" if you also set a value for "IncludeOnly" in the API operation. To identify the names of the default individual assessments that AWS DMS supports for the associated migration task, run the "DescribeApplicableIndividualAssessments" operation using its own "ReplicationTaskArn" request parameter. IncludeOnly => ArrayRef[Str|Undef]Space-separated list of names for specific individual assessments that you want to include. These names come from the default list of individual assessments that AWS DMS supports for the associated migration task. This task is specified by "ReplicationTaskArn". You can't set a value for "IncludeOnly" if you also set a value for "Exclude" in the API operation. To identify the names of the default individual assessments that AWS DMS supports for the associated migration task, run the "DescribeApplicableIndividualAssessments" operation using its own "ReplicationTaskArn" request parameter. REQUIRED ReplicationTaskArn => StrAmazon Resource Name (ARN) of the migration task associated with the premigration assessment run that you want to start. ResultEncryptionMode => StrEncryption mode that you can specify to encrypt the results of this assessment run. If you don't specify this request parameter, AWS DMS stores the assessment run results without encryption. You can specify one of the options following:
ResultKmsKeyArn => StrARN of a custom KMS encryption key that you specify when you set "ResultEncryptionMode" to ""SSE_KMS"". REQUIRED ResultLocationBucket => StrAmazon S3 bucket where you want AWS DMS to store the results of this assessment run. ResultLocationFolder => StrFolder within an Amazon S3 bucket where you want AWS DMS to store the results of this assessment run. REQUIRED ServiceAccessRoleArn => StrARN of a service role needed to start the assessment run. SEE ALSOThis class forms part of Paws, documenting arguments for method StartReplicationTaskAssessmentRun in Paws::DMS BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|