Show / Hide Table of Contents

Class CfnStackSet.ParameterProperty

The Parameter data type.

Inheritance
object
CfnStackSet.ParameterProperty
Implements
CfnStackSet.IParameterProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnStackSet.ParameterProperty : CfnStackSet.IParameterProperty
Syntax (vb)
Public Class CfnStackSet.ParameterProperty Implements CfnStackSet.IParameterProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-parameter.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;

             var parameterProperty = new ParameterProperty {
                 ParameterKey = "parameterKey",
                 ParameterValue = "parameterValue"
             };

Synopsis

Constructors

ParameterProperty()

The Parameter data type.

Properties

ParameterKey

The key associated with the parameter.

ParameterValue

The input value associated with the parameter.

Constructors

ParameterProperty()

The Parameter data type.

public ParameterProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-parameter.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;

             var parameterProperty = new ParameterProperty {
                 ParameterKey = "parameterKey",
                 ParameterValue = "parameterValue"
             };

Properties

ParameterKey

The key associated with the parameter.

public string ParameterKey { get; set; }
Property Value

string

Remarks

If you don't specify a key and value for a particular parameter, CloudFormation uses the default value that's specified in your template.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-parameter.html#cfn-cloudformation-stackset-parameter-parameterkey

ParameterValue

The input value associated with the parameter.

public string ParameterValue { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-parameter.html#cfn-cloudformation-stackset-parameter-parametervalue

Implements

CfnStackSet.IParameterProperty
Back to top Generated by DocFX