Show / Hide Table of Contents

Class CfnInstancePropsMixin.AssociationParameterProperty

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

Inheritance
object
CfnInstancePropsMixin.AssociationParameterProperty
Implements
CfnInstancePropsMixin.IAssociationParameterProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

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.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.

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.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

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.

public string[]? Value { get; set; }
Property Value

string[]

Remarks

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

Implements

CfnInstancePropsMixin.IAssociationParameterProperty
Back to top Generated by DocFX