Interface ImplicitFilterConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ImplicitFilterConfiguration.Builder,ImplicitFilterConfiguration>,SdkBuilder<ImplicitFilterConfiguration.Builder,ImplicitFilterConfiguration>,SdkPojo
- Enclosing class:
- ImplicitFilterConfiguration
@Mutable @NotThreadSafe public static interface ImplicitFilterConfiguration.Builder extends SdkPojo, CopyableBuilder<ImplicitFilterConfiguration.Builder,ImplicitFilterConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImplicitFilterConfiguration.BuildermetadataAttributes(Collection<MetadataAttributeSchema> metadataAttributes)Metadata that can be used in a filter.ImplicitFilterConfiguration.BuildermetadataAttributes(Consumer<MetadataAttributeSchema.Builder>... metadataAttributes)Metadata that can be used in a filter.ImplicitFilterConfiguration.BuildermetadataAttributes(MetadataAttributeSchema... metadataAttributes)Metadata that can be used in a filter.ImplicitFilterConfiguration.BuildermodelArn(String modelArn)The model that generates the filter.-
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 Detail
-
metadataAttributes
ImplicitFilterConfiguration.Builder metadataAttributes(Collection<MetadataAttributeSchema> metadataAttributes)
Metadata that can be used in a filter.
- Parameters:
metadataAttributes- Metadata that can be used in a filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metadataAttributes
ImplicitFilterConfiguration.Builder metadataAttributes(MetadataAttributeSchema... metadataAttributes)
Metadata that can be used in a filter.
- Parameters:
metadataAttributes- Metadata that can be used in a filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metadataAttributes
ImplicitFilterConfiguration.Builder metadataAttributes(Consumer<MetadataAttributeSchema.Builder>... metadataAttributes)
Metadata that can be used in a filter.
This is a convenience method that creates an instance of theMetadataAttributeSchema.Builderavoiding the need to create one manually viaMetadataAttributeSchema.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#metadataAttributes(List.) - Parameters:
metadataAttributes- a consumer that will call methods onMetadataAttributeSchema.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#metadataAttributes(java.util.Collection)
-
modelArn
ImplicitFilterConfiguration.Builder modelArn(String modelArn)
The model that generates the filter.
- Parameters:
modelArn- The model that generates the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-