Interface ConnectionTypeBrief.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectionTypeBrief.Builder,ConnectionTypeBrief>,SdkBuilder<ConnectionTypeBrief.Builder,ConnectionTypeBrief>,SdkPojo
- Enclosing class:
- ConnectionTypeBrief
public static interface ConnectionTypeBrief.Builder extends SdkPojo, CopyableBuilder<ConnectionTypeBrief.Builder,ConnectionTypeBrief>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ConnectionTypeBrief.Buildercapabilities(Consumer<Capabilities.Builder> capabilities)The supported authentication types, data interface types (compute environments), and data operations of the connector.ConnectionTypeBrief.Buildercapabilities(Capabilities capabilities)The supported authentication types, data interface types (compute environments), and data operations of the connector.ConnectionTypeBrief.BuilderconnectionType(String connectionType)The name of the connection type.ConnectionTypeBrief.BuilderconnectionType(ConnectionType connectionType)The name of the connection type.ConnectionTypeBrief.Builderdescription(String description)A description of the connection type.-
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
-
connectionType
ConnectionTypeBrief.Builder connectionType(String connectionType)
The name of the connection type.
- Parameters:
connectionType- The name of the connection type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionType,ConnectionType
-
connectionType
ConnectionTypeBrief.Builder connectionType(ConnectionType connectionType)
The name of the connection type.
- Parameters:
connectionType- The name of the connection type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionType,ConnectionType
-
description
ConnectionTypeBrief.Builder description(String description)
A description of the connection type.
- Parameters:
description- A description of the connection type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
capabilities
ConnectionTypeBrief.Builder capabilities(Capabilities capabilities)
The supported authentication types, data interface types (compute environments), and data operations of the connector.
- Parameters:
capabilities- The supported authentication types, data interface types (compute environments), and data operations of the connector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
capabilities
default ConnectionTypeBrief.Builder capabilities(Consumer<Capabilities.Builder> capabilities)
The supported authentication types, data interface types (compute environments), and data operations of the connector.
This is a convenience method that creates an instance of theCapabilities.Builderavoiding the need to create one manually viaCapabilities.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocapabilities(Capabilities).- Parameters:
capabilities- a consumer that will call methods onCapabilities.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
capabilities(Capabilities)
-
-