Interface ResourceDetail.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ResourceDetail.Builder,ResourceDetail>,SdkBuilder<ResourceDetail.Builder,ResourceDetail>,SdkPojo
- Enclosing class:
- ResourceDetail
public static interface ResourceDetail.Builder extends SdkPojo, CopyableBuilder<ResourceDetail.Builder,ResourceDetail>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResourceDetail.Builderarn(String arn)The ARN of the resource.ResourceDetail.BuildercreatedTime(Instant createdTime)The creation time of the resource.ResourceDetail.Builderdescription(String description)The description of the resource.ResourceDetail.Builderid(String id)The identifier of the resource.ResourceDetail.Buildername(String name)The name 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
-
id
ResourceDetail.Builder id(String id)
The identifier of the resource.
- Parameters:
id- The identifier of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
ResourceDetail.Builder arn(String arn)
The ARN of the resource.
- Parameters:
arn- The ARN of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
ResourceDetail.Builder name(String name)
The name of the resource.
- Parameters:
name- The name of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
ResourceDetail.Builder description(String description)
The description of the resource.
- Parameters:
description- The description of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdTime
ResourceDetail.Builder createdTime(Instant createdTime)
The creation time of the resource.
- Parameters:
createdTime- The creation time of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-