Interface CreateDbClusterEndpointRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<CreateDbClusterEndpointRequest.Builder,CreateDbClusterEndpointRequest>
,RdsRequest.Builder
,SdkBuilder<CreateDbClusterEndpointRequest.Builder,CreateDbClusterEndpointRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- CreateDbClusterEndpointRequest
public static interface CreateDbClusterEndpointRequest.Builder extends RdsRequest.Builder, SdkPojo, CopyableBuilder<CreateDbClusterEndpointRequest.Builder,CreateDbClusterEndpointRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateDbClusterEndpointRequest.Builder
dbClusterEndpointIdentifier(String dbClusterEndpointIdentifier)
The identifier to use for the new endpoint.CreateDbClusterEndpointRequest.Builder
dbClusterIdentifier(String dbClusterIdentifier)
The DB cluster identifier of the DB cluster associated with the endpoint.CreateDbClusterEndpointRequest.Builder
endpointType(String endpointType)
The type of the endpoint, one of:READER
,WRITER
,ANY
.CreateDbClusterEndpointRequest.Builder
excludedMembers(String... excludedMembers)
List of DB instance identifiers that aren't part of the custom endpoint group.CreateDbClusterEndpointRequest.Builder
excludedMembers(Collection<String> excludedMembers)
List of DB instance identifiers that aren't part of the custom endpoint group.CreateDbClusterEndpointRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
CreateDbClusterEndpointRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
CreateDbClusterEndpointRequest.Builder
staticMembers(String... staticMembers)
List of DB instance identifiers that are part of the custom endpoint group.CreateDbClusterEndpointRequest.Builder
staticMembers(Collection<String> staticMembers)
List of DB instance identifiers that are part of the custom endpoint group.CreateDbClusterEndpointRequest.Builder
tags(Collection<Tag> tags)
The tags to be assigned to the Amazon RDS resource.CreateDbClusterEndpointRequest.Builder
tags(Consumer<Tag.Builder>... tags)
The tags to be assigned to the Amazon RDS resource.CreateDbClusterEndpointRequest.Builder
tags(Tag... tags)
The tags to be assigned to the Amazon RDS resource.-
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.rds.model.RdsRequest.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
-
dbClusterIdentifier
CreateDbClusterEndpointRequest.Builder dbClusterIdentifier(String dbClusterIdentifier)
The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.
- Parameters:
dbClusterIdentifier
- The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbClusterEndpointIdentifier
CreateDbClusterEndpointRequest.Builder dbClusterEndpointIdentifier(String dbClusterEndpointIdentifier)
The identifier to use for the new endpoint. This parameter is stored as a lowercase string.
- Parameters:
dbClusterEndpointIdentifier
- The identifier to use for the new endpoint. This parameter is stored as a lowercase string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endpointType
CreateDbClusterEndpointRequest.Builder endpointType(String endpointType)
The type of the endpoint, one of:
READER
,WRITER
,ANY
.- Parameters:
endpointType
- The type of the endpoint, one of:READER
,WRITER
,ANY
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
staticMembers
CreateDbClusterEndpointRequest.Builder staticMembers(Collection<String> staticMembers)
List of DB instance identifiers that are part of the custom endpoint group.
- Parameters:
staticMembers
- List of DB instance identifiers that are part of the custom endpoint group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
staticMembers
CreateDbClusterEndpointRequest.Builder staticMembers(String... staticMembers)
List of DB instance identifiers that are part of the custom endpoint group.
- Parameters:
staticMembers
- List of DB instance identifiers that are part of the custom endpoint group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
excludedMembers
CreateDbClusterEndpointRequest.Builder excludedMembers(Collection<String> excludedMembers)
List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. This parameter is relevant only if the list of static members is empty.
- Parameters:
excludedMembers
- List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. This parameter is relevant only if the list of static members is empty.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
excludedMembers
CreateDbClusterEndpointRequest.Builder excludedMembers(String... excludedMembers)
List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. This parameter is relevant only if the list of static members is empty.
- Parameters:
excludedMembers
- List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. This parameter is relevant only if the list of static members is empty.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateDbClusterEndpointRequest.Builder tags(Collection<Tag> tags)
The tags to be assigned to the Amazon RDS resource.
- Parameters:
tags
- The tags to be assigned to the Amazon RDS resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateDbClusterEndpointRequest.Builder tags(Tag... tags)
The tags to be assigned to the Amazon RDS resource.
- Parameters:
tags
- The tags to be assigned to the Amazon RDS resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateDbClusterEndpointRequest.Builder tags(Consumer<Tag.Builder>... tags)
The tags to be assigned to the Amazon RDS resource.
This is a convenience method that creates an instance of theTag.Builder
avoiding the need to create one manually viaTag.builder()
.When the
Consumer
completes,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
)
-
overrideConfiguration
CreateDbClusterEndpointRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
CreateDbClusterEndpointRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-