Table of Contents

Class CfnMaintenanceWindowTarget.TargetsProperty

Namespace
Amazon.CDK.AWS.SSM
Assembly
Amazon.CDK.AWS.SSM.dll

The Targets property type specifies adding a target to a maintenance window target in AWS Systems Manager .

public class CfnMaintenanceWindowTarget.TargetsProperty : CfnMaintenanceWindowTarget.ITargetsProperty
Inheritance
CfnMaintenanceWindowTarget.TargetsProperty
Implements
Inherited Members

Examples

// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SSM;

             var targetsProperty = new TargetsProperty {
                 Key = "key",
                 Values = new [] { "values" }
             };

Remarks

Constructors

TargetsProperty()

public TargetsProperty()

Properties

Key

User-defined criteria for sending commands that target managed nodes that meet the criteria.

public string Key { get; set; }

Property Value

string

Remarks

Values

User-defined criteria that maps to Key .

public string[] Values { get; set; }

Property Value

string[]

Remarks

For example, if you specified tag:ServerRole , you could specify value:WebServer to run a command on instances that include EC2 tags of ServerRole,WebServer .

Depending on the type of target, the maximum number of values for a key might be lower than the global maximum of 50.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtarget-targets.html#cfn-ssm-maintenancewindowtarget-targets-values