Struct aws_sdk_databasemigration::operation::export_metadata_model_assessment::builders::ExportMetadataModelAssessmentInputBuilder
source · #[non_exhaustive]pub struct ExportMetadataModelAssessmentInputBuilder { /* private fields */ }
Expand description
A builder for ExportMetadataModelAssessmentInput
.
Implementations§
source§impl ExportMetadataModelAssessmentInputBuilder
impl ExportMetadataModelAssessmentInputBuilder
sourcepub fn migration_project_identifier(self, input: impl Into<String>) -> Self
pub fn migration_project_identifier(self, input: impl Into<String>) -> Self
The migration project name or Amazon Resource Name (ARN).
This field is required.sourcepub fn set_migration_project_identifier(self, input: Option<String>) -> Self
pub fn set_migration_project_identifier(self, input: Option<String>) -> Self
The migration project name or Amazon Resource Name (ARN).
sourcepub fn get_migration_project_identifier(&self) -> &Option<String>
pub fn get_migration_project_identifier(&self) -> &Option<String>
The migration project name or Amazon Resource Name (ARN).
sourcepub fn selection_rules(self, input: impl Into<String>) -> Self
pub fn selection_rules(self, input: impl Into<String>) -> Self
A value that specifies the database objects to assess.
This field is required.sourcepub fn set_selection_rules(self, input: Option<String>) -> Self
pub fn set_selection_rules(self, input: Option<String>) -> Self
A value that specifies the database objects to assess.
sourcepub fn get_selection_rules(&self) -> &Option<String>
pub fn get_selection_rules(&self) -> &Option<String>
A value that specifies the database objects to assess.
sourcepub fn file_name(self, input: impl Into<String>) -> Self
pub fn file_name(self, input: impl Into<String>) -> Self
The name of the assessment file to create in your Amazon S3 bucket.
sourcepub fn set_file_name(self, input: Option<String>) -> Self
pub fn set_file_name(self, input: Option<String>) -> Self
The name of the assessment file to create in your Amazon S3 bucket.
sourcepub fn get_file_name(&self) -> &Option<String>
pub fn get_file_name(&self) -> &Option<String>
The name of the assessment file to create in your Amazon S3 bucket.
sourcepub fn assessment_report_types(self, input: AssessmentReportType) -> Self
pub fn assessment_report_types(self, input: AssessmentReportType) -> Self
Appends an item to assessment_report_types
.
To override the contents of this collection use set_assessment_report_types
.
The file format of the assessment file.
sourcepub fn set_assessment_report_types(
self,
input: Option<Vec<AssessmentReportType>>,
) -> Self
pub fn set_assessment_report_types( self, input: Option<Vec<AssessmentReportType>>, ) -> Self
The file format of the assessment file.
sourcepub fn get_assessment_report_types(&self) -> &Option<Vec<AssessmentReportType>>
pub fn get_assessment_report_types(&self) -> &Option<Vec<AssessmentReportType>>
The file format of the assessment file.
sourcepub fn build(self) -> Result<ExportMetadataModelAssessmentInput, BuildError>
pub fn build(self) -> Result<ExportMetadataModelAssessmentInput, BuildError>
Consumes the builder and constructs a ExportMetadataModelAssessmentInput
.
source§impl ExportMetadataModelAssessmentInputBuilder
impl ExportMetadataModelAssessmentInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ExportMetadataModelAssessmentOutput, SdkError<ExportMetadataModelAssessmentError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ExportMetadataModelAssessmentOutput, SdkError<ExportMetadataModelAssessmentError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ExportMetadataModelAssessmentInputBuilder
impl Clone for ExportMetadataModelAssessmentInputBuilder
source§fn clone(&self) -> ExportMetadataModelAssessmentInputBuilder
fn clone(&self) -> ExportMetadataModelAssessmentInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ExportMetadataModelAssessmentInputBuilder
impl Default for ExportMetadataModelAssessmentInputBuilder
source§fn default() -> ExportMetadataModelAssessmentInputBuilder
fn default() -> ExportMetadataModelAssessmentInputBuilder
source§impl PartialEq for ExportMetadataModelAssessmentInputBuilder
impl PartialEq for ExportMetadataModelAssessmentInputBuilder
source§fn eq(&self, other: &ExportMetadataModelAssessmentInputBuilder) -> bool
fn eq(&self, other: &ExportMetadataModelAssessmentInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ExportMetadataModelAssessmentInputBuilder
Auto Trait Implementations§
impl Freeze for ExportMetadataModelAssessmentInputBuilder
impl RefUnwindSafe for ExportMetadataModelAssessmentInputBuilder
impl Send for ExportMetadataModelAssessmentInputBuilder
impl Sync for ExportMetadataModelAssessmentInputBuilder
impl Unpin for ExportMetadataModelAssessmentInputBuilder
impl UnwindSafe for ExportMetadataModelAssessmentInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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