Interface SchemaId.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<SchemaId.Builder,SchemaId>
,SdkBuilder<SchemaId.Builder,SchemaId>
,SdkPojo
- Enclosing class:
- SchemaId
public static interface SchemaId.Builder extends SdkPojo, CopyableBuilder<SchemaId.Builder,SchemaId>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SchemaId.Builder
registryName(String registryName)
The name of the schema registry that contains the schema.SchemaId.Builder
schemaArn(String schemaArn)
The Amazon Resource Name (ARN) of the schema.SchemaId.Builder
schemaName(String schemaName)
The name of the schema.-
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
-
schemaArn
SchemaId.Builder schemaArn(String schemaArn)
The Amazon Resource Name (ARN) of the schema. One of
SchemaArn
orSchemaName
has to be provided.- Parameters:
schemaArn
- The Amazon Resource Name (ARN) of the schema. One ofSchemaArn
orSchemaName
has to be provided.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schemaName
SchemaId.Builder schemaName(String schemaName)
The name of the schema. One of
SchemaArn
orSchemaName
has to be provided.- Parameters:
schemaName
- The name of the schema. One ofSchemaArn
orSchemaName
has to be provided.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
registryName
SchemaId.Builder registryName(String registryName)
The name of the schema registry that contains the schema.
- Parameters:
registryName
- The name of the schema registry that contains the schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-