Interface ConnectionTypeVariant.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectionTypeVariant.Builder,ConnectionTypeVariant>,SdkBuilder<ConnectionTypeVariant.Builder,ConnectionTypeVariant>,SdkPojo
- Enclosing class:
- ConnectionTypeVariant
@Mutable @NotThreadSafe public static interface ConnectionTypeVariant.Builder extends SdkPojo, CopyableBuilder<ConnectionTypeVariant.Builder,ConnectionTypeVariant>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectionTypeVariant.BuilderconnectionTypeVariantName(String connectionTypeVariantName)The unique identifier for the connection type variant.ConnectionTypeVariant.Builderdescription(String description)A detailed description of the connection type variant, including its purpose, use cases, and any specific configuration requirements.ConnectionTypeVariant.BuilderdisplayName(String displayName)The human-readable name for the connection type variant that is displayed in the Glue console.ConnectionTypeVariant.BuilderlogoUrl(String logoUrl)The URL of the logo associated with a connection type variant.-
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
-
connectionTypeVariantName
ConnectionTypeVariant.Builder connectionTypeVariantName(String connectionTypeVariantName)
The unique identifier for the connection type variant. This name is used internally to identify the specific variant of a connection type.
- Parameters:
connectionTypeVariantName- The unique identifier for the connection type variant. This name is used internally to identify the specific variant of a connection type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayName
ConnectionTypeVariant.Builder displayName(String displayName)
The human-readable name for the connection type variant that is displayed in the Glue console.
- Parameters:
displayName- The human-readable name for the connection type variant that is displayed in the Glue console.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
ConnectionTypeVariant.Builder description(String description)
A detailed description of the connection type variant, including its purpose, use cases, and any specific configuration requirements.
- Parameters:
description- A detailed description of the connection type variant, including its purpose, use cases, and any specific configuration requirements.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logoUrl
ConnectionTypeVariant.Builder logoUrl(String logoUrl)
The URL of the logo associated with a connection type variant.
- Parameters:
logoUrl- The URL of the logo associated with a connection type variant.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-