Interface CfnFormPropsMixin.FileUploaderFieldConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFormPropsMixin.FileUploaderFieldConfigProperty.Jsii$Proxy
Enclosing class:
CfnFormPropsMixin

@Stability(Stable) public static interface CfnFormPropsMixin.FileUploaderFieldConfigProperty extends software.amazon.jsii.JsiiSerializable
Describes the configuration for the file uploader field.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.amplifyuibuilder.mixins.*;
 FileUploaderFieldConfigProperty fileUploaderFieldConfigProperty = FileUploaderFieldConfigProperty.builder()
         .acceptedFileTypes(List.of("acceptedFileTypes"))
         .accessLevel("accessLevel")
         .isResumable(false)
         .maxFileCount(123)
         .maxSize(123)
         .showThumbnails(false)
         .build();
 

See Also: