Interface SourceResource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SourceResource.Builder,SourceResource>,SdkBuilder<SourceResource.Builder,SourceResource>,SdkPojo
- Enclosing class:
- SourceResource
public static interface SourceResource.Builder extends SdkPojo, CopyableBuilder<SourceResource.Builder,SourceResource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SourceResource.Builderdescription(String description)A description that can be free-form text to record additional detail about the resource for clarity or later reference.SourceResource.Buildername(String name)This is the name that you want to use to identify the resource.SourceResource.BuilderstatusDetail(String statusDetail)A free-form description of the status of the resource.-
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
-
name
SourceResource.Builder name(String name)
This is the name that you want to use to identify the resource. If the resource is an AWS resource, we recommend that you set this parameter to the ARN of the resource.
- Parameters:
name- This is the name that you want to use to identify the resource. If the resource is an AWS resource, we recommend that you set this parameter to the ARN of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
SourceResource.Builder description(String description)
A description that can be free-form text to record additional detail about the resource for clarity or later reference.
- Parameters:
description- A description that can be free-form text to record additional detail about the resource for clarity or later reference.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statusDetail
SourceResource.Builder statusDetail(String statusDetail)
A free-form description of the status of the resource.
- Parameters:
statusDetail- A free-form description of the status of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-