#[non_exhaustive]pub struct StartAssessmentInput {
pub s3bucket_for_analysis_data: Option<String>,
pub s3bucket_for_report_data: Option<String>,
pub assessment_targets: Option<Vec<AssessmentTarget>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.s3bucket_for_analysis_data: Option<String> The S3 bucket used by the collectors to send analysis data to the service. The bucket name must begin with migrationhub-strategy-.
s3bucket_for_report_data: Option<String> The S3 bucket where all the reports generated by the service are stored. The bucket name must begin with migrationhub-strategy-.
assessment_targets: Option<Vec<AssessmentTarget>>List of criteria for assessment.
Implementations§
source§impl StartAssessmentInput
impl StartAssessmentInput
sourcepub fn s3bucket_for_analysis_data(&self) -> Option<&str>
pub fn s3bucket_for_analysis_data(&self) -> Option<&str>
The S3 bucket used by the collectors to send analysis data to the service. The bucket name must begin with migrationhub-strategy-.
sourcepub fn s3bucket_for_report_data(&self) -> Option<&str>
pub fn s3bucket_for_report_data(&self) -> Option<&str>
The S3 bucket where all the reports generated by the service are stored. The bucket name must begin with migrationhub-strategy-.
sourcepub fn assessment_targets(&self) -> Option<&[AssessmentTarget]>
pub fn assessment_targets(&self) -> Option<&[AssessmentTarget]>
List of criteria for assessment.
source§impl StartAssessmentInput
impl StartAssessmentInput
sourcepub fn builder() -> StartAssessmentInputBuilder
pub fn builder() -> StartAssessmentInputBuilder
Creates a new builder-style object to manufacture StartAssessmentInput.
Trait Implementations§
source§impl Clone for StartAssessmentInput
impl Clone for StartAssessmentInput
source§fn clone(&self) -> StartAssessmentInput
fn clone(&self) -> StartAssessmentInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for StartAssessmentInput
impl Debug for StartAssessmentInput
source§impl PartialEq<StartAssessmentInput> for StartAssessmentInput
impl PartialEq<StartAssessmentInput> for StartAssessmentInput
source§fn eq(&self, other: &StartAssessmentInput) -> bool
fn eq(&self, other: &StartAssessmentInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StartAssessmentInput
Auto Trait Implementations§
impl RefUnwindSafe for StartAssessmentInput
impl Send for StartAssessmentInput
impl Sync for StartAssessmentInput
impl Unpin for StartAssessmentInput
impl UnwindSafe for StartAssessmentInput
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
Mutably borrows from an owned value. Read more