Interface ProviderComponentSchema.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProviderComponentSchema.Builder,ProviderComponentSchema>,SdkBuilder<ProviderComponentSchema.Builder,ProviderComponentSchema>,SdkPojo
- Enclosing class:
- ProviderComponentSchema
public static interface ProviderComponentSchema.Builder extends SdkPojo, CopyableBuilder<ProviderComponentSchema.Builder,ProviderComponentSchema>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProviderComponentSchema.BuilderproviderSchemaAttributes(Collection<ProviderSchemaAttribute> providerSchemaAttributes)The provider schema attributes.ProviderComponentSchema.BuilderproviderSchemaAttributes(Consumer<ProviderSchemaAttribute.Builder>... providerSchemaAttributes)The provider schema attributes.ProviderComponentSchema.BuilderproviderSchemaAttributes(ProviderSchemaAttribute... providerSchemaAttributes)The provider schema attributes.ProviderComponentSchema.Builderschemas(Collection<? extends Collection<String>> schemas)Input schema for the provider service.ProviderComponentSchema.Builderschemas(Collection<String>... schemas)Input schema for the provider service.-
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
-
providerSchemaAttributes
ProviderComponentSchema.Builder providerSchemaAttributes(Collection<ProviderSchemaAttribute> providerSchemaAttributes)
The provider schema attributes.
- Parameters:
providerSchemaAttributes- The provider schema attributes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
providerSchemaAttributes
ProviderComponentSchema.Builder providerSchemaAttributes(ProviderSchemaAttribute... providerSchemaAttributes)
The provider schema attributes.
- Parameters:
providerSchemaAttributes- The provider schema attributes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
providerSchemaAttributes
ProviderComponentSchema.Builder providerSchemaAttributes(Consumer<ProviderSchemaAttribute.Builder>... providerSchemaAttributes)
The provider schema attributes.
This is a convenience method that creates an instance of theProviderSchemaAttribute.Builderavoiding the need to create one manually viaProviderSchemaAttribute.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#providerSchemaAttributes(List.) - Parameters:
providerSchemaAttributes- a consumer that will call methods onProviderSchemaAttribute.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#providerSchemaAttributes(java.util.Collection)
-
schemas
ProviderComponentSchema.Builder schemas(Collection<? extends Collection<String>> schemas)
Input schema for the provider service.
- Parameters:
schemas- Input schema for the provider service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schemas
ProviderComponentSchema.Builder schemas(Collection<String>... schemas)
Input schema for the provider service.
- Parameters:
schemas- Input schema for the provider service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-