Interface RegisterNamespaceRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<RegisterNamespaceRequest.Builder,RegisterNamespaceRequest>,RedshiftRequest.Builder,SdkBuilder<RegisterNamespaceRequest.Builder,RegisterNamespaceRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- RegisterNamespaceRequest
public static interface RegisterNamespaceRequest.Builder extends RedshiftRequest.Builder, SdkPojo, CopyableBuilder<RegisterNamespaceRequest.Builder,RegisterNamespaceRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description RegisterNamespaceRequest.BuilderconsumerIdentifiers(String... consumerIdentifiers)An array containing the ID of the consumer account that you want to register the namespace to.RegisterNamespaceRequest.BuilderconsumerIdentifiers(Collection<String> consumerIdentifiers)An array containing the ID of the consumer account that you want to register the namespace to.default RegisterNamespaceRequest.BuildernamespaceIdentifier(Consumer<NamespaceIdentifierUnion.Builder> namespaceIdentifier)The unique identifier of the cluster or serverless namespace that you want to register.RegisterNamespaceRequest.BuildernamespaceIdentifier(NamespaceIdentifierUnion namespaceIdentifier)The unique identifier of the cluster or serverless namespace that you want to register.RegisterNamespaceRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)RegisterNamespaceRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.redshift.model.RedshiftRequest.Builder
build
-
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
-
namespaceIdentifier
RegisterNamespaceRequest.Builder namespaceIdentifier(NamespaceIdentifierUnion namespaceIdentifier)
The unique identifier of the cluster or serverless namespace that you want to register.
- Parameters:
namespaceIdentifier- The unique identifier of the cluster or serverless namespace that you want to register.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
namespaceIdentifier
default RegisterNamespaceRequest.Builder namespaceIdentifier(Consumer<NamespaceIdentifierUnion.Builder> namespaceIdentifier)
The unique identifier of the cluster or serverless namespace that you want to register.
This is a convenience method that creates an instance of theNamespaceIdentifierUnion.Builderavoiding the need to create one manually viaNamespaceIdentifierUnion.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tonamespaceIdentifier(NamespaceIdentifierUnion).- Parameters:
namespaceIdentifier- a consumer that will call methods onNamespaceIdentifierUnion.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
namespaceIdentifier(NamespaceIdentifierUnion)
-
consumerIdentifiers
RegisterNamespaceRequest.Builder consumerIdentifiers(Collection<String> consumerIdentifiers)
An array containing the ID of the consumer account that you want to register the namespace to.
- Parameters:
consumerIdentifiers- An array containing the ID of the consumer account that you want to register the namespace to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
consumerIdentifiers
RegisterNamespaceRequest.Builder consumerIdentifiers(String... consumerIdentifiers)
An array containing the ID of the consumer account that you want to register the namespace to.
- Parameters:
consumerIdentifiers- An array containing the ID of the consumer account that you want to register the namespace to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
RegisterNamespaceRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
RegisterNamespaceRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-