Interface ConnectorRuntimeSetting.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectorRuntimeSetting.Builder,ConnectorRuntimeSetting>,SdkBuilder<ConnectorRuntimeSetting.Builder,ConnectorRuntimeSetting>,SdkPojo
- Enclosing class:
- ConnectorRuntimeSetting
public static interface ConnectorRuntimeSetting.Builder extends SdkPojo, CopyableBuilder<ConnectorRuntimeSetting.Builder,ConnectorRuntimeSetting>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectorRuntimeSetting.BuilderconnectorSuppliedValueOptions(String... connectorSuppliedValueOptions)Contains default values for the connector runtime setting that are supplied by the connector.ConnectorRuntimeSetting.BuilderconnectorSuppliedValueOptions(Collection<String> connectorSuppliedValueOptions)Contains default values for the connector runtime setting that are supplied by the connector.ConnectorRuntimeSetting.BuilderdataType(String dataType)Data type of the connector runtime setting.ConnectorRuntimeSetting.Builderdescription(String description)A description about the connector runtime setting.ConnectorRuntimeSetting.BuilderisRequired(Boolean isRequired)Indicates whether this connector runtime setting is required.ConnectorRuntimeSetting.Builderkey(String key)Contains value information about the connector runtime setting.ConnectorRuntimeSetting.Builderlabel(String label)A label used for connector runtime setting.ConnectorRuntimeSetting.Builderscope(String scope)Indicates the scope of the connector runtime setting.-
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
-
key
ConnectorRuntimeSetting.Builder key(String key)
Contains value information about the connector runtime setting.
- Parameters:
key- Contains value information about the connector runtime setting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataType
ConnectorRuntimeSetting.Builder dataType(String dataType)
Data type of the connector runtime setting.
- Parameters:
dataType- Data type of the connector runtime setting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isRequired
ConnectorRuntimeSetting.Builder isRequired(Boolean isRequired)
Indicates whether this connector runtime setting is required.
- Parameters:
isRequired- Indicates whether this connector runtime setting is required.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
label
ConnectorRuntimeSetting.Builder label(String label)
A label used for connector runtime setting.
- Parameters:
label- A label used for connector runtime setting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
ConnectorRuntimeSetting.Builder description(String description)
A description about the connector runtime setting.
- Parameters:
description- A description about the connector runtime setting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scope
ConnectorRuntimeSetting.Builder scope(String scope)
Indicates the scope of the connector runtime setting.
- Parameters:
scope- Indicates the scope of the connector runtime setting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectorSuppliedValueOptions
ConnectorRuntimeSetting.Builder connectorSuppliedValueOptions(Collection<String> connectorSuppliedValueOptions)
Contains default values for the connector runtime setting that are supplied by the connector.
- Parameters:
connectorSuppliedValueOptions- Contains default values for the connector runtime setting that are supplied by the connector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectorSuppliedValueOptions
ConnectorRuntimeSetting.Builder connectorSuppliedValueOptions(String... connectorSuppliedValueOptions)
Contains default values for the connector runtime setting that are supplied by the connector.
- Parameters:
connectorSuppliedValueOptions- Contains default values for the connector runtime setting that are supplied by the connector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-