description: An s3 bucket connection info format_extension: null is_fileset: false schema: $schema: https://json-schema.org/draft/2020-12/schema type: object order: - endPoint - region - pathStyle - bucket - accessKey - secretKey - port - useSSL properties: accessKey: type: string description: '' default: '' bucket: type: string description: '' default: '' endPoint: type: string description: The full URL of the S3 endpoint (e.g. https://s3.us-east-1.amazonaws.com) default: '' pathStyle: type: boolean description: // instead of ./ default: true port: type: number description: 'Deprecated: pass in a complete URL to `endPoint` instead, including a port number if needed' region: type: string description: AWS region (e.g. us-east-1). Used to auto-generate the S3 endpoint URL when endPoint is not specified default: '' secretKey: type: string description: '' default: '' useSSL: type: boolean description: "Deprecated: pass in a complete URL to `endPoint` instead, including 'https://' or 'http://'" default: true required: - bucket