Interface GlobalClusterMember.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GlobalClusterMember.Builder,GlobalClusterMember>,SdkBuilder<GlobalClusterMember.Builder,GlobalClusterMember>,SdkPojo
- Enclosing class:
- GlobalClusterMember
public static interface GlobalClusterMember.Builder extends SdkPojo, CopyableBuilder<GlobalClusterMember.Builder,GlobalClusterMember>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GlobalClusterMember.BuilderdbClusterArn(String dbClusterArn)The Amazon Resource Name (ARN) for each Neptune cluster.GlobalClusterMember.BuilderisWriter(Boolean isWriter)Specifies whether the Neptune cluster is the primary cluster (that is, has read-write capability) for the Neptune global database with which it is associated.GlobalClusterMember.Builderreaders(String... readers)The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Neptune global database.GlobalClusterMember.Builderreaders(Collection<String> readers)The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Neptune global database.-
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
-
dbClusterArn
GlobalClusterMember.Builder dbClusterArn(String dbClusterArn)
The Amazon Resource Name (ARN) for each Neptune cluster.
- Parameters:
dbClusterArn- The Amazon Resource Name (ARN) for each Neptune cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
readers
GlobalClusterMember.Builder readers(Collection<String> readers)
The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Neptune global database.
- Parameters:
readers- The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Neptune global database.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
readers
GlobalClusterMember.Builder readers(String... readers)
The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Neptune global database.
- Parameters:
readers- The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Neptune global database.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isWriter
GlobalClusterMember.Builder isWriter(Boolean isWriter)
Specifies whether the Neptune cluster is the primary cluster (that is, has read-write capability) for the Neptune global database with which it is associated.
- Parameters:
isWriter- Specifies whether the Neptune cluster is the primary cluster (that is, has read-write capability) for the Neptune global database with which it is associated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-