Interface HsmConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<HsmConfiguration.Builder,HsmConfiguration>,SdkBuilder<HsmConfiguration.Builder,HsmConfiguration>,SdkPojo
- Enclosing class:
- HsmConfiguration
public static interface HsmConfiguration.Builder extends SdkPojo, CopyableBuilder<HsmConfiguration.Builder,HsmConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HsmConfiguration.Builderdescription(String description)A text description of the HSM configuration.HsmConfiguration.BuilderhsmConfigurationIdentifier(String hsmConfigurationIdentifier)The name of the Amazon Redshift HSM configuration.HsmConfiguration.BuilderhsmIpAddress(String hsmIpAddress)The IP address that the Amazon Redshift cluster must use to access the HSM.HsmConfiguration.BuilderhsmPartitionName(String hsmPartitionName)The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.HsmConfiguration.Buildertags(Collection<Tag> tags)The list of tags for the HSM configuration.HsmConfiguration.Buildertags(Consumer<Tag.Builder>... tags)The list of tags for the HSM configuration.HsmConfiguration.Buildertags(Tag... tags)The list of tags for the HSM configuration.-
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
-
hsmConfigurationIdentifier
HsmConfiguration.Builder hsmConfigurationIdentifier(String hsmConfigurationIdentifier)
The name of the Amazon Redshift HSM configuration.
- Parameters:
hsmConfigurationIdentifier- The name of the Amazon Redshift HSM configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
HsmConfiguration.Builder description(String description)
A text description of the HSM configuration.
- Parameters:
description- A text description of the HSM configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hsmIpAddress
HsmConfiguration.Builder hsmIpAddress(String hsmIpAddress)
The IP address that the Amazon Redshift cluster must use to access the HSM.
- Parameters:
hsmIpAddress- The IP address that the Amazon Redshift cluster must use to access the HSM.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hsmPartitionName
HsmConfiguration.Builder hsmPartitionName(String hsmPartitionName)
The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.
- Parameters:
hsmPartitionName- The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
HsmConfiguration.Builder tags(Collection<Tag> tags)
The list of tags for the HSM configuration.
- Parameters:
tags- The list of tags for the HSM configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
HsmConfiguration.Builder tags(Tag... tags)
The list of tags for the HSM configuration.
- Parameters:
tags- The list of tags for the HSM configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
HsmConfiguration.Builder tags(Consumer<Tag.Builder>... tags)
The list of tags for the HSM configuration.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
-