Struct rusoto_inspector::StartAssessmentRunRequest[][src]

pub struct StartAssessmentRunRequest {
    pub assessment_run_name: Option<String>,
    pub assessment_template_arn: String,
}

Fields

You can specify the name for the assessment run. The name must be unique for the assessment template whose ARN is used to start the assessment run.

The ARN of the assessment template of the assessment run that you want to start.

Trait Implementations

impl Default for StartAssessmentRunRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for StartAssessmentRunRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for StartAssessmentRunRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for StartAssessmentRunRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations