#[non_exhaustive]pub struct StartAppAssessmentInput {
pub app_arn: Option<String>,
pub app_version: Option<String>,
pub assessment_name: Option<String>,
pub client_token: Option<String>,
pub tags: Option<HashMap<String, String>>,
}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.app_arn: Option<String>Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:partition:resiliencehub:region:account:app/app-id. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
app_version: Option<String>The version of the application.
assessment_name: Option<String>The name for the assessment.
client_token: Option<String>Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. You should not reuse the same client token for other API requests.
Tags assigned to the resource. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key/value pair.
Implementations§
source§impl StartAppAssessmentInput
impl StartAppAssessmentInput
sourcepub fn app_arn(&self) -> Option<&str>
pub fn app_arn(&self) -> Option<&str>
Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:partition:resiliencehub:region:account:app/app-id. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
sourcepub fn app_version(&self) -> Option<&str>
pub fn app_version(&self) -> Option<&str>
The version of the application.
sourcepub fn assessment_name(&self) -> Option<&str>
pub fn assessment_name(&self) -> Option<&str>
The name for the assessment.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. You should not reuse the same client token for other API requests.
Tags assigned to the resource. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key/value pair.
source§impl StartAppAssessmentInput
impl StartAppAssessmentInput
sourcepub fn builder() -> StartAppAssessmentInputBuilder
pub fn builder() -> StartAppAssessmentInputBuilder
Creates a new builder-style object to manufacture StartAppAssessmentInput.
Trait Implementations§
source§impl Clone for StartAppAssessmentInput
impl Clone for StartAppAssessmentInput
source§fn clone(&self) -> StartAppAssessmentInput
fn clone(&self) -> StartAppAssessmentInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StartAppAssessmentInput
impl Debug for StartAppAssessmentInput
source§impl PartialEq for StartAppAssessmentInput
impl PartialEq for StartAppAssessmentInput
source§fn eq(&self, other: &StartAppAssessmentInput) -> bool
fn eq(&self, other: &StartAppAssessmentInput) -> bool
self and other values to be equal, and is used
by ==.