Interface StorageConnector.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StorageConnector.Builder,StorageConnector>,SdkBuilder<StorageConnector.Builder,StorageConnector>,SdkPojo
- Enclosing class:
- StorageConnector
public static interface StorageConnector.Builder extends SdkPojo, CopyableBuilder<StorageConnector.Builder,StorageConnector>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StorageConnector.BuilderconnectorType(String connectorType)The type of storage connector.StorageConnector.BuilderconnectorType(StorageConnectorType connectorType)The type of storage connector.StorageConnector.Builderdomains(String... domains)The names of the domains for the account.StorageConnector.Builderdomains(Collection<String> domains)The names of the domains for the account.StorageConnector.BuilderresourceIdentifier(String resourceIdentifier)The ARN of the storage connector.-
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
-
connectorType
StorageConnector.Builder connectorType(String connectorType)
The type of storage connector.
- Parameters:
connectorType- The type of storage connector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StorageConnectorType,StorageConnectorType
-
connectorType
StorageConnector.Builder connectorType(StorageConnectorType connectorType)
The type of storage connector.
- Parameters:
connectorType- The type of storage connector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StorageConnectorType,StorageConnectorType
-
resourceIdentifier
StorageConnector.Builder resourceIdentifier(String resourceIdentifier)
The ARN of the storage connector.
- Parameters:
resourceIdentifier- The ARN of the storage connector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domains
StorageConnector.Builder domains(Collection<String> domains)
The names of the domains for the account.
- Parameters:
domains- The names of the domains for the account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domains
StorageConnector.Builder domains(String... domains)
The names of the domains for the account.
- Parameters:
domains- The names of the domains for the account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-