[][src]Struct rusoto_dms::StartReplicationTaskAssessmentRunMessage

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,
}

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

impl Clone for StartReplicationTaskAssessmentRunMessage[src]

impl Debug for StartReplicationTaskAssessmentRunMessage[src]

impl Default for StartReplicationTaskAssessmentRunMessage[src]

impl PartialEq<StartReplicationTaskAssessmentRunMessage> for StartReplicationTaskAssessmentRunMessage[src]

impl Serialize for StartReplicationTaskAssessmentRunMessage[src]

impl StructuralPartialEq for StartReplicationTaskAssessmentRunMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.