/*! * Copyright Adaptavist 2025 (c) All rights reserved */ export interface S3Bucket { /** * BucketRegion indicates the AWS region where the bucket is located. If the request contains at least one valid parameter, it is included in the response. */ BucketRegion?: string; /** * Date the bucket was created. This date can change when making changes to your bucket, such as editing its bucket policy. */ CreationDate?: string; /** * The name of the bucket. */ Name?: string; } //# sourceMappingURL=S3Bucket.d.ts.map