Interface HandshakeFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<HandshakeFilter.Builder,HandshakeFilter>,SdkBuilder<HandshakeFilter.Builder,HandshakeFilter>,SdkPojo
- Enclosing class:
- HandshakeFilter
public static interface HandshakeFilter.Builder extends SdkPojo, CopyableBuilder<HandshakeFilter.Builder,HandshakeFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HandshakeFilter.BuilderactionType(String actionType)Specifies the type of handshake action.HandshakeFilter.BuilderactionType(ActionType actionType)Specifies the type of handshake action.HandshakeFilter.BuilderparentHandshakeId(String parentHandshakeId)Specifies the parent handshake.-
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
-
actionType
HandshakeFilter.Builder actionType(String actionType)
Specifies the type of handshake action.
If you specify
ActionType, you cannot also specifyParentHandshakeId.- Parameters:
actionType- Specifies the type of handshake action.If you specify
ActionType, you cannot also specifyParentHandshakeId.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionType,ActionType
-
actionType
HandshakeFilter.Builder actionType(ActionType actionType)
Specifies the type of handshake action.
If you specify
ActionType, you cannot also specifyParentHandshakeId.- Parameters:
actionType- Specifies the type of handshake action.If you specify
ActionType, you cannot also specifyParentHandshakeId.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionType,ActionType
-
parentHandshakeId
HandshakeFilter.Builder parentHandshakeId(String parentHandshakeId)
Specifies the parent handshake. Only used for handshake types that are a child of another type.
If you specify
ParentHandshakeId, you cannot also specifyActionType.The regex pattern for handshake ID string requires "h-" followed by from 8 to 32 lowercase letters or digits.
- Parameters:
parentHandshakeId- Specifies the parent handshake. Only used for handshake types that are a child of another type.If you specify
ParentHandshakeId, you cannot also specifyActionType.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.
-
-