Interface MetadataAttributeSchema.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<MetadataAttributeSchema.Builder,MetadataAttributeSchema>
,SdkBuilder<MetadataAttributeSchema.Builder,MetadataAttributeSchema>
,SdkPojo
- Enclosing class:
- MetadataAttributeSchema
public static interface MetadataAttributeSchema.Builder extends SdkPojo, CopyableBuilder<MetadataAttributeSchema.Builder,MetadataAttributeSchema>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MetadataAttributeSchema.Builder
description(String description)
The attribute's description.MetadataAttributeSchema.Builder
key(String key)
The attribute's key.MetadataAttributeSchema.Builder
type(String type)
The attribute's type.MetadataAttributeSchema.Builder
type(AttributeType type)
The attribute's type.-
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
-
description
MetadataAttributeSchema.Builder description(String description)
The attribute's description.
- Parameters:
description
- The attribute's description.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
key
MetadataAttributeSchema.Builder key(String key)
The attribute's key.
- Parameters:
key
- The attribute's key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
MetadataAttributeSchema.Builder type(String type)
The attribute's type.
- Parameters:
type
- The attribute's type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AttributeType
,AttributeType
-
type
MetadataAttributeSchema.Builder type(AttributeType type)
The attribute's type.
- Parameters:
type
- The attribute's type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AttributeType
,AttributeType
-
-