Interface ProviderComponentSchema.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ProviderComponentSchema.Builder,
,ProviderComponentSchema> SdkBuilder<ProviderComponentSchema.Builder,
,ProviderComponentSchema> SdkPojo
- Enclosing class:
ProviderComponentSchema
@Mutable
@NotThreadSafe
public static interface ProviderComponentSchema.Builder
extends SdkPojo, CopyableBuilder<ProviderComponentSchema.Builder,ProviderComponentSchema>
-
Method Summary
Modifier and TypeMethodDescriptionproviderSchemaAttributes
(Collection<ProviderSchemaAttribute> providerSchemaAttributes) The provider schema attributes.providerSchemaAttributes
(Consumer<ProviderSchemaAttribute.Builder>... providerSchemaAttributes) The provider schema attributes.providerSchemaAttributes
(ProviderSchemaAttribute... providerSchemaAttributes) The provider schema attributes.schemas
(Collection<? extends Collection<String>> schemas) Input schema for the provider service.schemas
(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, sdkFieldNameToField, sdkFields
-
Method Details
-
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
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.
-
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.Builder
avoiding the need to create one manually viaProviderSchemaAttribute.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toproviderSchemaAttributes(List<ProviderSchemaAttribute>)
.- 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:
-