Class CfnInstancePropsMixin.AssociationParameterProperty
Specifies input parameter values for an SSM document in AWS Systems Manager .
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.EC2
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnInstancePropsMixin.AssociationParameterProperty : CfnInstancePropsMixin.IAssociationParameterProperty
Syntax (vb)
Public Class CfnInstancePropsMixin.AssociationParameterProperty Implements CfnInstancePropsMixin.IAssociationParameterProperty
Remarks
AssociationParameter is a property of the SsmAssociation property type.
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.CfnPropertyMixins.AWS.EC2;
var associationParameterProperty = new AssociationParameterProperty {
Key = "key",
Value = new [] { "value" }
};
Synopsis
Constructors
| AssociationParameterProperty() | Specifies input parameter values for an SSM document in AWS Systems Manager . |
Properties
| Key | The name of an input parameter that is in the associated SSM document. |
| Value | The value of an input parameter. |
Constructors
AssociationParameterProperty()
Specifies input parameter values for an SSM document in AWS Systems Manager .
public AssociationParameterProperty()
Remarks
AssociationParameter is a property of the SsmAssociation property type.
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.CfnPropertyMixins.AWS.EC2;
var associationParameterProperty = new AssociationParameterProperty {
Key = "key",
Value = new [] { "value" }
};
Properties
Key
The name of an input parameter that is in the associated SSM document.
public string? Key { get; set; }
Property Value
Remarks
Value
The value of an input parameter.
public string[]? Value { get; set; }
Property Value
string[]