Table of Contents

Interface IStringParameterProps

Namespace
Amazon.CDK.AWS.SSM
Assembly
Amazon.CDK.AWS.SSM.dll

Properties needed to create a String SSM parameter.

public interface IStringParameterProps : IParameterOptions
Inherited Members

Examples

new StringParameter(this, "Parameter", new StringParameterProps {
                AllowedPattern = ".*",
                Description = "The value Foo",
                ParameterName = "FooParameter",
                StringValue = "Foo",
                Tier = ParameterTier.ADVANCED
            });

Remarks

ExampleMetadata: infused

Properties

DataType

The data type of the parameter, such as text or aws:ec2:image.

ParameterDataType? DataType { get; }

Property Value

ParameterDataType?

Remarks

Default: ParameterDataType.TEXT

StringValue

The value of the parameter.

string StringValue { get; }

Property Value

string

Remarks

It may not reference another parameter and {{}} cannot be used in the value.

Type

The type of the string parameter.

ParameterType? Type { get; }

Property Value

ParameterType?

Remarks

Default: ParameterType.STRING