Interface InboundConnectionStatus.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InboundConnectionStatus.Builder,InboundConnectionStatus>,SdkBuilder<InboundConnectionStatus.Builder,InboundConnectionStatus>,SdkPojo
- Enclosing class:
- InboundConnectionStatus
@Mutable @NotThreadSafe public static interface InboundConnectionStatus.Builder extends SdkPojo, CopyableBuilder<InboundConnectionStatus.Builder,InboundConnectionStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InboundConnectionStatus.Buildermessage(String message)Information about the connection.InboundConnectionStatus.BuilderstatusCode(String statusCode)The status code for the connection.InboundConnectionStatus.BuilderstatusCode(InboundConnectionStatusCode statusCode)The status code for the connection.-
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
-
statusCode
InboundConnectionStatus.Builder statusCode(String statusCode)
The status code for the connection. Can be one of the following:
-
PENDING_ACCEPTANCE - Inbound connection is not yet accepted by the remote domain owner.
-
APPROVED: Inbound connection is pending acceptance by the remote domain owner.
-
PROVISIONING: Inbound connection is being provisioned.
-
ACTIVE: Inbound connection is active and ready to use.
-
REJECTING: Inbound connection rejection is in process.
-
REJECTED: Inbound connection is rejected.
-
DELETING: Inbound connection deletion is in progress.
-
DELETED: Inbound connection is deleted and can no longer be used.
- Parameters:
statusCode- The status code for the connection. Can be one of the following:-
PENDING_ACCEPTANCE - Inbound connection is not yet accepted by the remote domain owner.
-
APPROVED: Inbound connection is pending acceptance by the remote domain owner.
-
PROVISIONING: Inbound connection is being provisioned.
-
ACTIVE: Inbound connection is active and ready to use.
-
REJECTING: Inbound connection rejection is in process.
-
REJECTED: Inbound connection is rejected.
-
DELETING: Inbound connection deletion is in progress.
-
DELETED: Inbound connection is deleted and can no longer be used.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InboundConnectionStatusCode,InboundConnectionStatusCode
-
-
statusCode
InboundConnectionStatus.Builder statusCode(InboundConnectionStatusCode statusCode)
The status code for the connection. Can be one of the following:
-
PENDING_ACCEPTANCE - Inbound connection is not yet accepted by the remote domain owner.
-
APPROVED: Inbound connection is pending acceptance by the remote domain owner.
-
PROVISIONING: Inbound connection is being provisioned.
-
ACTIVE: Inbound connection is active and ready to use.
-
REJECTING: Inbound connection rejection is in process.
-
REJECTED: Inbound connection is rejected.
-
DELETING: Inbound connection deletion is in progress.
-
DELETED: Inbound connection is deleted and can no longer be used.
- Parameters:
statusCode- The status code for the connection. Can be one of the following:-
PENDING_ACCEPTANCE - Inbound connection is not yet accepted by the remote domain owner.
-
APPROVED: Inbound connection is pending acceptance by the remote domain owner.
-
PROVISIONING: Inbound connection is being provisioned.
-
ACTIVE: Inbound connection is active and ready to use.
-
REJECTING: Inbound connection rejection is in process.
-
REJECTED: Inbound connection is rejected.
-
DELETING: Inbound connection deletion is in progress.
-
DELETED: Inbound connection is deleted and can no longer be used.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InboundConnectionStatusCode,InboundConnectionStatusCode
-
-
message
InboundConnectionStatus.Builder message(String message)
Information about the connection.
- Parameters:
message- Information about the connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-