Interface KeyGroupConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<KeyGroupConfig.Builder,KeyGroupConfig>,SdkBuilder<KeyGroupConfig.Builder,KeyGroupConfig>,SdkPojo
- Enclosing class:
- KeyGroupConfig
public static interface KeyGroupConfig.Builder extends SdkPojo, CopyableBuilder<KeyGroupConfig.Builder,KeyGroupConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KeyGroupConfig.Buildercomment(String comment)A comment to describe the key group.KeyGroupConfig.Builderitems(String... items)A list of the identifiers of the public keys in the key group.KeyGroupConfig.Builderitems(Collection<String> items)A list of the identifiers of the public keys in the key group.KeyGroupConfig.Buildername(String name)A name to identify the key group.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
KeyGroupConfig.Builder name(String name)
A name to identify the key group.
- Parameters:
name- A name to identify the key group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
KeyGroupConfig.Builder items(Collection<String> items)
A list of the identifiers of the public keys in the key group.
- Parameters:
items- A list of the identifiers of the public keys in the key group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
KeyGroupConfig.Builder items(String... items)
A list of the identifiers of the public keys in the key group.
- Parameters:
items- A list of the identifiers of the public keys in the key group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
comment
KeyGroupConfig.Builder comment(String comment)
A comment to describe the key group. The comment cannot be longer than 128 characters.
- Parameters:
comment- A comment to describe the key group. The comment cannot be longer than 128 characters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-