#[non_exhaustive]
pub struct StartReplicationTaskAssessmentRunInput { pub replication_task_arn: Option<String>, pub service_access_role_arn: Option<String>, pub result_location_bucket: Option<String>, pub result_location_folder: Option<String>, pub result_encryption_mode: Option<String>, pub result_kms_key_arn: Option<String>, pub assessment_run_name: Option<String>, pub include_only: Option<Vec<String>>, pub exclude: Option<Vec<String>>, }
Expand description

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
replication_task_arn: Option<String>

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

service_access_role_arn: Option<String>

ARN of the service role needed to start the assessment run. The role must allow the iam:PassRole action.

result_location_bucket: Option<String>

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

result_location_folder: Option<String>

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

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, 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" – Key Management Service (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".

assessment_run_name: Option<String>

Unique name to identify the assessment run.

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 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 DMS supports for the associated migration task, run the DescribeApplicableIndividualAssessments operation using its own ReplicationTaskArn request parameter.

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 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 DMS supports for the associated migration task, run the DescribeApplicableIndividualAssessments operation using its own ReplicationTaskArn request parameter.

Implementations

Consumes the builder and constructs an Operation<StartReplicationTaskAssessmentRun>

Creates a new builder-style object to manufacture StartReplicationTaskAssessmentRunInput

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

ARN of the service role needed to start the assessment run. The role must allow the iam:PassRole action.

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

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

Encryption mode that you can specify to encrypt the results of this assessment run. If you don't specify this request parameter, 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" – Key Management Service (KMS) encryption. This encryption can use either a custom KMS encryption key that you specify or the default KMS encryption key that DMS provides.

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

Unique name to identify the assessment run.

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 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 DMS supports for the associated migration task, run the DescribeApplicableIndividualAssessments operation using its own ReplicationTaskArn request parameter.

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 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 DMS supports for the associated migration task, run the DescribeApplicableIndividualAssessments operation using its own ReplicationTaskArn request parameter.

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

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

This method tests for !=.

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

Returns the argument unchanged.

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

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

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

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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more