#[non_exhaustive]pub struct StartReplicationTaskAssessmentRunInput { /* private fields */ }
Expand description
Implementations§
source§impl StartReplicationTaskAssessmentRunInput
impl StartReplicationTaskAssessmentRunInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartReplicationTaskAssessmentRun, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartReplicationTaskAssessmentRun, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StartReplicationTaskAssessmentRun
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartReplicationTaskAssessmentRunInput
.
source§impl StartReplicationTaskAssessmentRunInput
impl StartReplicationTaskAssessmentRunInput
sourcepub fn replication_task_arn(&self) -> Option<&str>
pub fn replication_task_arn(&self) -> Option<&str>
Amazon Resource Name (ARN) of the migration task associated with the premigration assessment run that you want to start.
sourcepub fn service_access_role_arn(&self) -> Option<&str>
pub fn service_access_role_arn(&self) -> Option<&str>
ARN of the service role needed to start the assessment run. The role must allow the iam:PassRole
action.
sourcepub fn result_location_bucket(&self) -> Option<&str>
pub fn result_location_bucket(&self) -> Option<&str>
Amazon S3 bucket where you want DMS to store the results of this assessment run.
sourcepub fn result_location_folder(&self) -> Option<&str>
pub fn result_location_folder(&self) -> Option<&str>
Folder within an Amazon S3 bucket where you want DMS to store the results of this assessment run.
sourcepub fn result_encryption_mode(&self) -> Option<&str>
pub fn result_encryption_mode(&self) -> Option<&str>
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.
sourcepub fn result_kms_key_arn(&self) -> Option<&str>
pub fn result_kms_key_arn(&self) -> Option<&str>
ARN of a custom KMS encryption key that you specify when you set ResultEncryptionMode
to "SSE_KMS
".
sourcepub fn assessment_run_name(&self) -> Option<&str>
pub fn assessment_run_name(&self) -> Option<&str>
Unique name to identify the assessment run.
sourcepub fn include_only(&self) -> Option<&[String]>
pub fn include_only(&self) -> Option<&[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.
sourcepub fn exclude(&self) -> Option<&[String]>
pub fn exclude(&self) -> Option<&[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.
Trait Implementations§
source§impl Clone for StartReplicationTaskAssessmentRunInput
impl Clone for StartReplicationTaskAssessmentRunInput
source§fn clone(&self) -> StartReplicationTaskAssessmentRunInput
fn clone(&self) -> StartReplicationTaskAssessmentRunInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<StartReplicationTaskAssessmentRunInput> for StartReplicationTaskAssessmentRunInput
impl PartialEq<StartReplicationTaskAssessmentRunInput> for StartReplicationTaskAssessmentRunInput
source§fn eq(&self, other: &StartReplicationTaskAssessmentRunInput) -> bool
fn eq(&self, other: &StartReplicationTaskAssessmentRunInput) -> bool
self
and other
values to be equal, and is used
by ==
.