Class StringParameterAttributes.Builder
java.lang.Object
software.amazon.awscdk.services.ssm.StringParameterAttributes.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<StringParameterAttributes>
- Enclosing interface:
StringParameterAttributes
@Stability(Stable)
public static final class StringParameterAttributes.Builder
extends Object
implements software.amazon.jsii.Builder<StringParameterAttributes>
A builder for
StringParameterAttributes
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Builds the configured instance.forceDynamicReference
(Boolean forceDynamicReference) Sets the value ofStringParameterAttributes.getForceDynamicReference()
parameterName
(String parameterName) Sets the value ofCommonStringParameterAttributes.getParameterName()
simpleName
(Boolean simpleName) Sets the value ofCommonStringParameterAttributes.getSimpleName()
type
(ParameterType type) Deprecated.- use valueType insteadvalueType
(ParameterValueType valueType) Sets the value ofStringParameterAttributes.getValueType()
Sets the value ofStringParameterAttributes.getVersion()
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
forceDynamicReference
@Stability(Stable) public StringParameterAttributes.Builder forceDynamicReference(Boolean forceDynamicReference) Sets the value ofStringParameterAttributes.getForceDynamicReference()
- Parameters:
forceDynamicReference
- Use a dynamic reference as the representation in CloudFormation template level. By default, CDK tries to deduce an appropriate representation based on the parameter value (a CfnParameter or a dynamic reference). Use this flag to override the representation when it does not work.- Returns:
this
-
type
@Stability(Deprecated) @Deprecated public StringParameterAttributes.Builder type(ParameterType type) Deprecated.- use valueType insteadSets the value ofStringParameterAttributes.getType()
- Parameters:
type
- The type of the string parameter.- Returns:
this
-
valueType
Sets the value ofStringParameterAttributes.getValueType()
- Parameters:
valueType
- The type of the string parameter value. Using specific types can be helpful in catching invalid values at the start of creating or updating a stack. CloudFormation validates the values against existing values in the account.Note - if you want to allow values from different AWS accounts, use ParameterValueType.STRING
- Returns:
this
-
version
Sets the value ofStringParameterAttributes.getVersion()
- Parameters:
version
- The version number of the value you wish to retrieve.- Returns:
this
-
parameterName
Sets the value ofCommonStringParameterAttributes.getParameterName()
- Parameters:
parameterName
- The name of the parameter store value. This parameter is required. This value can be a token or a concrete string. If it is a concrete string and includes "/" it must also be prefixed with a "/" (fully-qualified).- Returns:
this
-
simpleName
Sets the value ofCommonStringParameterAttributes.getSimpleName()
- Parameters:
simpleName
- Indicates whether the parameter name is a simple name. A parameter name without any "/" is considered a simple name. If the parameter name includes "/", setting simpleName to true might cause unintended issues such as duplicate "/" in the resulting ARN.This is required only if
parameterName
is a token, which means we are unable to detect if the name is simple or "path-like" for the purpose of rendering SSM parameter ARNs.If
parameterName
is not specified,simpleName
must betrue
(or undefined) since the name generated by AWS CloudFormation is always a simple name.- Returns:
this
-
build
Builds the configured instance.- Specified by:
build
in interfacesoftware.amazon.jsii.Builder<StringParameterAttributes>
- Returns:
- a new instance of
StringParameterAttributes
- Throws:
NullPointerException
- if any required attribute was not provided
-