Struct aws_sdk_databasemigration::input::StartReplicationTaskAssessmentRunInput [−][src]
#[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
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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartReplicationTaskAssessmentRun, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartReplicationTaskAssessmentRun, AwsErrorRetryPolicy>, BuildError>
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
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
Mutably borrows from an owned value. Read more
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