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 IAssociationParameterProperty
Syntax (vb)
Public Interface 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.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
System.String
Remarks
Value
The value of an input parameter.
string[] Value { get; }
Property Value
System.String[]