Interface CacheParameterGroupStatus.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<CacheParameterGroupStatus.Builder,CacheParameterGroupStatus>
,SdkBuilder<CacheParameterGroupStatus.Builder,CacheParameterGroupStatus>
,SdkPojo
- Enclosing class:
- CacheParameterGroupStatus
public static interface CacheParameterGroupStatus.Builder extends SdkPojo, CopyableBuilder<CacheParameterGroupStatus.Builder,CacheParameterGroupStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CacheParameterGroupStatus.Builder
cacheNodeIdsToReboot(String... cacheNodeIdsToReboot)
A list of the cache node IDs which need to be rebooted for parameter changes to be applied.CacheParameterGroupStatus.Builder
cacheNodeIdsToReboot(Collection<String> cacheNodeIdsToReboot)
A list of the cache node IDs which need to be rebooted for parameter changes to be applied.CacheParameterGroupStatus.Builder
cacheParameterGroupName(String cacheParameterGroupName)
The name of the cache parameter group.CacheParameterGroupStatus.Builder
parameterApplyStatus(String parameterApplyStatus)
The status of parameter updates.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
cacheParameterGroupName
CacheParameterGroupStatus.Builder cacheParameterGroupName(String cacheParameterGroupName)
The name of the cache parameter group.
- Parameters:
cacheParameterGroupName
- The name of the cache parameter group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameterApplyStatus
CacheParameterGroupStatus.Builder parameterApplyStatus(String parameterApplyStatus)
The status of parameter updates.
- Parameters:
parameterApplyStatus
- The status of parameter updates.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cacheNodeIdsToReboot
CacheParameterGroupStatus.Builder cacheNodeIdsToReboot(Collection<String> cacheNodeIdsToReboot)
A list of the cache node IDs which need to be rebooted for parameter changes to be applied. A node ID is a numeric identifier (0001, 0002, etc.).
- Parameters:
cacheNodeIdsToReboot
- A list of the cache node IDs which need to be rebooted for parameter changes to be applied. A node ID is a numeric identifier (0001, 0002, etc.).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cacheNodeIdsToReboot
CacheParameterGroupStatus.Builder cacheNodeIdsToReboot(String... cacheNodeIdsToReboot)
A list of the cache node IDs which need to be rebooted for parameter changes to be applied. A node ID is a numeric identifier (0001, 0002, etc.).
- Parameters:
cacheNodeIdsToReboot
- A list of the cache node IDs which need to be rebooted for parameter changes to be applied. A node ID is a numeric identifier (0001, 0002, etc.).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-