The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Paws::DMS::StartReplicationTaskAssessmentRun - Arguments for method StartReplicationTaskAssessmentRun on Paws::DMS

DESCRIPTION

This 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

ATTRIBUTES

REQUIRED AssessmentRunName => Str

Unique 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 => Str

Amazon Resource Name (ARN) of the migration task associated with the premigration assessment run that you want to start.

ResultEncryptionMode => Str

Encryption 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:

  • "SSE_S3" – The server-side encryption provided as a default by Amazon S3.

  • "SSE_KMS" – AWS Key Management Service (AWS KMS) encryption. This encryption can use either a custom KMS encryption key that you specify or the default KMS encryption key that DMS provides.

ResultKmsKeyArn => Str

ARN of a custom KMS encryption key that you specify when you set ResultEncryptionMode to "SSE_KMS".

REQUIRED ResultLocationBucket => Str

Amazon S3 bucket where you want AWS DMS to store the results of this assessment run.

ResultLocationFolder => Str

Folder within an Amazon S3 bucket where you want AWS DMS to store the results of this assessment run.

REQUIRED ServiceAccessRoleArn => Str

ARN of a service role needed to start the assessment run.

SEE ALSO

This class forms part of Paws, documenting arguments for method StartReplicationTaskAssessmentRun in Paws::DMS

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues