Interface Type.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Type.Builder,Type>,SdkBuilder<Type.Builder,Type>,SdkPojo
- Enclosing class:
- Type
public static interface Type.Builder extends SdkPojo, CopyableBuilder<Type.Builder,Type>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Type.Builderarn(String arn)The type Amazon Resource Name (ARN).Type.Builderdefinition(String definition)The type definition.Type.Builderdescription(String description)The type description.Type.Builderformat(String format)The type format: SDL or JSON.Type.Builderformat(TypeDefinitionFormat format)The type format: SDL or JSON.Type.Buildername(String name)The type name.-
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
-
name
Type.Builder name(String name)
The type name.
- Parameters:
name- The type name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
Type.Builder description(String description)
The type description.
- Parameters:
description- The type description.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
Type.Builder arn(String arn)
The type Amazon Resource Name (ARN).
- Parameters:
arn- The type Amazon Resource Name (ARN).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
definition
Type.Builder definition(String definition)
The type definition.
- Parameters:
definition- The type definition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
format
Type.Builder format(String format)
The type format: SDL or JSON.
- Parameters:
format- The type format: SDL or JSON.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TypeDefinitionFormat,TypeDefinitionFormat
-
format
Type.Builder format(TypeDefinitionFormat format)
The type format: SDL or JSON.
- Parameters:
format- The type format: SDL or JSON.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TypeDefinitionFormat,TypeDefinitionFormat
-
-