@akamai/openapi-ts
    Preparing search index...

    Type Alias GetObjectStorageBucketAccessResponses

    type GetObjectStorageBucketAccessResponses = {
        "200": {
            acl:
                | "private"
                | "public-read"
                | "authenticated-read"
                | "public-read-write"
                | "custom";
            acl_xml: string;
            cors_enabled: boolean
            | null;
            cors_xml: string | null;
        };
    }
    Index

    Properties

    Properties

    "200": {
        acl:
            | "private"
            | "public-read"
            | "authenticated-read"
            | "public-read-write"
            | "custom";
        acl_xml: string;
        cors_enabled: boolean
        | null;
        cors_xml: string | null;
    }

    Access settings for the specific bucket.

    Type Declaration

    • acl:
          | "private"
          | "public-read"
          | "authenticated-read"
          | "public-read-write"
          | "custom"

      The S3 predefined collection of grantees and permissions set for the bucket, also referred to as a Canned ACL.

    • acl_xml: string

      The full XML of the object's ACL policy.

    • cors_enabled: boolean | null

      If true, cross-origin resource sharing (CORS) is enabled for all origins in the bucket. Returned as null for E2 and E3 endpoint types because CORS is not supported.

    • cors_xml: string | null

      The full XML of the bucket's CORS policy. Returned as an empty object if cors_enabled is false, and null for E2 and E3 endpoint types. CORS is not supported with these endpoint types.