Interface HandshakeParty.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<HandshakeParty.Builder,HandshakeParty>,SdkBuilder<HandshakeParty.Builder,HandshakeParty>,SdkPojo
- Enclosing class:
- HandshakeParty
public static interface HandshakeParty.Builder extends SdkPojo, CopyableBuilder<HandshakeParty.Builder,HandshakeParty>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HandshakeParty.Builderid(String id)The unique identifier (ID) for the party.HandshakeParty.Buildertype(String type)The type of party.HandshakeParty.Buildertype(HandshakePartyType type)The type of party.-
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
-
id
HandshakeParty.Builder id(String id)
The unique identifier (ID) for the party.
The regex pattern for handshake ID string requires "h-" followed by from 8 to 32 lowercase letters or digits.
- Parameters:
id- The unique identifier (ID) for the party.The regex pattern for handshake ID string requires "h-" followed by from 8 to 32 lowercase letters or digits.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
HandshakeParty.Builder type(String type)
The type of party.
- Parameters:
type- The type of party.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
HandshakePartyType,HandshakePartyType
-
type
HandshakeParty.Builder type(HandshakePartyType type)
The type of party.
- Parameters:
type- The type of party.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
HandshakePartyType,HandshakePartyType
-
-