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.parameterName
(String parameterName) Sets the value ofCommonStringParameterAttributes.getParameterName()
simpleName
(Boolean simpleName) Sets the value ofCommonStringParameterAttributes.getSimpleName()
type
(ParameterType type) Sets the value ofStringParameterAttributes.getType()
Sets the value ofStringParameterAttributes.getVersion()
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
type
Sets the value ofStringParameterAttributes.getType()
- Parameters:
type
- The type of the string parameter.- 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 of the parameter name is a simple name (i.e. does not include "/" separators). This is only required only ifparameterName
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
-