Interface CfnForm.FileUploaderFieldConfigProperty

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

@Stability(Stable) public static interface CfnForm.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.services.amplifyuibuilder.*;
 FileUploaderFieldConfigProperty fileUploaderFieldConfigProperty = FileUploaderFieldConfigProperty.builder()
         .acceptedFileTypes(List.of("acceptedFileTypes"))
         .accessLevel("accessLevel")
         // the properties below are optional
         .isResumable(false)
         .maxFileCount(123)
         .maxSize(123)
         .showThumbnails(false)
         .build();
 

See Also: