@resistdesign/voltra
    Preparing search index...

    Type Alias AddSecureFileStorageConfig

    Configuration for the secure file storage pack.

    type AddSecureFileStorageConfig = {
        accessControl?: AWS.S3.Bucket["Properties"]["AccessControl"];
        allowACLs?: boolean;
        blockPublicAccess?: boolean;
        bucketName?: any;
        cors?: AWS.S3.Bucket["Properties"]["CorsConfiguration"] | boolean;
        id: string;
        shouldDelete?: boolean;
    }
    Index

    Properties

    accessControl?: AWS.S3.Bucket["Properties"]["AccessControl"]

    ACL configuration for the bucket.

    allowACLs?: boolean

    Whether to allow ACLs by enabling ownership controls.

    blockPublicAccess?: boolean

    Whether to block all public access.

    bucketName?: any

    Optional bucket name.

    cors?: AWS.S3.Bucket["Properties"]["CorsConfiguration"] | boolean

    CORS configuration or enablement flag.

    id: string

    S3 bucket resource id.

    shouldDelete?: boolean

    Whether to delete the bucket on stack delete.