Interface LFTagPolicyDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LFTagPolicyDetails.Builder,LFTagPolicyDetails>,SdkBuilder<LFTagPolicyDetails.Builder,LFTagPolicyDetails>,SdkPojo
- Enclosing class:
- LFTagPolicyDetails
public static interface LFTagPolicyDetails.Builder extends SdkPojo, CopyableBuilder<LFTagPolicyDetails.Builder,LFTagPolicyDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description LFTagPolicyDetails.BuildercatalogId(String catalogId)The identifier for the AWS Glue Data Catalog.default LFTagPolicyDetails.BuilderresourceDetails(Consumer<LFResourceDetails.Builder> resourceDetails)Details for the Lake Formation Resources included in the LF-tag policy.LFTagPolicyDetails.BuilderresourceDetails(LFResourceDetails resourceDetails)Details for the Lake Formation Resources included in the LF-tag policy.LFTagPolicyDetails.BuilderresourceType(String resourceType)The resource type for which the LF-tag policy applies.LFTagPolicyDetails.BuilderresourceType(LFResourceType resourceType)The resource type for which the LF-tag policy applies.-
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
-
catalogId
LFTagPolicyDetails.Builder catalogId(String catalogId)
The identifier for the AWS Glue Data Catalog.
- Parameters:
catalogId- The identifier for the AWS Glue Data Catalog.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceType
LFTagPolicyDetails.Builder resourceType(String resourceType)
The resource type for which the LF-tag policy applies.
- Parameters:
resourceType- The resource type for which the LF-tag policy applies.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LFResourceType,LFResourceType
-
resourceType
LFTagPolicyDetails.Builder resourceType(LFResourceType resourceType)
The resource type for which the LF-tag policy applies.
- Parameters:
resourceType- The resource type for which the LF-tag policy applies.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LFResourceType,LFResourceType
-
resourceDetails
LFTagPolicyDetails.Builder resourceDetails(LFResourceDetails resourceDetails)
Details for the Lake Formation Resources included in the LF-tag policy.
- Parameters:
resourceDetails- Details for the Lake Formation Resources included in the LF-tag policy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceDetails
default LFTagPolicyDetails.Builder resourceDetails(Consumer<LFResourceDetails.Builder> resourceDetails)
Details for the Lake Formation Resources included in the LF-tag policy.
This is a convenience method that creates an instance of theLFResourceDetails.Builderavoiding the need to create one manually viaLFResourceDetails.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toresourceDetails(LFResourceDetails).- Parameters:
resourceDetails- a consumer that will call methods onLFResourceDetails.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
resourceDetails(LFResourceDetails)
-
-