Struct aws_sdk_databasemigration::client::fluent_builders::DescribeApplicableIndividualAssessments
source · pub struct DescribeApplicableIndividualAssessments { /* private fields */ }
Expand description
Fluent builder constructing a request to DescribeApplicableIndividualAssessments
.
Provides a list of individual assessments that you can specify for a new premigration assessment run, given one or more parameters.
If you specify an existing migration task, this operation provides the default individual assessments you can specify for that task. Otherwise, the specified parameters model elements of a possible migration task on which to base a premigration assessment run.
To use these migration task modeling parameters, you must specify an existing replication instance, a source database engine, a target database engine, and a migration type. This combination of parameters potentially limits the default individual assessments available for an assessment run created for a corresponding migration task.
If you specify no parameters, this operation provides a list of all possible individual assessments that you can specify for an assessment run. If you specify any one of the task modeling parameters, you must specify all of them or the operation cannot provide a list of individual assessments. The only parameter that you can specify alone is for an existing migration task. The specified task definition then determines the default list of individual assessments that you can specify in an assessment run for the task.
Implementations§
source§impl DescribeApplicableIndividualAssessments
impl DescribeApplicableIndividualAssessments
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DescribeApplicableIndividualAssessments, AwsResponseRetryClassifier>, SdkError<DescribeApplicableIndividualAssessmentsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DescribeApplicableIndividualAssessments, AwsResponseRetryClassifier>, SdkError<DescribeApplicableIndividualAssessmentsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<DescribeApplicableIndividualAssessmentsOutput, SdkError<DescribeApplicableIndividualAssessmentsError>>
pub async fn send(
self
) -> Result<DescribeApplicableIndividualAssessmentsOutput, SdkError<DescribeApplicableIndividualAssessmentsError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn into_paginator(self) -> DescribeApplicableIndividualAssessmentsPaginator
pub fn into_paginator(self) -> DescribeApplicableIndividualAssessmentsPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a Stream
.
sourcepub fn replication_task_arn(self, input: impl Into<String>) -> Self
pub fn replication_task_arn(self, input: impl Into<String>) -> Self
Amazon Resource Name (ARN) of a migration task on which you want to base the default list of individual assessments.
sourcepub fn set_replication_task_arn(self, input: Option<String>) -> Self
pub fn set_replication_task_arn(self, input: Option<String>) -> Self
Amazon Resource Name (ARN) of a migration task on which you want to base the default list of individual assessments.
sourcepub fn replication_instance_arn(self, input: impl Into<String>) -> Self
pub fn replication_instance_arn(self, input: impl Into<String>) -> Self
ARN of a replication instance on which you want to base the default list of individual assessments.
sourcepub fn set_replication_instance_arn(self, input: Option<String>) -> Self
pub fn set_replication_instance_arn(self, input: Option<String>) -> Self
ARN of a replication instance on which you want to base the default list of individual assessments.
sourcepub fn source_engine_name(self, input: impl Into<String>) -> Self
pub fn source_engine_name(self, input: impl Into<String>) -> Self
Name of a database engine that the specified replication instance supports as a source.
sourcepub fn set_source_engine_name(self, input: Option<String>) -> Self
pub fn set_source_engine_name(self, input: Option<String>) -> Self
Name of a database engine that the specified replication instance supports as a source.
sourcepub fn target_engine_name(self, input: impl Into<String>) -> Self
pub fn target_engine_name(self, input: impl Into<String>) -> Self
Name of a database engine that the specified replication instance supports as a target.
sourcepub fn set_target_engine_name(self, input: Option<String>) -> Self
pub fn set_target_engine_name(self, input: Option<String>) -> Self
Name of a database engine that the specified replication instance supports as a target.
sourcepub fn migration_type(self, input: MigrationTypeValue) -> Self
pub fn migration_type(self, input: MigrationTypeValue) -> Self
Name of the migration type that each provided individual assessment must support.
sourcepub fn set_migration_type(self, input: Option<MigrationTypeValue>) -> Self
pub fn set_migration_type(self, input: Option<MigrationTypeValue>) -> Self
Name of the migration type that each provided individual assessment must support.
sourcepub fn max_records(self, input: i32) -> Self
pub fn max_records(self, input: i32) -> Self
Maximum number of records to include in the response. If more records exist than the specified MaxRecords
value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.
sourcepub fn set_max_records(self, input: Option<i32>) -> Self
pub fn set_max_records(self, input: Option<i32>) -> Self
Maximum number of records to include in the response. If more records exist than the specified MaxRecords
value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
Optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords
.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
Optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords
.
Trait Implementations§
source§impl Clone for DescribeApplicableIndividualAssessments
impl Clone for DescribeApplicableIndividualAssessments
source§fn clone(&self) -> DescribeApplicableIndividualAssessments
fn clone(&self) -> DescribeApplicableIndividualAssessments
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more