public static interface Parameter.Builder extends CopyableBuilder<Parameter.Builder,Parameter>
Modifier and Type | Method and Description |
---|---|
Parameter.Builder |
allowedValues(String allowedValues)
Specifies the valid range of values for the parameter.
|
Parameter.Builder |
applyMethod(ApplyMethod applyMethod)
Indicates when to apply parameter updates.
|
Parameter.Builder |
applyMethod(String applyMethod)
Indicates when to apply parameter updates.
|
Parameter.Builder |
applyType(String applyType)
Specifies the engine specific parameters type.
|
Parameter.Builder |
dataType(String dataType)
Specifies the valid data type for the parameter.
|
Parameter.Builder |
description(String description)
Provides a description of the parameter.
|
Parameter.Builder |
isModifiable(Boolean isModifiable)
Indicates whether (
true ) or not (false ) the parameter can be modified. |
Parameter.Builder |
minimumEngineVersion(String minimumEngineVersion)
The earliest engine version to which the parameter can apply.
|
Parameter.Builder |
parameterName(String parameterName)
Specifies the name of the parameter.
|
Parameter.Builder |
parameterValue(String parameterValue)
Specifies the value of the parameter.
|
Parameter.Builder |
source(String source)
Indicates the source of the parameter value.
|
copy
applyMutation, build
Parameter.Builder parameterName(String parameterName)
Specifies the name of the parameter.
parameterName
- Specifies the name of the parameter.Parameter.Builder parameterValue(String parameterValue)
Specifies the value of the parameter.
parameterValue
- Specifies the value of the parameter.Parameter.Builder description(String description)
Provides a description of the parameter.
description
- Provides a description of the parameter.Parameter.Builder source(String source)
Indicates the source of the parameter value.
source
- Indicates the source of the parameter value.Parameter.Builder applyType(String applyType)
Specifies the engine specific parameters type.
applyType
- Specifies the engine specific parameters type.Parameter.Builder dataType(String dataType)
Specifies the valid data type for the parameter.
dataType
- Specifies the valid data type for the parameter.Parameter.Builder allowedValues(String allowedValues)
Specifies the valid range of values for the parameter.
allowedValues
- Specifies the valid range of values for the parameter.Parameter.Builder isModifiable(Boolean isModifiable)
Indicates whether (true
) or not (false
) the parameter can be modified. Some
parameters have security or operational implications that prevent them from being changed.
isModifiable
- Indicates whether (true
) or not (false
) the parameter can be modified. Some
parameters have security or operational implications that prevent them from being changed.Parameter.Builder minimumEngineVersion(String minimumEngineVersion)
The earliest engine version to which the parameter can apply.
minimumEngineVersion
- The earliest engine version to which the parameter can apply.Parameter.Builder applyMethod(String applyMethod)
Indicates when to apply parameter updates.
applyMethod
- Indicates when to apply parameter updates.ApplyMethod
,
ApplyMethod
Parameter.Builder applyMethod(ApplyMethod applyMethod)
Indicates when to apply parameter updates.
applyMethod
- Indicates when to apply parameter updates.ApplyMethod
,
ApplyMethod
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.