Type Alias ByosStorageAddStorageLocationRequestBody

ByosStorageAddStorageLocationRequestBody: {
    name: string;
    provider: "aws_s3";
    s3: {
        access_key: { id: string; key: string };
        authentication_mechanism: "aws_access_key";
        bucket: string;
        region: string;
    };
}