Interface ServiceIntegrationsUnion.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ServiceIntegrationsUnion.Builder,ServiceIntegrationsUnion>
,SdkBuilder<ServiceIntegrationsUnion.Builder,ServiceIntegrationsUnion>
,SdkPojo
- Enclosing class:
- ServiceIntegrationsUnion
public static interface ServiceIntegrationsUnion.Builder extends SdkPojo, CopyableBuilder<ServiceIntegrationsUnion.Builder,ServiceIntegrationsUnion>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServiceIntegrationsUnion.Builder
lakeFormation(Collection<LakeFormationScopeUnion> lakeFormation)
A list of scopes set up for Lake Formation integration.ServiceIntegrationsUnion.Builder
lakeFormation(Consumer<LakeFormationScopeUnion.Builder>... lakeFormation)
A list of scopes set up for Lake Formation integration.ServiceIntegrationsUnion.Builder
lakeFormation(LakeFormationScopeUnion... lakeFormation)
A list of scopes set up for Lake Formation integration.-
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
-
lakeFormation
ServiceIntegrationsUnion.Builder lakeFormation(Collection<LakeFormationScopeUnion> lakeFormation)
A list of scopes set up for Lake Formation integration.
- Parameters:
lakeFormation
- A list of scopes set up for Lake Formation integration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lakeFormation
ServiceIntegrationsUnion.Builder lakeFormation(LakeFormationScopeUnion... lakeFormation)
A list of scopes set up for Lake Formation integration.
- Parameters:
lakeFormation
- A list of scopes set up for Lake Formation integration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lakeFormation
ServiceIntegrationsUnion.Builder lakeFormation(Consumer<LakeFormationScopeUnion.Builder>... lakeFormation)
A list of scopes set up for Lake Formation integration.
This is a convenience method that creates an instance of theLakeFormationScopeUnion.Builder
avoiding the need to create one manually viaLakeFormationScopeUnion.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#lakeFormation(List
.) - Parameters:
lakeFormation
- a consumer that will call methods onLakeFormationScopeUnion.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#lakeFormation(java.util.Collection
)
-
-