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
sourceimpl DescribeApplicableIndividualAssessments
impl DescribeApplicableIndividualAssessments
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
sourceimpl Clone for DescribeApplicableIndividualAssessments
impl Clone for DescribeApplicableIndividualAssessments
sourcefn clone(&self) -> DescribeApplicableIndividualAssessments
fn clone(&self) -> DescribeApplicableIndividualAssessments
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl !RefUnwindSafe for DescribeApplicableIndividualAssessments
impl Send for DescribeApplicableIndividualAssessments
impl Sync for DescribeApplicableIndividualAssessments
impl Unpin for DescribeApplicableIndividualAssessments
impl !UnwindSafe for DescribeApplicableIndividualAssessments
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more