public static interface Parameter.Builder extends SdkPojo, CopyableBuilder<Parameter.Builder,Parameter>
Modifier and Type | Method and Description |
---|---|
Parameter.Builder |
parameterKey(String parameterKey)
The key associated with the parameter.
|
Parameter.Builder |
parameterValue(String parameterValue)
The input value associated with the parameter.
|
Parameter.Builder |
resolvedValue(String resolvedValue)
Read-only.
|
Parameter.Builder |
usePreviousValue(Boolean usePreviousValue)
During a stack update, use the existing parameter value that the stack is using for a given parameter key.
|
copy
applyMutation, build
Parameter.Builder parameterKey(String parameterKey)
The key associated with the parameter. If you don't specify a key and value for a particular parameter, AWS CloudFormation uses the default value that is specified in your template.
parameterKey
- The key associated with the parameter. If you don't specify a key and value for a particular
parameter, AWS CloudFormation uses the default value that is specified in your template.Parameter.Builder parameterValue(String parameterValue)
The input value associated with the parameter.
parameterValue
- The input value associated with the parameter.Parameter.Builder usePreviousValue(Boolean usePreviousValue)
During a stack update, use the existing parameter value that the stack is using for a given parameter key. If
you specify true
, do not specify a parameter value.
usePreviousValue
- During a stack update, use the existing parameter value that the stack is using for a given parameter
key. If you specify true
, do not specify a parameter value.Parameter.Builder resolvedValue(String resolvedValue)
Read-only. The value that corresponds to a Systems Manager parameter key. This field is returned only for SSM
parameter types in the template.
resolvedValue
- Read-only. The value that corresponds to a Systems Manager parameter key. This field is returned only
for SSM
parameter types in the template.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.