You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue #, if available: aws-controllers-k8s/community#2658: Support S3 Express directory buckets.
Description of changes:
Updates changes from previous [PR](#204) by @Itai-Melamed
- Add e2e test for validating creation, updating put fields, tagging, and deletion for directory buckets
- Fix issue applying bucket policy to directory bucket due to ConfirmRemoveSelfBucketAccess not being supported for directory buckets
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
Copy file name to clipboardExpand all lines: config/crd/bases/s3.services.k8s.aws_buckets.yaml
+28Lines changed: 28 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -171,6 +171,34 @@ spec:
171
171
createBucketConfiguration:
172
172
description: The configuration information for the bucket.
173
173
properties:
174
+
bucket:
175
+
description: |-
176
+
Specifies the information about the bucket that will be created. For more
177
+
information about directory buckets, see Directory buckets (https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-overview.html)
178
+
in the Amazon S3 User Guide.
179
+
180
+
This functionality is only supported by directory buckets.
181
+
properties:
182
+
dataRedundancy:
183
+
type: string
184
+
type:
185
+
type: string
186
+
type: object
187
+
location:
188
+
description: |-
189
+
Specifies the location where the bucket will be created.
190
+
191
+
For directory buckets, the location type is Availability Zone or Local Zone.
192
+
For more information about directory buckets, see Directory buckets (https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-overview.html)
193
+
in the Amazon S3 User Guide.
194
+
195
+
This functionality is only supported by directory buckets.
0 commit comments