#[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>>,
pub assessment_data_source_type: Option<AssessmentDataSourceType>,
}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.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.
assessment_data_source_type: Option<AssessmentDataSourceType>The data source type of an assessment to be started.
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) -> &[AssessmentTarget]
pub fn assessment_targets(&self) -> &[AssessmentTarget]
List of criteria for assessment.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .assessment_targets.is_none().
sourcepub fn assessment_data_source_type(&self) -> Option<&AssessmentDataSourceType>
pub fn assessment_data_source_type(&self) -> Option<&AssessmentDataSourceType>
The data source type of an assessment to be started.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StartAssessmentInput
impl Debug for StartAssessmentInput
source§impl PartialEq for StartAssessmentInput
impl PartialEq for StartAssessmentInput
source§fn eq(&self, other: &StartAssessmentInput) -> bool
fn eq(&self, other: &StartAssessmentInput) -> bool
self and other values to be equal, and is used
by ==.