Interface ConnectionTypeBrief.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectionTypeBrief.Builder,ConnectionTypeBrief>,SdkBuilder<ConnectionTypeBrief.Builder,ConnectionTypeBrief>,SdkPojo
- Enclosing class:
- ConnectionTypeBrief
@Mutable @NotThreadSafe 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.Buildercategories(String... categories)A list of categories that this connection type belongs to.ConnectionTypeBrief.Buildercategories(Collection<String> categories)A list of categories that this connection type belongs to.ConnectionTypeBrief.BuilderconnectionType(String connectionType)The name of the connection type.ConnectionTypeBrief.BuilderconnectionType(ConnectionType connectionType)The name of the connection type.ConnectionTypeBrief.BuilderconnectionTypeVariants(Collection<ConnectionTypeVariant> connectionTypeVariants)A list of variants available for this connection type.ConnectionTypeBrief.BuilderconnectionTypeVariants(Consumer<ConnectionTypeVariant.Builder>... connectionTypeVariants)A list of variants available for this connection type.ConnectionTypeBrief.BuilderconnectionTypeVariants(ConnectionTypeVariant... connectionTypeVariants)A list of variants available for this connection type.ConnectionTypeBrief.Builderdescription(String description)A description of the connection type.ConnectionTypeBrief.BuilderdisplayName(String displayName)The human-readable name for the connection type that is displayed in the Glue console.ConnectionTypeBrief.BuilderlogoUrl(String logoUrl)The URL of the logo associated with a connection type.ConnectionTypeBrief.Buildervendor(String vendor)The name of the vendor or provider that created or maintains this 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
-
displayName
ConnectionTypeBrief.Builder displayName(String displayName)
The human-readable name for the connection type that is displayed in the Glue console.
- Parameters:
displayName- The human-readable name for the connection type that is displayed in the Glue console.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vendor
ConnectionTypeBrief.Builder vendor(String vendor)
The name of the vendor or provider that created or maintains this connection type.
- Parameters:
vendor- The name of the vendor or provider that created or maintains this connection type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
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.
-
categories
ConnectionTypeBrief.Builder categories(Collection<String> categories)
A list of categories that this connection type belongs to. Categories help users filter and find appropriate connection types based on their use cases.
- Parameters:
categories- A list of categories that this connection type belongs to. Categories help users filter and find appropriate connection types based on their use cases.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
categories
ConnectionTypeBrief.Builder categories(String... categories)
A list of categories that this connection type belongs to. Categories help users filter and find appropriate connection types based on their use cases.
- Parameters:
categories- A list of categories that this connection type belongs to. Categories help users filter and find appropriate connection types based on their use cases.- 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)
-
logoUrl
ConnectionTypeBrief.Builder logoUrl(String logoUrl)
The URL of the logo associated with a connection type.
- Parameters:
logoUrl- The URL of the logo associated with a connection type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionTypeVariants
ConnectionTypeBrief.Builder connectionTypeVariants(Collection<ConnectionTypeVariant> connectionTypeVariants)
A list of variants available for this connection type. Different variants may provide specialized configurations for specific use cases or implementations of the same general connection type.
- Parameters:
connectionTypeVariants- A list of variants available for this connection type. Different variants may provide specialized configurations for specific use cases or implementations of the same general connection type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionTypeVariants
ConnectionTypeBrief.Builder connectionTypeVariants(ConnectionTypeVariant... connectionTypeVariants)
A list of variants available for this connection type. Different variants may provide specialized configurations for specific use cases or implementations of the same general connection type.
- Parameters:
connectionTypeVariants- A list of variants available for this connection type. Different variants may provide specialized configurations for specific use cases or implementations of the same general connection type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionTypeVariants
ConnectionTypeBrief.Builder connectionTypeVariants(Consumer<ConnectionTypeVariant.Builder>... connectionTypeVariants)
A list of variants available for this connection type. Different variants may provide specialized configurations for specific use cases or implementations of the same general connection type.
This is a convenience method that creates an instance of theConnectionTypeVariant.Builderavoiding the need to create one manually viaConnectionTypeVariant.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#connectionTypeVariants(List.) - Parameters:
connectionTypeVariants- a consumer that will call methods onConnectionTypeVariant.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#connectionTypeVariants(java.util.Collection)
-
-