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.AWS.EC2.dll
Syntax (csharp)
public interface IAssociationParameterProperty
Syntax (vb)
Public Interface IAssociationParameterProperty
Remarks

AssociationParameter is a property of the Amazon EC2 Instance SsmAssociation property.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-ssmassociations-associationparameters.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;

AssociationParameterProperty 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

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-ssmassociations-associationparameters.html#cfn-ec2-instance-ssmassociations-associationparameters-key

Value

The value of an input parameter.

string[] Value { get; }
Property Value

System.String[]

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-ssmassociations-associationparameters.html#cfn-ec2-instance-ssmassociations-associationparameters-value

Back to top Generated by DocFX