Interface ContentTypeProfiles.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ContentTypeProfiles.Builder,ContentTypeProfiles>,SdkBuilder<ContentTypeProfiles.Builder,ContentTypeProfiles>,SdkPojo
- Enclosing class:
- ContentTypeProfiles
@Mutable @NotThreadSafe public static interface ContentTypeProfiles.Builder extends SdkPojo, CopyableBuilder<ContentTypeProfiles.Builder,ContentTypeProfiles>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContentTypeProfiles.Builderitems(Collection<ContentTypeProfile> items)Items in a field-level encryption content type-profile mapping.ContentTypeProfiles.Builderitems(Consumer<ContentTypeProfile.Builder>... items)Items in a field-level encryption content type-profile mapping.ContentTypeProfiles.Builderitems(ContentTypeProfile... items)Items in a field-level encryption content type-profile mapping.ContentTypeProfiles.Builderquantity(Integer quantity)The number of field-level encryption content type-profile mappings.-
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
-
quantity
ContentTypeProfiles.Builder quantity(Integer quantity)
The number of field-level encryption content type-profile mappings.
- Parameters:
quantity- The number of field-level encryption content type-profile mappings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ContentTypeProfiles.Builder items(Collection<ContentTypeProfile> items)
Items in a field-level encryption content type-profile mapping.
- Parameters:
items- Items in a field-level encryption content type-profile mapping.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ContentTypeProfiles.Builder items(ContentTypeProfile... items)
Items in a field-level encryption content type-profile mapping.
- Parameters:
items- Items in a field-level encryption content type-profile mapping.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ContentTypeProfiles.Builder items(Consumer<ContentTypeProfile.Builder>... items)
Items in a field-level encryption content type-profile mapping.
This is a convenience method that creates an instance of theContentTypeProfile.Builderavoiding the need to create one manually viaContentTypeProfile.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onContentTypeProfile.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
-