Struct rusoto_dms::StartReplicationTaskAssessmentRunMessage[][src]

pub struct StartReplicationTaskAssessmentRunMessage {
    pub assessment_run_name: String,
    pub exclude: Option<Vec<String>>,
    pub include_only: Option<Vec<String>>,
    pub replication_task_arn: String,
    pub result_encryption_mode: Option<String>,
    pub result_kms_key_arn: Option<String>,
    pub result_location_bucket: String,
    pub result_location_folder: Option<String>,
    pub service_access_role_arn: String,
}
Expand description

Fields

assessment_run_name: String

Unique name to identify the assessment run.

exclude: Option<Vec<String>>

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.

include_only: Option<Vec<String>>

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.

replication_task_arn: String

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

result_encryption_mode: Option<String>

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:

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

  • "SSEKMS" – 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.

result_kms_key_arn: Option<String>

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

result_location_bucket: String

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

result_location_folder: Option<String>

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

service_access_role_arn: String

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

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.