@Stability(value=Experimental) public static final class StringListParameter.Builder extends Object implements software.amazon.jsii.Builder<StringListParameter>
StringListParameter
.Modifier and Type | Method and Description |
---|---|
StringListParameter.Builder |
allowedPattern(String allowedPattern)
(experimental) A regular expression used to validate the parameter value.
|
StringListParameter |
build() |
static StringListParameter.Builder |
create(software.constructs.Construct scope,
String id) |
StringListParameter.Builder |
description(String description)
(experimental) Information about the parameter that you want to add to the system.
|
StringListParameter.Builder |
parameterName(String parameterName)
(experimental) The name of the parameter.
|
StringListParameter.Builder |
simpleName(Boolean simpleName)
(experimental) Indicates of the parameter name is a simple name (i.e.
|
StringListParameter.Builder |
stringListValue(List<String> stringListValue)
(experimental) The values of the parameter.
|
StringListParameter.Builder |
tier(ParameterTier tier)
(experimental) The tier of the string parameter.
|
@Stability(value=Experimental) public static StringListParameter.Builder create(software.constructs.Construct scope, String id)
scope
- This parameter is required.id
- This parameter is required.StringListParameter.Builder
.@Stability(value=Experimental) public StringListParameter.Builder allowedPattern(String allowedPattern)
For example, for String types with values restricted to
numbers, you can specify the following: ^\d+$
Default: no validation is performed
allowedPattern
- A regular expression used to validate the parameter value. This parameter is required.this
@Stability(value=Experimental) public StringListParameter.Builder description(String description)
Default: none
description
- Information about the parameter that you want to add to the system. This parameter is required.this
@Stability(value=Experimental) public StringListParameter.Builder parameterName(String parameterName)
Default: - a name will be generated by CloudFormation
parameterName
- The name of the parameter. This parameter is required.this
@Stability(value=Experimental) public StringListParameter.Builder simpleName(Boolean simpleName)
This is only 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 be true
(or
undefined) since the name generated by AWS CloudFormation is always a
simple name.
Default: - auto-detect based on `parameterName`
simpleName
- Indicates of the parameter name is a simple name (i.e. does not include "/" separators). This parameter is required.this
@Stability(value=Experimental) public StringListParameter.Builder tier(ParameterTier tier)
Default: - undefined
tier
- The tier of the string parameter. This parameter is required.this
@Stability(value=Experimental) public StringListParameter.Builder stringListValue(List<String> stringListValue)
It may not reference another parameter and {{}}
cannot be used in the value.
stringListValue
- The values of the parameter. This parameter is required.this
@Stability(value=Experimental) public StringListParameter build()
build
in interface software.amazon.jsii.Builder<StringListParameter>
Copyright © 2021. All rights reserved.