Interface IStringParameterProps
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
Remarks
Default: ParameterDataType.TEXT
StringValue
The value of the parameter.
string StringValue { get; }
Property Value
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
Remarks
Default: ParameterType.STRING