Interface ClusterSetting.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ClusterSetting.Builder,ClusterSetting>
,SdkBuilder<ClusterSetting.Builder,ClusterSetting>
,SdkPojo
- Enclosing class:
- ClusterSetting
public static interface ClusterSetting.Builder extends SdkPojo, CopyableBuilder<ClusterSetting.Builder,ClusterSetting>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClusterSetting.Builder
name(String name)
The name of the cluster setting.ClusterSetting.Builder
name(ClusterSettingName name)
The name of the cluster setting.ClusterSetting.Builder
value(String value)
The value to set for the cluster setting.-
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
-
name
ClusterSetting.Builder name(String name)
The name of the cluster setting. The value is
containerInsights
.- Parameters:
name
- The name of the cluster setting. The value iscontainerInsights
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClusterSettingName
,ClusterSettingName
-
name
ClusterSetting.Builder name(ClusterSettingName name)
The name of the cluster setting. The value is
containerInsights
.- Parameters:
name
- The name of the cluster setting. The value iscontainerInsights
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClusterSettingName
,ClusterSettingName
-
value
ClusterSetting.Builder value(String value)
The value to set for the cluster setting. The supported values are
enabled
anddisabled
.If you set
name
tocontainerInsights
andvalue
toenabled
, CloudWatch Container Insights will be on for the cluster, otherwise it will be off unless thecontainerInsights
account setting is turned on. If a cluster value is specified, it will override thecontainerInsights
value set with PutAccountSetting or PutAccountSettingDefault.- Parameters:
value
- The value to set for the cluster setting. The supported values areenabled
anddisabled
.If you set
name
tocontainerInsights
andvalue
toenabled
, CloudWatch Container Insights will be on for the cluster, otherwise it will be off unless thecontainerInsights
account setting is turned on. If a cluster value is specified, it will override thecontainerInsights
value set with PutAccountSetting or PutAccountSettingDefault.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-