Struct aws_sdk_databasemigration::operation::describe_applicable_individual_assessments::DescribeApplicableIndividualAssessmentsOutput
source · #[non_exhaustive]pub struct DescribeApplicableIndividualAssessmentsOutput {
pub individual_assessment_names: Option<Vec<String>>,
pub marker: Option<String>,
/* private fields */
}
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.individual_assessment_names: Option<Vec<String>>
List of names for the individual assessments supported by the premigration assessment run that you start based on the specified request parameters. For more information on the available individual assessments, including compatibility with different migration task configurations, see Working with premigration assessment runs in the Database Migration Service User Guide.
marker: Option<String>
Pagination token returned for you to pass to a subsequent request. If you pass this token as the Marker
value in a subsequent request, the response includes only records beyond the marker, up to the value specified in the request by MaxRecords
.
Implementations§
source§impl DescribeApplicableIndividualAssessmentsOutput
impl DescribeApplicableIndividualAssessmentsOutput
sourcepub fn individual_assessment_names(&self) -> &[String]
pub fn individual_assessment_names(&self) -> &[String]
List of names for the individual assessments supported by the premigration assessment run that you start based on the specified request parameters. For more information on the available individual assessments, including compatibility with different migration task configurations, see Working with premigration assessment runs in the Database Migration Service User Guide.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .individual_assessment_names.is_none()
.
source§impl DescribeApplicableIndividualAssessmentsOutput
impl DescribeApplicableIndividualAssessmentsOutput
sourcepub fn builder() -> DescribeApplicableIndividualAssessmentsOutputBuilder
pub fn builder() -> DescribeApplicableIndividualAssessmentsOutputBuilder
Creates a new builder-style object to manufacture DescribeApplicableIndividualAssessmentsOutput
.
Trait Implementations§
source§impl Clone for DescribeApplicableIndividualAssessmentsOutput
impl Clone for DescribeApplicableIndividualAssessmentsOutput
source§fn clone(&self) -> DescribeApplicableIndividualAssessmentsOutput
fn clone(&self) -> DescribeApplicableIndividualAssessmentsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeApplicableIndividualAssessmentsOutput
impl PartialEq for DescribeApplicableIndividualAssessmentsOutput
source§fn eq(&self, other: &DescribeApplicableIndividualAssessmentsOutput) -> bool
fn eq(&self, other: &DescribeApplicableIndividualAssessmentsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeApplicableIndividualAssessmentsOutput
impl RequestId for DescribeApplicableIndividualAssessmentsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DescribeApplicableIndividualAssessmentsOutput
Auto Trait Implementations§
impl Freeze for DescribeApplicableIndividualAssessmentsOutput
impl RefUnwindSafe for DescribeApplicableIndividualAssessmentsOutput
impl Send for DescribeApplicableIndividualAssessmentsOutput
impl Sync for DescribeApplicableIndividualAssessmentsOutput
impl Unpin for DescribeApplicableIndividualAssessmentsOutput
impl UnwindSafe for DescribeApplicableIndividualAssessmentsOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more