@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:39.799Z") @Stability(value=Stable) public interface CommonStringParameterAttributes extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ssm.*;
CommonStringParameterAttributes commonStringParameterAttributes = CommonStringParameterAttributes.builder()
.parameterName("parameterName")
// the properties below are optional
.simpleName(false)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CommonStringParameterAttributes.Builder
A builder for
CommonStringParameterAttributes |
static class |
CommonStringParameterAttributes.Jsii$Proxy
An implementation for
CommonStringParameterAttributes |
| Modifier and Type | Method and Description |
|---|---|
static CommonStringParameterAttributes.Builder |
builder() |
String |
getParameterName()
The name of the parameter store value.
|
default Boolean |
getSimpleName()
Indicates of the parameter name is a simple name (i.e.
|
@Stability(value=Stable) @NotNull String getParameterName()
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).
@Stability(value=Stable) @Nullable default Boolean getSimpleName()
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`
@Stability(value=Stable) static CommonStringParameterAttributes.Builder builder()
Copyright © 2022. All rights reserved.