Interface CustomStruct.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CustomStruct.Builder,CustomStruct>,SdkBuilder<CustomStruct.Builder,CustomStruct>,SdkPojo
- Enclosing class:
- CustomStruct
public static interface CustomStruct.Builder extends SdkPojo, CopyableBuilder<CustomStruct.Builder,CustomStruct>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomStruct.Buildercomment(String comment)A comment in addition to the description.CustomStruct.BuilderdeprecationMessage(String deprecationMessage)The deprecation message for the node or the branch that was moved or deleted.CustomStruct.Builderdescription(String description)A brief description of the custom structure.CustomStruct.BuilderfullyQualifiedName(String fullyQualifiedName)The fully qualified name of the custom structure.-
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
-
fullyQualifiedName
CustomStruct.Builder fullyQualifiedName(String fullyQualifiedName)
The fully qualified name of the custom structure. For example, the fully qualified name of a custom structure might be
ComplexDataTypes.VehicleDataTypes.SVMCamera.- Parameters:
fullyQualifiedName- The fully qualified name of the custom structure. For example, the fully qualified name of a custom structure might beComplexDataTypes.VehicleDataTypes.SVMCamera.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
CustomStruct.Builder description(String description)
A brief description of the custom structure.
- Parameters:
description- A brief description of the custom structure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deprecationMessage
CustomStruct.Builder deprecationMessage(String deprecationMessage)
The deprecation message for the node or the branch that was moved or deleted.
- Parameters:
deprecationMessage- The deprecation message for the node or the branch that was moved or deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
comment
CustomStruct.Builder comment(String comment)
A comment in addition to the description.
- Parameters:
comment- A comment in addition to the description.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-