Struct cfn::aws::inspector::AssessmentTemplateProperties [] [src]

pub struct AssessmentTemplateProperties {
    pub assessment_target_arn: Value<String>,
    pub assessment_template_name: Option<Value<String>>,
    pub duration_in_seconds: Value<u32>,
    pub rules_package_arns: ValueList<String>,
    pub user_attributes_for_findings: Option<ValueList<Tag>>,
}

Properties for the AssessmentTemplate resource.

Fields

Property AssessmentTargetArn.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property AssessmentTemplateName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property DurationInSeconds.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property RulesPackageArns.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property UserAttributesForFindings.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Trait Implementations

impl Debug for AssessmentTemplateProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for AssessmentTemplateProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for AssessmentTemplateProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<AssessmentTemplateProperties> for AssessmentTemplate
[src]

[src]

Performs the conversion.

Auto Trait Implementations