Package software.amazon.awscdk.services.s3
Amazon S3 Construct Library
Define an S3 bucket.
Bucket bucket = new Bucket(this, "MyFirstBucket");
Bucket constructs expose the following deploy-time attributes:
bucketArn- the ARN of the bucket (i.e.arn:aws:s3:::amzn-s3-demo-bucket)bucketName- the name of the bucket (i.e.amzn-s3-demo-bucket)bucketWebsiteUrl- the Website URL of the bucket (i.e.http://amzn-s3-demo-bucket.s3-website-us-west-1.amazonaws.com)bucketDomainName- the URL of the bucket (i.e.amzn-s3-demo-bucket.s3.amazonaws.com)bucketDualStackDomainName- the dual-stack URL of the bucket (i.e.amzn-s3-demo-bucket.s3.dualstack.eu-west-1.amazonaws.com)bucketRegionalDomainName- the regional URL of the bucket (i.e.amzn-s3-demo-bucket.s3.eu-west-1.amazonaws.com)arnForObjects(pattern)- the ARN of an object or objects within the bucket (i.e.arn:aws:s3:::amzn-s3-demo-bucket/exampleobject.pngorarn:aws:s3:::amzn-s3-demo-bucket/Development/*)urlForObject(key)- the HTTP URL of an object within the bucket (i.e.https://s3---cn-north-1.amazonaws.com.rproxy.govskope.ca.cn/china-bucket/mykey)virtualHostedUrlForObject(key)- the virtual-hosted style HTTP URL of an object within the bucket (i.e.https://china-bucket-s3---cn-north-1.amazonaws.com.rproxy.govskope.ca.cn/mykey)s3UrlForObject(key)- the S3 URL of an object within the bucket (i.e.s3://bucket/mykey)
Encryption
Define a KMS-encrypted bucket:
Bucket bucket = Bucket.Builder.create(this, "MyEncryptedBucket")
.encryption(BucketEncryption.KMS)
.build();
// you can access the encryption key:
assert(bucket.getEncryptionKey() instanceof Key);
You can also supply your own key:
Key myKmsKey = new Key(this, "MyKey");
Bucket bucket = Bucket.Builder.create(this, "MyEncryptedBucket")
.encryption(BucketEncryption.KMS)
.encryptionKey(myKmsKey)
.build();
assert(bucket.getEncryptionKey() == myKmsKey);
Enable KMS-SSE encryption via S3 Bucket Keys:
Bucket bucket = Bucket.Builder.create(this, "MyEncryptedBucket")
.encryption(BucketEncryption.KMS)
.bucketKeyEnabled(true)
.build();
Use BucketEncryption.ManagedKms to use the S3 master KMS key:
Bucket bucket = Bucket.Builder.create(this, "Buck")
.encryption(BucketEncryption.KMS_MANAGED)
.build();
assert(bucket.getEncryptionKey() == null);
Enable DSSE encryption:
const bucket = new s3.Bucket(stack, 'MyDSSEBucket', {
encryption: s3.BucketEncryption.DSSE_MANAGED,
bucketKeyEnabled: true,
});
Permissions
A bucket policy will be automatically created for the bucket upon the first call to
addToResourcePolicy(statement):
Bucket bucket = new Bucket(this, "MyBucket");
AddToResourcePolicyResult result = bucket.addToResourcePolicy(
PolicyStatement.Builder.create()
.actions(List.of("s3:GetObject"))
.resources(List.of(bucket.arnForObjects("file.txt")))
.principals(List.of(new AccountRootPrincipal()))
.build());
If you try to add a policy statement to an existing bucket, this method will not do anything:
IBucket bucket = Bucket.fromBucketName(this, "existingBucket", "amzn-s3-demo-bucket");
// No policy statement will be added to the resource
AddToResourcePolicyResult result = bucket.addToResourcePolicy(
PolicyStatement.Builder.create()
.actions(List.of("s3:GetObject"))
.resources(List.of(bucket.arnForObjects("file.txt")))
.principals(List.of(new AccountRootPrincipal()))
.build());
That's because it's not possible to tell whether the bucket already has a policy attached, let alone to re-use that policy to add more statements to it. We recommend that you always check the result of the call:
Bucket bucket = new Bucket(this, "MyBucket");
AddToResourcePolicyResult result = bucket.addToResourcePolicy(
PolicyStatement.Builder.create()
.actions(List.of("s3:GetObject"))
.resources(List.of(bucket.arnForObjects("file.txt")))
.principals(List.of(new AccountRootPrincipal()))
.build());
if (!result.getStatementAdded()) {
}
The bucket policy can be directly accessed after creation to add statements or adjust the removal policy.
Bucket bucket = new Bucket(this, "MyBucket"); bucket.policy.applyRemovalPolicy(RemovalPolicy.RETAIN);
Most of the time, you won't have to manipulate the bucket policy directly. Instead, buckets have "grant" methods called to give prepackaged sets of permissions to other resources. For example:
Function myLambda; Bucket bucket = new Bucket(this, "MyBucket"); bucket.grantReadWrite(myLambda);
Will give the Lambda's execution role permissions to read and write from the bucket.
Understanding "grant" Methods
The S3 construct library provides several grant methods for the Bucket resource, but two of them have a special behavior. This two accept an objectsKeyPattern parameter to restrict granted permissions to specific resources:
grantReadgrantReadWrite
When examining the synthesized policy, you'll notice it includes both your specified object key patterns and the bucket itself.
This is by design. Some permissions (like s3:ListBucket) apply at the bucket level, while others (like s3:GetObject) apply to specific objects.
Specifically, the s3:ListBucket action operates on bucket resources
and requires the bucket ARN to work properly. This might be seen as a bug, giving the impression that more permissions were granted than the ones you intended, but the reality is that the policy does not ignore your objectsKeyPattern - object-specific actions like s3:GetObject
will still be limited to the resources defined in your pattern.
If you need to restrict the s3:ListBucket action to specific paths, you can add a Condition to your policy that limits the objectsKeyPattern to specific folders. For more details and examples, see the AWS documentation on bucket policies.
AWS Foundational Security Best Practices
Enforcing SSL
To require all requests use Secure Socket Layer (SSL):
Bucket bucket = Bucket.Builder.create(this, "Bucket")
.enforceSSL(true)
.build();
To require a minimum TLS version for all requests:
Bucket bucket = Bucket.Builder.create(this, "Bucket")
.enforceSSL(true)
.minimumTLSVersion(1.2)
.build();
Sharing buckets between stacks
To use a bucket in a different stack in the same CDK application, pass the object to the other stack:
/**
* Stack that defines the bucket
*/
public class Producer extends Stack {
public final Bucket myBucket;
public Producer(Construct scope, String id) {
this(scope, id, null);
}
public Producer(Construct scope, String id, StackProps props) {
super(scope, id, props);
Bucket bucket = Bucket.Builder.create(this, "MyBucket")
.removalPolicy(RemovalPolicy.DESTROY)
.build();
this.myBucket = bucket;
}
}
public class ConsumerProps extends StackProps {
private IBucket userBucket;
public IBucket getUserBucket() {
return this.userBucket;
}
public ConsumerProps userBucket(IBucket userBucket) {
this.userBucket = userBucket;
return this;
}
}
/**
* Stack that consumes the bucket
*/
public class Consumer extends Stack {
public Consumer(Construct scope, String id, ConsumerProps props) {
super(scope, id, props);
User user = new User(this, "MyUser");
props.userBucket.grantReadWrite(user);
}
}
App app = new App();
Producer producer = new Producer(app, "ProducerStack");
new Consumer(app, "ConsumerStack", new ConsumerProps().userBucket(producer.getMyBucket()));
Importing existing buckets
To import an existing bucket into your CDK application, use the Bucket.fromBucketAttributes
factory method. This method accepts BucketAttributes which describes the properties of an already
existing bucket:
Note that this method allows importing buckets with legacy names containing uppercase letters (A-Z) or underscores (_), which were
permitted for buckets created before March 1, 2018. For buckets created after this date, uppercase letters and underscores
are not allowed in the bucket name.
Function myLambda;
IBucket bucket = Bucket.fromBucketAttributes(this, "ImportedBucket", BucketAttributes.builder()
.bucketArn("arn:aws:s3:::amzn-s3-demo-bucket")
.build());
// now you can just call methods on the bucket
bucket.addEventNotification(EventType.OBJECT_CREATED, new LambdaDestination(myLambda), NotificationKeyFilter.builder()
.prefix("home/myusername/*")
.build());
Alternatively, short-hand factories are available as Bucket.fromBucketName and
Bucket.fromBucketArn, which will derive all bucket attributes from the bucket
name or ARN respectively:
IBucket byName = Bucket.fromBucketName(this, "BucketByName", "amzn-s3-demo-bucket"); IBucket byArn = Bucket.fromBucketArn(this, "BucketByArn", "arn:aws:s3:::amzn-s3-demo-bucket");
The bucket's region defaults to the current stack's region, but can also be explicitly set in cases where one of the bucket's regional properties needs to contain the correct values.
IBucket myCrossRegionBucket = Bucket.fromBucketAttributes(this, "CrossRegionImport", BucketAttributes.builder()
.bucketArn("arn:aws:s3:::amzn-s3-demo-bucket")
.region("us-east-1")
.build());
Bucket Notifications
The Amazon S3 notification feature enables you to receive notifications when certain events happen in your bucket as described under S3 Bucket Notifications of the S3 Developer Guide.
To subscribe for bucket notifications, use the bucket.addEventNotification method. The
bucket.addObjectCreatedNotification and bucket.addObjectRemovedNotification can also be used for
these common use cases.
The following example will subscribe an SNS topic to be notified of all s3:ObjectCreated:* events:
Bucket bucket = new Bucket(this, "MyBucket"); Topic topic = new Topic(this, "MyTopic"); bucket.addEventNotification(EventType.OBJECT_CREATED, new SnsDestination(topic));
This call will also ensure that the topic policy can accept notifications for this specific bucket.
Supported S3 notification targets are exposed by the aws-cdk-lib/aws-s3-notifications package.
It is also possible to specify S3 object key filters when subscribing. The
following example will notify myQueue when objects prefixed with foo/ and
have the .jpg suffix are removed from the bucket.
Queue myQueue;
Bucket bucket = new Bucket(this, "MyBucket");
bucket.addEventNotification(EventType.OBJECT_REMOVED, new SqsDestination(myQueue), NotificationKeyFilter.builder()
.prefix("foo/")
.suffix(".jpg")
.build());
Adding notifications on existing buckets:
Topic topic;
IBucket bucket = Bucket.fromBucketAttributes(this, "ImportedBucket", BucketAttributes.builder()
.bucketArn("arn:aws:s3:::amzn-s3-demo-bucket")
.build());
bucket.addEventNotification(EventType.OBJECT_CREATED, new SnsDestination(topic));
If you do not want for S3 to validate permissions of Amazon SQS, Amazon SNS, and Lambda destinations you can use the notificationsSkipDestinationValidation flag:
Queue myQueue;
Bucket bucket = Bucket.Builder.create(this, "MyBucket")
.notificationsSkipDestinationValidation(true)
.build();
bucket.addEventNotification(EventType.OBJECT_REMOVED, new SqsDestination(myQueue));
When you add an event notification to a bucket, a custom resource is created to
manage the notifications. By default, a new role is created for the Lambda
function that implements this feature. If you want to use your own role instead,
you should provide it in the Bucket constructor:
IRole myRole;
Bucket bucket = Bucket.Builder.create(this, "MyBucket")
.notificationsHandlerRole(myRole)
.build();
Whatever role you provide, the CDK will try to modify it by adding the
permissions from AWSLambdaBasicExecutionRole (an AWS managed policy) as well
as the permissions s3:PutBucketNotification and s3:GetBucketNotification.
If you’re passing an imported role, and you don’t want this to happen, configure
it to be immutable:
IRole importedRole = Role.fromRoleArn(this, "role", "arn:aws:iam::123456789012:role/RoleName", FromRoleArnOptions.builder()
.mutable(false)
.build());
If you provide an imported immutable role, make sure that it has at least all the permissions mentioned above. Otherwise, the deployment will fail!
EventBridge notifications
Amazon S3 can send events to Amazon EventBridge whenever certain events happen in your bucket. Unlike other destinations, you don't need to select which event types you want to deliver.
The following example will enable EventBridge notifications:
Bucket bucket = Bucket.Builder.create(this, "MyEventBridgeBucket")
.eventBridgeEnabled(true)
.build();
Block Public Access
Use blockPublicAccess to specify block public access settings on the bucket.
Enable all block public access settings:
Bucket bucket = Bucket.Builder.create(this, "MyBlockedBucket")
.blockPublicAccess(BlockPublicAccess.BLOCK_ALL)
.build();
Block and ignore public ACLs (other options remain unblocked):
Bucket bucket = Bucket.Builder.create(this, "MyBlockedBucket")
.blockPublicAccess(BlockPublicAccess.BLOCK_ACLS_ONLY)
.build();
Alternatively, specify the settings manually (unspecified options will remain blocked):
Bucket bucket = Bucket.Builder.create(this, "MyBlockedBucket")
.blockPublicAccess(BlockPublicAccess.Builder.create().blockPublicPolicy(false).build())
.build();
When blockPublicPolicy is set to true, grantPublicRead() throws an error.
Public Read Access
Use publicReadAccess to allow public read access to the bucket.
Note that to enable publicReadAccess, make sure both bucket-level and account-level block public access control is disabled.
Bucket-level block public access control can be configured through blockPublicAccess property. Account-level block public
access control can be configured on AWS Console -> S3 -> Block Public Access settings for this account (Navigation Panel).
Bucket bucket = Bucket.Builder.create(this, "Bucket")
.publicReadAccess(true)
.blockPublicAccess(Map.of(
"blockPublicPolicy", false,
"blockPublicAcls", false,
"ignorePublicAcls", false,
"restrictPublicBuckets", false))
.build();
Logging configuration
Use serverAccessLogsBucket to describe where server access logs are to be stored.
Bucket accessLogsBucket = new Bucket(this, "AccessLogsBucket");
Bucket bucket = Bucket.Builder.create(this, "MyBucket")
.serverAccessLogsBucket(accessLogsBucket)
.build();
It's also possible to specify a prefix for Amazon S3 to assign to all log object keys.
Bucket accessLogsBucket = new Bucket(this, "AccessLogsBucket");
Bucket bucket = Bucket.Builder.create(this, "MyBucket")
.serverAccessLogsBucket(accessLogsBucket)
.serverAccessLogsPrefix("logs")
.build();
You have two options for the log object key format.
Non-date-based partitioning is the default log object key format and appears as follows:
[DestinationPrefix][YYYY]-[MM]-[DD]-[hh]-[mm]-[ss]-[UniqueString]
Bucket accessLogsBucket = new Bucket(this, "AccessLogsBucket");
Bucket bucket = Bucket.Builder.create(this, "MyBucket")
.serverAccessLogsBucket(accessLogsBucket)
.serverAccessLogsPrefix("logs")
// You can use a simple prefix with `TargetObjectKeyFormat.simplePrefix()`, but it is the same even if you do not specify `targetObjectKeyFormat` property.
.targetObjectKeyFormat(TargetObjectKeyFormat.simplePrefix())
.build();
Another option is Date-based partitioning.
If you choose this format, you can select either the event time or the delivery time of the log file as the date source used in the log format.
This format appears as follows:
[DestinationPrefix][SourceAccountId]/[SourceRegion]/[SourceBucket]/[YYYY]/[MM]/[DD]/[YYYY]-[MM]-[DD]-[hh]-[mm]-[ss]-[UniqueString]
Bucket accessLogsBucket = new Bucket(this, "AccessLogsBucket");
Bucket bucket = Bucket.Builder.create(this, "MyBucket")
.serverAccessLogsBucket(accessLogsBucket)
.serverAccessLogsPrefix("logs")
.targetObjectKeyFormat(TargetObjectKeyFormat.partitionedPrefix(PartitionDateSource.EVENT_TIME))
.build();
Allowing access log delivery using a Bucket Policy (recommended)
When possible, it is recommended to use a bucket policy to grant access instead of
using ACLs. When the @aws-cdk/aws-s3:serverAccessLogsUseBucketPolicy feature flag
is enabled, this is done by default for server access logs. If S3 Server Access Logs
are the only logs delivered to your bucket (or if all other services logging to the
bucket support using bucket policy instead of ACLs), you can set object ownership
to bucket owner enforced, as is recommended.
Bucket accessLogsBucket = Bucket.Builder.create(this, "AccessLogsBucket")
.objectOwnership(ObjectOwnership.BUCKET_OWNER_ENFORCED)
.build();
Bucket bucket = Bucket.Builder.create(this, "MyBucket")
.serverAccessLogsBucket(accessLogsBucket)
.serverAccessLogsPrefix("logs")
.build();
The above code will create a new bucket policy if none exists or update the existing bucket policy to allow access log delivery.
However, there could be an edge case if the accessLogsBucket also defines a bucket
policy resource using the L1 Construct. Although the mixing of L1 and L2 Constructs is not
recommended, there are no mechanisms in place to prevent users from doing this at the moment.
String bucketName = "amzn-s3-demo-bucket";
Bucket accessLogsBucket = Bucket.Builder.create(this, "AccessLogsBucket")
.objectOwnership(ObjectOwnership.BUCKET_OWNER_ENFORCED)
.bucketName(bucketName)
.build();
// Creating a bucket policy using L1
CfnBucketPolicy bucketPolicy = CfnBucketPolicy.Builder.create(this, "BucketPolicy")
.bucket(bucketName)
.policyDocument(Map.of(
"Statement", List.of(Map.of(
"Action", "s3:*",
"Effect", "Deny",
"Principal", Map.of(
"AWS", "*"),
"Resource", List.of(accessLogsBucket.getBucketArn(), String.format("%s/*", accessLogsBucket.getBucketArn())))),
"Version", "2012-10-17"))
.build();
// 'serverAccessLogsBucket' will create a new L2 bucket policy
// to allow log delivery and overwrite the L1 bucket policy.
Bucket bucket = Bucket.Builder.create(this, "MyBucket")
.serverAccessLogsBucket(accessLogsBucket)
.serverAccessLogsPrefix("logs")
.build();
The above example uses the L2 Bucket Construct with the L1 CfnBucketPolicy Construct. However,
when serverAccessLogsBucket is set, a new L2 Bucket Policy resource will be created
which overwrites the permissions defined in the L1 Bucket Policy causing unintended
behaviours.
As noted above, we highly discourage the mixed usage of L1 and L2 Constructs. The recommended
approach would to define the bucket policy using addToResourcePolicy method.
Bucket accessLogsBucket = Bucket.Builder.create(this, "AccessLogsBucket")
.objectOwnership(ObjectOwnership.BUCKET_OWNER_ENFORCED)
.build();
accessLogsBucket.addToResourcePolicy(
PolicyStatement.Builder.create()
.actions(List.of("s3:*"))
.resources(List.of(accessLogsBucket.getBucketArn(), accessLogsBucket.arnForObjects("*")))
.principals(List.of(new AnyPrincipal()))
.build());
Bucket bucket = Bucket.Builder.create(this, "MyBucket")
.serverAccessLogsBucket(accessLogsBucket)
.serverAccessLogsPrefix("logs")
.build();
Alternatively, users can use the L2 Bucket Policy Construct
BucketPolicy.fromCfnBucketPolicy to wrap around CfnBucketPolicy Construct. This will allow the subsequent bucket policy generated by serverAccessLogsBucket usage to append to the existing bucket policy instead of overwriting.
String bucketName = "amzn-s3-demo-bucket";
Bucket accessLogsBucket = Bucket.Builder.create(this, "AccessLogsBucket")
.objectOwnership(ObjectOwnership.BUCKET_OWNER_ENFORCED)
.bucketName(bucketName)
.build();
CfnBucketPolicy bucketPolicy = CfnBucketPolicy.Builder.create(this, "BucketPolicy")
.bucket(bucketName)
.policyDocument(Map.of(
"Statement", List.of(Map.of(
"Action", "s3:*",
"Effect", "Deny",
"Principal", Map.of(
"AWS", "*"),
"Resource", List.of(accessLogsBucket.getBucketArn(), String.format("%s/*", accessLogsBucket.getBucketArn())))),
"Version", "2012-10-17"))
.build();
// Wrap L1 Construct with L2 Bucket Policy Construct. Subsequent
// generated bucket policy to allow access log delivery would append
// to the current policy.
BucketPolicy.fromCfnBucketPolicy(bucketPolicy);
Bucket bucket = Bucket.Builder.create(this, "MyBucket")
.serverAccessLogsBucket(accessLogsBucket)
.serverAccessLogsPrefix("logs")
.build();
S3 Inventory
An inventory contains a list of the objects in the source bucket and metadata for each object. The inventory lists are stored in the destination bucket as a CSV file compressed with GZIP, as an Apache optimized row columnar (ORC) file compressed with ZLIB, or as an Apache Parquet (Parquet) file compressed with Snappy.
You can configure multiple inventory lists for a bucket. You can configure what object metadata to include in the inventory, whether to list all object versions or only current versions, where to store the inventory list file output, and whether to generate the inventory on a daily or weekly basis.
Bucket inventoryBucket = new Bucket(this, "InventoryBucket");
Bucket dataBucket = Bucket.Builder.create(this, "DataBucket")
.inventories(List.of(Inventory.builder()
.frequency(InventoryFrequency.DAILY)
.includeObjectVersions(InventoryObjectVersion.CURRENT)
.destination(InventoryDestination.builder()
.bucket(inventoryBucket)
.build())
.build(), Inventory.builder()
.frequency(InventoryFrequency.WEEKLY)
.includeObjectVersions(InventoryObjectVersion.ALL)
.destination(InventoryDestination.builder()
.bucket(inventoryBucket)
.prefix("with-all-versions")
.build())
.build()))
.build();
If the destination bucket is created as part of the same CDK application, the necessary permissions will be automatically added to the bucket policy.
However, if you use an imported bucket (i.e Bucket.fromXXX()), you'll have to make sure it contains the following policy document:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "InventoryAndAnalyticsExamplePolicy",
"Effect": "Allow",
"Principal": { "Service": "s3.amazonaws.com" },
"Action": "s3:PutObject",
"Resource": ["arn:aws:s3:::amzn-s3-demo-destination-bucket/*"]
}
]
}
Website redirection
You can use the two following properties to specify the bucket redirection policy. Please note that these methods cannot both be applied to the same bucket.
Static redirection
You can statically redirect a to a given Bucket URL or any other host name with websiteRedirect:
Bucket bucket = Bucket.Builder.create(this, "MyRedirectedBucket")
.websiteRedirect(RedirectTarget.builder().hostName("www.example.com").build())
.build();
Routing rules
Alternatively, you can also define multiple websiteRoutingRules, to define complex, conditional redirections:
Bucket bucket = Bucket.Builder.create(this, "MyRedirectedBucket")
.websiteRoutingRules(List.of(RoutingRule.builder()
.hostName("www.example.com")
.httpRedirectCode("302")
.protocol(RedirectProtocol.HTTPS)
.replaceKey(ReplaceKey.prefixWith("test/"))
.condition(RoutingRuleCondition.builder()
.httpErrorCodeReturnedEquals("200")
.keyPrefixEquals("prefix")
.build())
.build()))
.build();
Filling the bucket as part of deployment
To put files into a bucket as part of a deployment (for example, to host a
website), see the aws-cdk-lib/aws-s3-deployment package, which provides a
resource that can do just that.
The URL for objects
S3 provides two types of URLs for accessing objects via HTTP(S). Path-Style and Virtual Hosted-Style URL. Path-Style is a classic way and will be deprecated. We recommend to use Virtual Hosted-Style URL for newly made bucket.
You can generate both of them.
Bucket bucket = new Bucket(this, "MyBucket");
bucket.urlForObject("objectname"); // Path-Style URL
bucket.virtualHostedUrlForObject("objectname"); // Virtual Hosted-Style URL
bucket.virtualHostedUrlForObject("objectname", VirtualHostedStyleUrlOptions.builder().regional(false).build());
Object Ownership
You can use one of following properties to specify the bucket object Ownership.
Object writer
The Uploading account will own the object.
Bucket.Builder.create(this, "MyBucket")
.objectOwnership(ObjectOwnership.OBJECT_WRITER)
.build();
Bucket owner preferred
The bucket owner will own the object if the object is uploaded with the bucket-owner-full-control canned ACL. Without this setting and canned ACL, the object is uploaded and remains owned by the uploading account.
Bucket.Builder.create(this, "MyBucket")
.objectOwnership(ObjectOwnership.BUCKET_OWNER_PREFERRED)
.build();
Bucket owner enforced (recommended)
ACLs are disabled, and the bucket owner automatically owns and has full control over every object in the bucket. ACLs no longer affect permissions to data in the S3 bucket. The bucket uses policies to define access control.
Bucket.Builder.create(this, "MyBucket")
.objectOwnership(ObjectOwnership.BUCKET_OWNER_ENFORCED)
.build();
Some services may not not support log delivery to buckets that have object ownership set to bucket owner enforced, such as S3 buckets using ACLs or CloudFront Distributions.
Bucket deletion
When a bucket is removed from a stack (or the stack is deleted), the S3
bucket will be removed according to its removal policy (which by default will
simply orphan the bucket and leave it in your AWS account). If the removal
policy is set to RemovalPolicy.DESTROY, the bucket will be deleted as long
as it does not contain any objects.
To override this and force all objects to get deleted during bucket deletion,
enable theautoDeleteObjects option.
When autoDeleteObjects is enabled, s3:PutBucketPolicy is added to the bucket policy. This is done to allow the custom resource this feature is built on to add a deny policy for s3:PutObject to the bucket policy when a delete stack event occurs. Adding this deny policy prevents new objects from being written to the bucket. Doing this prevents race conditions with external bucket writers during the deletion process.
Bucket bucket = Bucket.Builder.create(this, "MyTempFileBucket")
.removalPolicy(RemovalPolicy.DESTROY)
.autoDeleteObjects(true)
.build();
Warning if you have deployed a bucket with autoDeleteObjects: true,
switching this to false in a CDK version before 1.126.0 will lead to
all objects in the bucket being deleted. Be sure to update your bucket resources
by deploying with CDK version 1.126.0 or later before switching this value to false.
Transfer Acceleration
Transfer Acceleration can be configured to enable fast, easy, and secure transfers of files over long distances:
Bucket bucket = Bucket.Builder.create(this, "MyBucket")
.transferAcceleration(true)
.build();
To access the bucket that is enabled for Transfer Acceleration, you must use a special endpoint. The URL can be generated using method transferAccelerationUrlForObject:
Bucket bucket = Bucket.Builder.create(this, "MyBucket")
.transferAcceleration(true)
.build();
bucket.transferAccelerationUrlForObject("objectname");
Intelligent Tiering
Intelligent Tiering can be configured to automatically move files to glacier:
Bucket.Builder.create(this, "MyBucket")
.intelligentTieringConfigurations(List.of(IntelligentTieringConfiguration.builder()
.name("foo")
.prefix("folder/name")
.archiveAccessTierTime(Duration.days(90))
.deepArchiveAccessTierTime(Duration.days(180))
.tags(List.of(Tag.builder().key("tagname").value("tagvalue").build()))
.build()))
.build();
Lifecycle Rule
Managing lifecycle can be configured transition or expiration actions.
Bucket bucket = Bucket.Builder.create(this, "MyBucket")
.lifecycleRules(List.of(LifecycleRule.builder()
.abortIncompleteMultipartUploadAfter(Duration.minutes(30))
.enabled(false)
.expiration(Duration.days(30))
.expirationDate(new Date())
.expiredObjectDeleteMarker(false)
.id("id")
.noncurrentVersionExpiration(Duration.days(30))
// the properties below are optional
.noncurrentVersionsToRetain(123)
.noncurrentVersionTransitions(List.of(NoncurrentVersionTransition.builder()
.storageClass(StorageClass.GLACIER)
.transitionAfter(Duration.days(30))
// the properties below are optional
.noncurrentVersionsToRetain(123)
.build()))
.objectSizeGreaterThan(500)
.prefix("prefix")
.objectSizeLessThan(10000)
.transitions(List.of(Transition.builder()
.storageClass(StorageClass.GLACIER)
// exactly one of transitionAfter or transitionDate must be specified
.transitionAfter(Duration.days(30))
.build()))
.build()))
.build();
To indicate which default minimum object size behavior is applied to the lifecycle configuration, use the
transitionDefaultMinimumObjectSize property.
The default value of the property before September 2024 is TransitionDefaultMinimumObjectSize.VARIES_BY_STORAGE_CLASS
that allows objects smaller than 128 KB to be transitioned only to the S3 Glacier and S3 Glacier Deep Archive storage classes,
otherwise TransitionDefaultMinimumObjectSize.ALL_STORAGE_CLASSES_128_K that prevents objects smaller than 128 KB from being
transitioned to any storage class.
To customize the minimum object size for any transition you
can add a filter that specifies a custom objectSizeGreaterThan or objectSizeLessThan for lifecycleRules
property. Custom filters always take precedence over the default transition behavior.
Bucket.Builder.create(this, "MyBucket")
.transitionDefaultMinimumObjectSize(TransitionDefaultMinimumObjectSize.VARIES_BY_STORAGE_CLASS)
.lifecycleRules(List.of(LifecycleRule.builder()
.transitions(List.of(Transition.builder()
.storageClass(StorageClass.DEEP_ARCHIVE)
.transitionAfter(Duration.days(30))
.build()))
.build(), LifecycleRule.builder()
.objectSizeLessThan(300000)
.objectSizeGreaterThan(200000)
.transitions(List.of(Transition.builder()
.storageClass(StorageClass.ONE_ZONE_INFREQUENT_ACCESS)
.transitionAfter(Duration.days(30))
.build()))
.build()))
.build();
Object Lock Configuration
Object Lock can be configured to enable a write-once-read-many model for an S3 bucket. Object Lock must be configured when a bucket is created; if a bucket is created without Object Lock, it cannot be enabled later via the CDK.
Object Lock can be enabled on an S3 bucket by specifying:
Bucket bucket = Bucket.Builder.create(this, "MyBucket")
.objectLockEnabled(true)
.build();
Usually, it is desired to not just enable Object Lock for a bucket but to also configure a
retention mode
and a retention period.
These can be specified by providing objectLockDefaultRetention:
// Configure for governance mode with a duration of 7 years
// Configure for governance mode with a duration of 7 years
Bucket.Builder.create(this, "Bucket1")
.objectLockDefaultRetention(ObjectLockRetention.governance(Duration.days(7 * 365)))
.build();
// Configure for compliance mode with a duration of 1 year
// Configure for compliance mode with a duration of 1 year
Bucket.Builder.create(this, "Bucket2")
.objectLockDefaultRetention(ObjectLockRetention.compliance(Duration.days(365)))
.build();
Replicating Objects
You can use replicating objects to enable automatic, asynchronous copying of objects across Amazon S3 buckets. Buckets that are configured for object replication can be owned by the same AWS account or by different accounts. You can replicate objects to a single destination bucket or to multiple destination buckets. The destination buckets can be in different AWS Regions or within the same Region as the source bucket.
To replicate objects to a destination bucket, you can specify the replicationRules property:
IBucket destinationBucket1;
IBucket destinationBucket2;
IRole replicationRole;
IKey encryptionKey;
IKey destinationEncryptionKey;
Bucket sourceBucket = Bucket.Builder.create(this, "SourceBucket")
// Versioning must be enabled on both the source and destination bucket
.versioned(true)
// Optional. Specify the KMS key to use for encrypts objects in the source bucket.
.encryptionKey(encryptionKey)
// Optional. If not specified, a new role will be created.
.replicationRole(replicationRole)
.replicationRules(List.of(ReplicationRule.builder()
// The destination bucket for the replication rule.
.destination(destinationBucket1)
// The priority of the rule.
// Amazon S3 will attempt to replicate objects according to all replication rules.
// However, if there are two or more rules with the same destination bucket, then objects will be replicated according to the rule with the highest priority.
// The higher the number, the higher the priority.
// It is essential to specify priority explicitly when the replication configuration has multiple rules.
.priority(1)
.build(), ReplicationRule.builder()
.destination(destinationBucket2)
.priority(2)
// Whether to specify S3 Replication Time Control (S3 RTC).
// S3 RTC replicates most objects that you upload to Amazon S3 in seconds,
// and 99.99 percent of those objects within specified time.
.replicationTimeControl(ReplicationTimeValue.FIFTEEN_MINUTES)
// Whether to enable replication metrics about S3 RTC.
// If set, metrics will be output to indicate whether replication by S3 RTC took longer than the configured time.
.metrics(ReplicationTimeValue.FIFTEEN_MINUTES)
// The kms key to use for the destination bucket.
.kmsKey(destinationEncryptionKey)
// The storage class to use for the destination bucket.
.storageClass(StorageClass.INFREQUENT_ACCESS)
// Whether to replicate objects with SSE-KMS encryption.
.sseKmsEncryptedObjects(false)
// Whether to replicate modifications on replicas.
.replicaModifications(true)
// Whether to replicate delete markers.
// This property cannot be enabled if the replication rule has a tag filter.
.deleteMarkerReplication(false)
// The ID of the rule.
.id("full-settings-rule")
// The object filter for the rule.
.filter(Filter.builder()
// The prefix filter for the rule.
.prefix("prefix")
// The tag filter for the rule.
.tags(List.of(Tag.builder()
.key("tagKey")
.value("tagValue")
.build()))
.build())
.build()))
.build();
// Grant permissions to the replication role.
// This method is not required if you choose to use an auto-generated replication role or manually grant permissions.
sourceBucket.grantReplicationPermission(replicationRole, GrantReplicationPermissionProps.builder()
// Optional. Specify the KMS key to use for decrypting objects in the source bucket.
.sourceDecryptionKey(encryptionKey)
.destinations(List.of(GrantReplicationPermissionDestinationProps.builder().bucket(destinationBucket1).build(), GrantReplicationPermissionDestinationProps.builder().bucket(destinationBucket2).encryptionKey(destinationEncryptionKey).build()))
.build());
Cross Account Replication
You can also set a destination bucket from a different account as the replication destination.
In this case, the bucket policy for the destination bucket is required, to configure it through CDK use addReplicationPolicy() method to add bucket policy on destination bucket.
In a cross-account scenario, where the source and destination buckets are owned by different AWS accounts, you can use a KMS key to encrypt object replicas. However, the KMS key owner must grant the source bucket owner permission to use the KMS key.
For more information, please refer to https://docs.aws.amazon.com/AmazonS3/latest/userguide/replication-walkthrough-2.html .
NOTE: AWS managed keys don't allow cross-account use, and therefore can't be used to perform cross-account replication.
If you need to override the bucket ownership to destination account pass the account value to the method to provide permissions to override bucket owner.
addReplicationPolicy(bucket.replicationRoleArn, true, '11111111111');
However, if the destination bucket is a referenced bucket, CDK cannot set the bucket policy, so you will need to configure the necessary bucket policy separately.
// The destination bucket in a different account.
IBucket destinationBucket;
IRole replicationRole;
Bucket sourceBucket = Bucket.Builder.create(this, "SourceBucket")
.versioned(true)
// Optional. If not specified, a new role will be created.
.replicationRole(replicationRole)
.replicationRules(List.of(ReplicationRule.builder()
.destination(destinationBucket)
.priority(1)
// Whether to want to change replica ownership to the AWS account that owns the destination bucket.
// The replicas are owned by same AWS account that owns the source object by default.
.accessControlTransition(true)
.build()))
.build();
//Add permissions to the destination after replication role is created
if (sourceBucket.getReplicationRoleArn()) {
destinationBucket.addReplicationPolicy(sourceBucket.getReplicationRoleArn(), true, "111111111111");
}
-
ClassDescriptionA reference to a AccessGrant resource.A builder for
AccessGrantReferenceAn implementation forAccessGrantReferenceA reference to a AccessGrantsInstance resource.A builder forAccessGrantsInstanceReferenceAn implementation forAccessGrantsInstanceReferenceA reference to a AccessGrantsLocation resource.A builder forAccessGrantsLocationReferenceAn implementation forAccessGrantsLocationReferenceA reference to a AccessPoint resource.A builder forAccessPointReferenceAn implementation forAccessPointReferenceExample:A fluent builder forBlockPublicAccess.Example:A builder forBlockPublicAccessOptionsAn implementation forBlockPublicAccessOptionsAn S3 bucket with associated policy objects.A fluent builder forBucket.Default bucket access control types.A reference to a bucket outside this stack.A builder forBucketAttributesAn implementation forBucketAttributesRepresents an S3 Bucket.What kind of server-side encryption to apply to this bucket.Specifies a metrics configuration for the CloudWatch request metrics from an Amazon S3 bucket.A builder forBucketMetricsAn implementation forBucketMetricsRepresents the properties of a notification destination.A builder forBucketNotificationDestinationConfigAn implementation forBucketNotificationDestinationConfigSupported types of notification destinations.The bucket policy for an Amazon S3 bucket.A fluent builder forBucketPolicy.Example:A builder forBucketPolicyPropsAn implementation forBucketPolicyPropsA reference to a BucketPolicy resource.A builder forBucketPolicyReferenceAn implementation forBucketPolicyReferenceExample:A builder forBucketPropsAn implementation forBucketPropsA reference to a Bucket resource.A builder forBucketReferenceAn implementation forBucketReferenceTheAWS::S3::AccessGrantresource creates an access grant that gives a grantee access to your S3 data.The configuration options of the S3 Access Grants location.A builder forCfnAccessGrant.AccessGrantsLocationConfigurationPropertyAn implementation forCfnAccessGrant.AccessGrantsLocationConfigurationPropertyA fluent builder forCfnAccessGrant.The user, group, or role to which you are granting access.A builder forCfnAccessGrant.GranteePropertyAn implementation forCfnAccessGrant.GranteePropertyProperties for defining aCfnAccessGrant.A builder forCfnAccessGrantPropsAn implementation forCfnAccessGrantPropsTheAWS::S3::AccessGrantInstanceresource creates an S3 Access Grants instance, which serves as a logical grouping for access grants.A fluent builder forCfnAccessGrantsInstance.Properties for defining aCfnAccessGrantsInstance.A builder forCfnAccessGrantsInstancePropsAn implementation forCfnAccessGrantsInstancePropsTheAWS::S3::AccessGrantsLocationresource creates the S3 data location that you would like to register in your S3 Access Grants instance.A fluent builder forCfnAccessGrantsLocation.Properties for defining aCfnAccessGrantsLocation.A builder forCfnAccessGrantsLocationPropsAn implementation forCfnAccessGrantsLocationPropsThe AWS::S3::AccessPoint resource is an Amazon S3 resource type that you can use to access buckets.A fluent builder forCfnAccessPoint.The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket.A builder forCfnAccessPoint.PublicAccessBlockConfigurationPropertyAn implementation forCfnAccessPoint.PublicAccessBlockConfigurationPropertyThe Virtual Private Cloud (VPC) configuration for this access point.A builder forCfnAccessPoint.VpcConfigurationPropertyAn implementation forCfnAccessPoint.VpcConfigurationPropertyProperties for defining aCfnAccessPoint.A builder forCfnAccessPointPropsAn implementation forCfnAccessPointPropsTheAWS::S3::Bucketresource creates an Amazon S3 bucket in the same AWS Region where you create the AWS CloudFormation stack.Specifies the days since the initiation of an incomplete multipart upload that Amazon S3 will wait before permanently removing all parts of the upload.A builder forCfnBucket.AbortIncompleteMultipartUploadPropertyAn implementation forCfnBucket.AbortIncompleteMultipartUploadPropertyConfigures the transfer acceleration state for an Amazon S3 bucket.A builder forCfnBucket.AccelerateConfigurationPropertyAn implementation forCfnBucket.AccelerateConfigurationPropertySpecify this only in a cross-account scenario (where source and destination bucket owners are not the same), and you want to change replica ownership to the AWS account that owns the destination bucket.A builder forCfnBucket.AccessControlTranslationPropertyAn implementation forCfnBucket.AccessControlTranslationPropertySpecifies the configuration and any analyses for the analytics filter of an Amazon S3 bucket.A builder forCfnBucket.AnalyticsConfigurationPropertyAn implementation forCfnBucket.AnalyticsConfigurationPropertySpecifies default encryption for a bucket using server-side encryption with Amazon S3-managed keys (SSE-S3), AWS KMS-managed keys (SSE-KMS), or dual-layer server-side encryption with KMS-managed keys (DSSE-KMS).A builder forCfnBucket.BucketEncryptionPropertyAn implementation forCfnBucket.BucketEncryptionPropertyA fluent builder forCfnBucket.Describes the cross-origin access configuration for objects in an Amazon S3 bucket.A builder forCfnBucket.CorsConfigurationPropertyAn implementation forCfnBucket.CorsConfigurationPropertySpecifies a cross-origin access rule for an Amazon S3 bucket.A builder forCfnBucket.CorsRulePropertyAn implementation forCfnBucket.CorsRulePropertySpecifies how data related to the storage class analysis for an Amazon S3 bucket should be exported.A builder forCfnBucket.DataExportPropertyAn implementation forCfnBucket.DataExportPropertyThe container element for optionally specifying the default Object Lock retention settings for new objects placed in the specified bucket.A builder forCfnBucket.DefaultRetentionPropertyAn implementation forCfnBucket.DefaultRetentionPropertySpecifies whether Amazon S3 replicates delete markers.A builder forCfnBucket.DeleteMarkerReplicationPropertyAn implementation forCfnBucket.DeleteMarkerReplicationPropertySpecifies information about where to publish analysis or configuration results for an Amazon S3 bucket.A builder forCfnBucket.DestinationPropertyAn implementation forCfnBucket.DestinationPropertySpecifies encryption-related information for an Amazon S3 bucket that is a destination for replicated objects.A builder forCfnBucket.EncryptionConfigurationPropertyAn implementation forCfnBucket.EncryptionConfigurationPropertyAmazon S3 can send events to Amazon EventBridge whenever certain events happen in your bucket, see Using EventBridge in the Amazon S3 User Guide .A builder forCfnBucket.EventBridgeConfigurationPropertyAn implementation forCfnBucket.EventBridgeConfigurationPropertySpecifies the Amazon S3 object key name to filter on.A builder forCfnBucket.FilterRulePropertyAn implementation forCfnBucket.FilterRulePropertySpecifies the S3 Intelligent-Tiering configuration for an Amazon S3 bucket.A builder forCfnBucket.IntelligentTieringConfigurationPropertyAn implementation forCfnBucket.IntelligentTieringConfigurationPropertySpecifies the S3 Inventory configuration for an Amazon S3 bucket.A builder forCfnBucket.InventoryConfigurationPropertyAn implementation forCfnBucket.InventoryConfigurationPropertyThe inventory table configuration for an S3 Metadata configuration.A builder forCfnBucket.InventoryTableConfigurationPropertyAn implementation forCfnBucket.InventoryTableConfigurationPropertyThe journal table configuration for an S3 Metadata configuration.A builder forCfnBucket.JournalTableConfigurationPropertyAn implementation forCfnBucket.JournalTableConfigurationPropertyDescribes the AWS Lambda functions to invoke and the events for which to invoke them.A builder forCfnBucket.LambdaConfigurationPropertyAn implementation forCfnBucket.LambdaConfigurationPropertySpecifies the lifecycle configuration for objects in an Amazon S3 bucket.A builder forCfnBucket.LifecycleConfigurationPropertyAn implementation forCfnBucket.LifecycleConfigurationPropertyDescribes where logs are stored and the prefix that Amazon S3 assigns to all log object keys for a bucket.A builder forCfnBucket.LoggingConfigurationPropertyAn implementation forCfnBucket.LoggingConfigurationPropertyCreates a V2 Amazon S3 Metadata configuration of a general purpose bucket.A builder forCfnBucket.MetadataConfigurationPropertyAn implementation forCfnBucket.MetadataConfigurationPropertyThe destination information for the S3 Metadata configuration.A builder forCfnBucket.MetadataDestinationPropertyAn implementation forCfnBucket.MetadataDestinationPropertyA builder forCfnBucket.MetadataTableConfigurationPropertyAn implementation forCfnBucket.MetadataTableConfigurationPropertyThe encryption settings for an S3 Metadata journal table or inventory table configuration.A builder forCfnBucket.MetadataTableEncryptionConfigurationPropertyAn implementation forCfnBucket.MetadataTableEncryptionConfigurationPropertySpecifies a metrics configuration for the CloudWatch request metrics (specified by the metrics configuration ID) from an Amazon S3 bucket.A builder forCfnBucket.MetricsConfigurationPropertyAn implementation forCfnBucket.MetricsConfigurationPropertyA container specifying replication metrics-related settings enabling replication metrics and events.A builder forCfnBucket.MetricsPropertyAn implementation forCfnBucket.MetricsPropertySpecifies when noncurrent object versions expire.A builder forCfnBucket.NoncurrentVersionExpirationPropertyAn implementation forCfnBucket.NoncurrentVersionExpirationPropertyContainer for the transition rule that describes when noncurrent objects transition to theSTANDARD_IA,ONEZONE_IA,INTELLIGENT_TIERING,GLACIER_IR,GLACIER, orDEEP_ARCHIVEstorage class.A builder forCfnBucket.NoncurrentVersionTransitionPropertyAn implementation forCfnBucket.NoncurrentVersionTransitionPropertyDescribes the notification configuration for an Amazon S3 bucket.A builder forCfnBucket.NotificationConfigurationPropertyAn implementation forCfnBucket.NotificationConfigurationPropertySpecifies object key name filtering rules.A builder forCfnBucket.NotificationFilterPropertyAn implementation forCfnBucket.NotificationFilterPropertyPlaces an Object Lock configuration on the specified bucket.A builder forCfnBucket.ObjectLockConfigurationPropertyAn implementation forCfnBucket.ObjectLockConfigurationPropertySpecifies the Object Lock rule for the specified object.A builder forCfnBucket.ObjectLockRulePropertyAn implementation forCfnBucket.ObjectLockRulePropertySpecifies the container element for Object Ownership rules.A builder forCfnBucket.OwnershipControlsPropertyAn implementation forCfnBucket.OwnershipControlsPropertySpecifies an Object Ownership rule.A builder forCfnBucket.OwnershipControlsRulePropertyAn implementation forCfnBucket.OwnershipControlsRulePropertyAmazon S3 keys for log objects are partitioned in the following format:.A builder forCfnBucket.PartitionedPrefixPropertyAn implementation forCfnBucket.PartitionedPrefixPropertyThe PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket.A builder forCfnBucket.PublicAccessBlockConfigurationPropertyAn implementation forCfnBucket.PublicAccessBlockConfigurationPropertySpecifies the configuration for publishing messages to an Amazon Simple Queue Service (Amazon SQS) queue when Amazon S3 detects specified events.A builder forCfnBucket.QueueConfigurationPropertyAn implementation forCfnBucket.QueueConfigurationPropertyThe journal table record expiration settings for a journal table in an S3 Metadata configuration.A builder forCfnBucket.RecordExpirationPropertyAn implementation forCfnBucket.RecordExpirationPropertySpecifies the redirect behavior of all requests to a website endpoint of an Amazon S3 bucket.A builder forCfnBucket.RedirectAllRequestsToPropertyAn implementation forCfnBucket.RedirectAllRequestsToPropertySpecifies how requests are redirected.A builder forCfnBucket.RedirectRulePropertyAn implementation forCfnBucket.RedirectRulePropertyA filter that you can specify for selection for modifications on replicas.A builder forCfnBucket.ReplicaModificationsPropertyAn implementation forCfnBucket.ReplicaModificationsPropertyA container for replication rules.A builder forCfnBucket.ReplicationConfigurationPropertyAn implementation forCfnBucket.ReplicationConfigurationPropertyA container for information about the replication destination and its configurations including enabling the S3 Replication Time Control (S3 RTC).A builder forCfnBucket.ReplicationDestinationPropertyAn implementation forCfnBucket.ReplicationDestinationPropertyA container for specifying rule filters.A builder forCfnBucket.ReplicationRuleAndOperatorPropertyAn implementation forCfnBucket.ReplicationRuleAndOperatorPropertyA filter that identifies the subset of objects to which the replication rule applies.A builder forCfnBucket.ReplicationRuleFilterPropertyAn implementation forCfnBucket.ReplicationRuleFilterPropertySpecifies which Amazon S3 objects to replicate and where to store the replicas.A builder forCfnBucket.ReplicationRulePropertyAn implementation forCfnBucket.ReplicationRulePropertyA container specifying S3 Replication Time Control (S3 RTC) related information, including whether S3 RTC is enabled and the time when all objects and operations on objects must be replicated.A builder forCfnBucket.ReplicationTimePropertyAn implementation forCfnBucket.ReplicationTimePropertyA container specifying the time value for S3 Replication Time Control (S3 RTC) and replication metricsEventThreshold.A builder forCfnBucket.ReplicationTimeValuePropertyAn implementation forCfnBucket.ReplicationTimeValuePropertyA container for describing a condition that must be met for the specified redirect to apply.A builder forCfnBucket.RoutingRuleConditionPropertyAn implementation forCfnBucket.RoutingRuleConditionPropertySpecifies the redirect behavior and when a redirect is applied.A builder forCfnBucket.RoutingRulePropertyAn implementation forCfnBucket.RoutingRulePropertySpecifies lifecycle rules for an Amazon S3 bucket.A builder forCfnBucket.RulePropertyAn implementation forCfnBucket.RulePropertyA container for object key name prefix and suffix filtering rules.A builder forCfnBucket.S3KeyFilterPropertyAn implementation forCfnBucket.S3KeyFilterPropertyThe destination information for a V1 S3 Metadata configuration.A builder forCfnBucket.S3TablesDestinationPropertyAn implementation forCfnBucket.S3TablesDestinationPropertyDescribes the default server-side encryption to apply to new objects in the bucket.A builder forCfnBucket.ServerSideEncryptionByDefaultPropertyAn implementation forCfnBucket.ServerSideEncryptionByDefaultPropertySpecifies the default server-side encryption configuration.A builder forCfnBucket.ServerSideEncryptionRulePropertyAn implementation forCfnBucket.ServerSideEncryptionRulePropertyA container that describes additional filters for identifying the source objects that you want to replicate.A builder forCfnBucket.SourceSelectionCriteriaPropertyAn implementation forCfnBucket.SourceSelectionCriteriaPropertyA container for filter information for the selection of S3 objects encrypted with AWS KMS.A builder forCfnBucket.SseKmsEncryptedObjectsPropertyAn implementation forCfnBucket.SseKmsEncryptedObjectsPropertySpecifies data related to access patterns to be collected and made available to analyze the tradeoffs between different storage classes for an Amazon S3 bucket.A builder forCfnBucket.StorageClassAnalysisPropertyAn implementation forCfnBucket.StorageClassAnalysisPropertySpecifies tags to use to identify a subset of objects for an Amazon S3 bucket.A builder forCfnBucket.TagFilterPropertyAn implementation forCfnBucket.TagFilterPropertyAmazon S3 key format for log objects.A builder forCfnBucket.TargetObjectKeyFormatPropertyAn implementation forCfnBucket.TargetObjectKeyFormatPropertyThe S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without additional operational overhead.A builder forCfnBucket.TieringPropertyAn implementation forCfnBucket.TieringPropertyA container for specifying the configuration for publication of messages to an Amazon Simple Notification Service (Amazon SNS) topic when Amazon S3 detects specified events.A builder forCfnBucket.TopicConfigurationPropertyAn implementation forCfnBucket.TopicConfigurationPropertySpecifies when an object transitions to a specified storage class.A builder forCfnBucket.TransitionPropertyAn implementation forCfnBucket.TransitionPropertyDescribes the versioning state of an Amazon S3 bucket.A builder forCfnBucket.VersioningConfigurationPropertyAn implementation forCfnBucket.VersioningConfigurationPropertySpecifies website configuration parameters for an Amazon S3 bucket.A builder forCfnBucket.WebsiteConfigurationPropertyAn implementation forCfnBucket.WebsiteConfigurationPropertyApplies an Amazon S3 bucket policy to an Amazon S3 bucket.A fluent builder forCfnBucketPolicy.Properties for defining aCfnBucketPolicy.A builder forCfnBucketPolicyPropsAn implementation forCfnBucketPolicyPropsProperties for defining aCfnBucket.A builder forCfnBucketPropsAn implementation forCfnBucketPropsTheAWS::S3::MultiRegionAccessPointresource creates an Amazon S3 Multi-Region Access Point.A fluent builder forCfnMultiRegionAccessPoint.The PublicAccessBlock configuration that you want to apply to this Amazon S3 Multi-Region Access Point.An implementation forCfnMultiRegionAccessPoint.PublicAccessBlockConfigurationPropertyA bucket associated with a specific Region when creating Multi-Region Access Points.A builder forCfnMultiRegionAccessPoint.RegionPropertyAn implementation forCfnMultiRegionAccessPoint.RegionPropertyApplies an Amazon S3 access policy to an Amazon S3 Multi-Region Access Point.A fluent builder forCfnMultiRegionAccessPointPolicy.The container element for a bucket's policy status.A builder forCfnMultiRegionAccessPointPolicy.PolicyStatusPropertyAn implementation forCfnMultiRegionAccessPointPolicy.PolicyStatusPropertyProperties for defining aCfnMultiRegionAccessPointPolicy.A builder forCfnMultiRegionAccessPointPolicyPropsAn implementation forCfnMultiRegionAccessPointPolicyPropsProperties for defining aCfnMultiRegionAccessPoint.A builder forCfnMultiRegionAccessPointPropsAn implementation forCfnMultiRegionAccessPointPropsThe AWS::S3::StorageLens resource creates an Amazon S3 Storage Lens configuration.This resource contains the details of the account-level metrics for Amazon S3 Storage Lens.A builder forCfnStorageLens.AccountLevelPropertyAn implementation forCfnStorageLens.AccountLevelPropertyThis resource enables Amazon S3 Storage Lens activity metrics.A builder forCfnStorageLens.ActivityMetricsPropertyAn implementation forCfnStorageLens.ActivityMetricsPropertyThis resource enables Amazon S3 Storage Lens advanced cost optimization metrics.A builder forCfnStorageLens.AdvancedCostOptimizationMetricsPropertyAn implementation forCfnStorageLens.AdvancedCostOptimizationMetricsPropertyThis resource enables Amazon S3 Storage Lens advanced data protection metrics.A builder forCfnStorageLens.AdvancedDataProtectionMetricsPropertyAn implementation forCfnStorageLens.AdvancedDataProtectionMetricsPropertyThis resource contains the details of the AWS Organization for Amazon S3 Storage Lens.A builder forCfnStorageLens.AwsOrgPropertyAn implementation forCfnStorageLens.AwsOrgPropertyA property for the bucket-level storage metrics for Amazon S3 Storage Lens.A builder forCfnStorageLens.BucketLevelPropertyAn implementation forCfnStorageLens.BucketLevelPropertyThis resource contains the details of the buckets and Regions for the Amazon S3 Storage Lens configuration.A builder forCfnStorageLens.BucketsAndRegionsPropertyAn implementation forCfnStorageLens.BucketsAndRegionsPropertyA fluent builder forCfnStorageLens.This resource enables the Amazon CloudWatch publishing option for Amazon S3 Storage Lens metrics.A builder forCfnStorageLens.CloudWatchMetricsPropertyAn implementation forCfnStorageLens.CloudWatchMetricsPropertyThis resource contains the details of the Amazon S3 Storage Lens metrics export.A builder forCfnStorageLens.DataExportPropertyAn implementation forCfnStorageLens.DataExportPropertyThis resource enables Amazon S3 Storage Lens detailed status code metrics.A builder forCfnStorageLens.DetailedStatusCodesMetricsPropertyAn implementation forCfnStorageLens.DetailedStatusCodesMetricsPropertyThis resource contains the type of server-side encryption used to encrypt an Amazon S3 Storage Lens metrics export.A builder forCfnStorageLens.EncryptionPropertyAn implementation forCfnStorageLens.EncryptionPropertyThis resource contains the details of the prefix-level of the Amazon S3 Storage Lens.A builder forCfnStorageLens.PrefixLevelPropertyAn implementation forCfnStorageLens.PrefixLevelPropertyThis resource contains the details of the prefix-level storage metrics for Amazon S3 Storage Lens.A builder forCfnStorageLens.PrefixLevelStorageMetricsPropertyAn implementation forCfnStorageLens.PrefixLevelStorageMetricsPropertyThis resource contains the details of the bucket where the Amazon S3 Storage Lens metrics export will be placed.A builder forCfnStorageLens.S3BucketDestinationPropertyAn implementation forCfnStorageLens.S3BucketDestinationPropertyThis resource contains the details of the Amazon S3 Storage Lens selection criteria.A builder forCfnStorageLens.SelectionCriteriaPropertyAn implementation forCfnStorageLens.SelectionCriteriaPropertySpecifies the use of server-side encryption using an AWS Key Management Service key (SSE-KMS) to encrypt the delivered S3 Storage Lens metrics export file.A builder forCfnStorageLens.SSEKMSPropertyAn implementation forCfnStorageLens.SSEKMSPropertyThis is the property of the Amazon S3 Storage Lens configuration.A builder forCfnStorageLens.StorageLensConfigurationPropertyAn implementation forCfnStorageLens.StorageLensConfigurationPropertyThis resource determines the scope of Storage Lens group data that is displayed in the Storage Lens dashboard.A builder forCfnStorageLens.StorageLensGroupLevelPropertyAn implementation forCfnStorageLens.StorageLensGroupLevelPropertyThis resource indicates which Storage Lens group ARNs to include or exclude in the Storage Lens group aggregation.A builder forCfnStorageLens.StorageLensGroupSelectionCriteriaPropertyAn implementation forCfnStorageLens.StorageLensGroupSelectionCriteriaPropertyTheAWS::S3::StorageLensGroupresource creates an S3 Storage Lens group.This resource is a logical operator that allows multiple filter conditions to be joined for more complex comparisons of Storage Lens group data.A builder forCfnStorageLensGroup.AndPropertyAn implementation forCfnStorageLensGroup.AndPropertyA fluent builder forCfnStorageLensGroup.This resource sets the criteria for the Storage Lens group data that is displayed.A builder forCfnStorageLensGroup.FilterPropertyAn implementation forCfnStorageLensGroup.FilterPropertyThis resource containsDaysGreaterThanandDaysLessThanto define the object age range (minimum and maximum number of days).A builder forCfnStorageLensGroup.MatchObjectAgePropertyAn implementation forCfnStorageLensGroup.MatchObjectAgePropertyThis resource filters objects that match the specified object size range.A builder forCfnStorageLensGroup.MatchObjectSizePropertyAn implementation forCfnStorageLensGroup.MatchObjectSizePropertyThis resource contains theOrlogical operator, which allows multiple filter conditions to be joined for more complex comparisons of Storage Lens group data.A builder forCfnStorageLensGroup.OrPropertyAn implementation forCfnStorageLensGroup.OrPropertyProperties for defining aCfnStorageLensGroup.A builder forCfnStorageLensGroupPropsAn implementation forCfnStorageLensGroupPropsProperties for defining aCfnStorageLens.A builder forCfnStorageLensPropsAn implementation forCfnStorageLensPropsSpecifies a cross-origin access rule for an Amazon S3 bucket.A builder forCorsRuleAn implementation forCorsRuleNotification event types.A filter that identifies the subset of objects to which the replication rule applies.A builder forFilterAn implementation forFilterThe properties for the destination bucket for granting replication permission.A builder forGrantReplicationPermissionDestinationPropsAn implementation forGrantReplicationPermissionDestinationPropsThe properties for the destination bucket for granting replication permission.A builder forGrantReplicationPermissionPropsAn implementation forGrantReplicationPermissionPropsAll http request methods.(experimental) Indicates that this resource can be referenced as a AccessGrant.Internal default implementation forIAccessGrantRef.A proxy class which represents a concrete javascript instance of this type.(experimental) Indicates that this resource can be referenced as a AccessGrantsInstance.Internal default implementation forIAccessGrantsInstanceRef.A proxy class which represents a concrete javascript instance of this type.(experimental) Indicates that this resource can be referenced as a AccessGrantsLocation.Internal default implementation forIAccessGrantsLocationRef.A proxy class which represents a concrete javascript instance of this type.(experimental) Indicates that this resource can be referenced as a AccessPoint.Internal default implementation forIAccessPointRef.A proxy class which represents a concrete javascript instance of this type.Internal default implementation forIBucket.A proxy class which represents a concrete javascript instance of this type.Implemented by constructs that can be used as bucket notification destinations.Internal default implementation forIBucketNotificationDestination.A proxy class which represents a concrete javascript instance of this type.(experimental) Indicates that this resource can be referenced as a BucketPolicy.Internal default implementation forIBucketPolicyRef.A proxy class which represents a concrete javascript instance of this type.(experimental) Indicates that this resource can be referenced as a Bucket.Internal default implementation forIBucketRef.A proxy class which represents a concrete javascript instance of this type.(experimental) Indicates that this resource can be referenced as a MultiRegionAccessPointPolicy.Internal default implementation forIMultiRegionAccessPointPolicyRef.A proxy class which represents a concrete javascript instance of this type.(experimental) Indicates that this resource can be referenced as a MultiRegionAccessPoint.Internal default implementation forIMultiRegionAccessPointRef.A proxy class which represents a concrete javascript instance of this type.The intelligent tiering configuration.A builder forIntelligentTieringConfigurationAn implementation forIntelligentTieringConfigurationSpecifies the inventory configuration of an S3 Bucket.A builder forInventoryAn implementation forInventoryThe destination of the inventory.A builder forInventoryDestinationAn implementation forInventoryDestinationAll supported inventory list formats.All supported inventory frequencies.Inventory version support.(experimental) Indicates that this resource can be referenced as a StorageLensGroup.Internal default implementation forIStorageLensGroupRef.A proxy class which represents a concrete javascript instance of this type.(experimental) Indicates that this resource can be referenced as a StorageLens.Internal default implementation forIStorageLensRef.A proxy class which represents a concrete javascript instance of this type.Declaration of a Life cycle rule.A builder forLifecycleRuleAn implementation forLifecycleRuleAn interface that represents the location of a specific object in an S3 Bucket.A builder forLocationAn implementation forLocationA reference to a MultiRegionAccessPointPolicy resource.A builder forMultiRegionAccessPointPolicyReferenceAn implementation forMultiRegionAccessPointPolicyReferenceA reference to a MultiRegionAccessPoint resource.A builder forMultiRegionAccessPointReferenceAn implementation forMultiRegionAccessPointReferenceDescribes when noncurrent versions transition to a specified storage class.A builder forNoncurrentVersionTransitionAn implementation forNoncurrentVersionTransitionExample:A builder forNotificationKeyFilterAn implementation forNotificationKeyFilterModes in which S3 Object Lock retention can be configured.The default retention settings for an S3 Object Lock configuration.The ObjectOwnership of the bucket.Options for the onCloudTrailPutObject method.A builder forOnCloudTrailBucketEventOptionsAn implementation forOnCloudTrailBucketEventOptionsThe date source for the partitioned prefix.All http request methods.Specifies a redirect behavior of all requests to a website endpoint of a bucket.A builder forRedirectTargetAn implementation forRedirectTargetExample:Specifies which Amazon S3 objects to replicate and where to store the replicas.A builder forReplicationRuleAn implementation forReplicationRuleThe replication time value used for S3 Replication Time Control (S3 RTC).Rule that define when a redirect is applied and the redirect behavior.A builder forRoutingRuleAn implementation forRoutingRuleExample:A builder forRoutingRuleConditionAn implementation forRoutingRuleConditionStorage class to move an object to.A reference to a StorageLensGroup resource.A builder forStorageLensGroupReferenceAn implementation forStorageLensGroupReferenceA reference to a StorageLens resource.A builder forStorageLensReferenceAn implementation forStorageLensReferenceTag.A builder forTagAn implementation forTagThe key format for the log object.Options for creating a Transfer Acceleration URL.A builder forTransferAccelerationUrlOptionsAn implementation forTransferAccelerationUrlOptionsDescribes when an object transitions to a specified storage class.A builder forTransitionAn implementation forTransitionThe transition default minimum object size for lifecycle.Options for creating Virtual-Hosted style URL.A builder forVirtualHostedStyleUrlOptionsAn implementation forVirtualHostedStyleUrlOptions