Show / Hide Table of Contents

Interface CfnInstance.IAssociationParameterProperty

Specifies input parameter values for an SSM document in AWS Systems Manager .

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnInstance.IAssociationParameterProperty
Syntax (vb)
Public Interface CfnInstance.IAssociationParameterProperty
Remarks

AssociationParameter is a property of the SsmAssociation property type.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-associationparameter.html

ExampleMetadata: fixture=_generated

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

             var associationParameterProperty = new AssociationParameterProperty {
                 Key = "key",
                 Value = new [] { "value" }
             };

Synopsis

Properties

Key

The name of an input parameter that is in the associated SSM document.

Value

The value of an input parameter.

Properties

Key

The name of an input parameter that is in the associated SSM document.

string Key { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-associationparameter.html#cfn-ec2-instance-associationparameter-key

Value

The value of an input parameter.

string[] Value { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-associationparameter.html#cfn-ec2-instance-associationparameter-value

Back to top Generated by DocFX