Struct cfn::aws::ssm::MaintenanceWindowTaskProperties [] [src]

pub struct MaintenanceWindowTaskProperties {
    pub description: Option<Value<String>>,
    pub logging_info: Option<Value<LoggingInfo>>,
    pub max_concurrency: Value<String>,
    pub max_errors: Value<String>,
    pub name: Option<Value<String>>,
    pub priority: Value<u32>,
    pub service_role_arn: Value<String>,
    pub targets: ValueList<Target>,
    pub task_arn: Value<String>,
    pub task_invocation_parameters: Option<Value<TaskInvocationParameters>>,
    pub task_parameters: Option<Value<Value>>,
    pub task_type: Value<String>,
    pub window_id: Option<Value<String>>,
}

Properties for the MaintenanceWindowTask resource.

Fields

Property Description.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property LoggingInfo.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property MaxConcurrency.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property MaxErrors.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Name.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Priority.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property ServiceRoleArn.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Targets.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property TaskArn.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property TaskInvocationParameters.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property TaskParameters.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property TaskType.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property WindowId.

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

Trait Implementations

impl Debug for MaintenanceWindowTaskProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for MaintenanceWindowTaskProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<MaintenanceWindowTaskProperties> for MaintenanceWindowTask
[src]

[src]

Performs the conversion.

Auto Trait Implementations