Bucket
Reference doc for the `sst.aws.Bucket` component.
The Bucket
component lets you add an AWS S3 Bucket to
your app.
Minimal example
Public read access
Enable public
read access for all the files in the bucket. Useful for hosting public files.
Add a subscriber
Link the bucket to a resource
You can link the bucket to other resources, like a function or your Next.js app.
Once linked, you can generate a pre-signed URL to upload files in your app.
Constructor
Parameters
-
name
string
-
args?
BucketArgs
-
opts?
ComponentResourceOptions
BucketArgs
access?
Type Input
<
“
public
”
|
“
cloudfront
”
>
Enable public read access for all the files in the bucket. By default, no access is granted.
This adds a statement to the bucket policy that either allows public
access or just
cloudfront
access.
cors?
Type Input
<
false
|
Object
>
Default true
The CORS configuration for the bucket. Defaults to true
, which is the same as:
cors.allowHeaders?
Type Input
<
Input
<
string
>
[]
>
Default [”*”]
The HTTP headers that origins can include in requests to the bucket.
cors.allowMethods?
Type Input
<
Input
<
“
GET
”
|
“
POST
”
|
“
PUT
”
|
“
DELETE
”
|
“
HEAD
”
>
[]
>
Default [“DELETE” | “GET” | “HEAD” | “POST” | “PUT”]
The HTTP methods that are allowed when calling the bucket.
cors.allowOrigins?
Type Input
<
Input
<
string
>
[]
>
Default [”*”]
The origins that can access the bucket.
Or the wildcard for all origins.
cors.exposeHeaders?
Type Input
<
Input
<
string
>
[]
>
Default []
The HTTP headers you want to expose to an origin that calls the bucket.
cors.maxAge?
Type Input
<
“
${number} minute
”
|
“
${number} minutes
”
|
“
${number} hour
”
|
“
${number} hours
”
|
“
${number} second
”
|
“
${number} seconds
”
|
“
${number} day
”
|
“
${number} days
”
>
Default “0 seconds”
The maximum amount of time the browser can cache results of a preflight request. By
default the browser doesn’t cache the results. The maximum value is 86400 seconds
or 1 day
.
transform?
Type Object
Transform how this component creates its underlying resources.
transform.bucket?
Type BucketV2Args
|
(
args
:
BucketV2Args
,
opts
:
ComponentResourceOptions
,
name
:
string
)
=>
void
Transform the S3 Bucket resource.
transform.cors?
Type BucketCorsConfigurationV2Args
|
(
args
:
BucketCorsConfigurationV2Args
,
opts
:
ComponentResourceOptions
,
name
:
string
)
=>
void
Transform the S3 Bucket CORS configuration resource.
transform.policy?
Type BucketPolicyArgs
|
(
args
:
BucketPolicyArgs
,
opts
:
ComponentResourceOptions
,
name
:
string
)
=>
void
Transform the S3 Bucket Policy resource.
transform.publicAccessBlock?
Type false
|
BucketPublicAccessBlockArgs
|
(
args
:
BucketPublicAccessBlockArgs
,
opts
:
ComponentResourceOptions
,
name
:
string
)
=>
void
Transform the public access block resource that’s attached to the Bucket.
Returns false
if the public access block resource should not be created.
transform.versioning?
Type BucketVersioningV2Args
|
(
args
:
BucketVersioningV2Args
,
opts
:
ComponentResourceOptions
,
name
:
string
)
=>
void
Transform the S3 Bucket versioning resource.
versioning?
Type Input
<
boolean
>
Default false
Enable versioning for the bucket.
Bucket versioning enables you to store multiple versions of an object, protecting against accidental deletion or overwriting.
Properties
arn
Type Output
<
string
>
The ARN of the S3 Bucket.
domain
Type Output
<
string
>
The domain name of the bucket. Has the format ${bucketName}.s3.amazonaws.com
.
name
Type Output
<
string
>
The generated name of the S3 Bucket.
nodes
nodes.bucket
Type Output
<
BucketV2
>
The Amazon S3 bucket.
SDK
Use the SDK in your runtime to interact with your infrastructure.
Links
This is accessible through the Resource
object in the SDK.
-
name
string
The generated name of the S3 Bucket.
Methods
subscribe
Parameters
The function that’ll be notified.subscriber
Input
<
string
|
FunctionArgs
|
“arn:aws:lambda:${string}”
>
Configure the subscription.args?
BucketSubscriberArgs
Returns Output
<
BucketLambdaSubscriber
>
Subscribe to events from this bucket.
Subscribe to specific S3 events. The link
ensures the subscriber can access the bucket.
Subscribe to specific S3 events from a specific folder.
Customize the subscriber function.
Or pass in the ARN of an existing Lambda function.
subscribeQueue
Parameters
The ARN of the queue that’ll be notified.queueArn
Input
<
string
>
Configure the subscription.args?
BucketSubscriberArgs
Returns Output
<
BucketQueueSubscriber
>
Subscribe to events from this bucket with an SQS Queue.
For example, let’s say you have a queue.
You can subscribe to this bucket with it.
Subscribe to specific S3 events.
Subscribe to specific S3 events from a specific folder.
subscribeTopic
Parameters
The ARN of the topic that’ll be notified.topicArn
Input
<
string
>
Configure the subscription.args?
BucketSubscriberArgs
Returns Output
<
BucketTopicSubscriber
>
Subscribe to events from this bucket with an SNS Topic.
For example, let’s say you have a topic.
You can subscribe to this bucket with it.
Subscribe to specific S3 events.
Subscribe to specific S3 events from a specific folder.
static get
Parameters
The name of the component.name
string
The name of the existing S3 Bucket.bucketName
string
-
opts?
ComponentResourceOptions
Returns Bucket
Reference an existing bucket with the given bucket name. This is useful when you create a bucket in one stage and want to share it in another stage. It avoids having to create a new bucket in the other stage.
Imagine you create a bucket in the dev
stage. And in your personal stage frank
,
instead of creating a new bucket, you want to share the bucket from dev
.
Here app-dev-mybucket-12345678
is the auto-generated bucket name for the bucket created
in the dev
stage. You can find this by outputting the bucket name in the dev
stage.
static subscribe
Parameters
The ARN of the S3 bucket to subscribe to.bucketArn
Input
<
string
>
The function that’ll be notified.subscriber
Input
<
string
|
FunctionArgs
|
“arn:aws:lambda:${string}”
>
Configure the subscription.args?
BucketSubscriberArgs
Returns Output
<
BucketLambdaSubscriber
>
Subscribe to events of an S3 bucket that was not created in your app.
For example, let’s say you have an existing S3 bucket with the following ARN.
You can subscribe to it by passing in the ARN.
Subscribe to specific S3 events.
Subscribe to specific S3 events from a specific folder.
Customize the subscriber function.
static subscribeQueue
Parameters
The ARN of the S3 bucket to subscribe to.bucketArn
Input
<
string
>
The ARN of the queue that’ll be notified.queueArn
Input
<
string
>
Configure the subscription.args?
BucketSubscriberArgs
Returns Output
<
BucketQueueSubscriber
>
Subscribe to events of an S3 bucket that was not created in your app with an SQS Queue.
For example, let’s say you have an existing S3 bucket and SQS queue with the following ARNs.
You can subscribe to the bucket with the queue.
Subscribe to specific S3 events.
Subscribe to specific S3 events from a specific folder.
static subscribeTopic
Parameters
The ARN of the S3 bucket to subscribe to.bucketArn
Input
<
string
>
The ARN of the topic that’ll be notified.topicArn
Input
<
string
>
Configure the subscription.args?
BucketSubscriberArgs
Returns Output
<
BucketTopicSubscriber
>
Subscribe to events of an S3 bucket that was not created in your app with an SNS Topic.
For example, let’s say you have an existing S3 bucket and SNS topic with the following ARNs.
You can subscribe to the bucket with the topic.
Subscribe to specific S3 events.
Subscribe to specific S3 events from a specific folder.
BucketSubscriberArgs
events?
Type Input
<
Input
<
“
s3:ObjectCreated:*
”
|
“
s3:ObjectCreated:Put
”
|
“
s3:ObjectCreated:Post
”
|
“
s3:ObjectCreated:Copy
”
|
“
s3:ObjectCreated:CompleteMultipartUpload
”
|
“
s3:ObjectRemoved:*
”
|
“
s3:ObjectRemoved:Delete
”
|
“
s3:ObjectRemoved:DeleteMarkerCreated
”
|
“
s3:ObjectRestore:*
”
|
“
s3:ObjectRestore:Post
”
|
“
s3:ObjectRestore:Completed
”
|
“
s3:ObjectRestore:Delete
”
|
“
s3:ReducedRedundancyLostObject
”
|
“
s3:Replication:*
”
|
“
s3:Replication:OperationFailedReplication
”
|
“
s3:Replication:OperationMissedThreshold
”
|
“
s3:Replication:OperationReplicatedAfterThreshold
”
|
“
s3:Replication:OperationNotTracked
”
|
“
s3:LifecycleExpiration:*
”
|
“
s3:LifecycleExpiration:Delete
”
|
“
s3:LifecycleExpiration:DeleteMarkerCreated
”
|
“
s3:LifecycleTransition
”
|
“
s3:IntelligentTiering
”
|
“
s3:ObjectTagging:*
”
|
“
s3:ObjectTagging:Put
”
|
“
s3:ObjectTagging:Delete
”
|
“
s3:ObjectAcl:Put
”
>
[]
>
Default All S3 events
A list of S3 event types that’ll trigger the notification.
filterPrefix?
Type Input
<
string
>
An S3 object key prefix that will trigger the notification.
To filter for all the objects in the images/
folder.
filterSuffix?
Type Input
<
string
>
An S3 object key suffix that will trigger the notification.
To filter for all the objects with the .jpg
suffix.
transform?
Type Object
Transform how this notification creates its underlying resources.
transform.notification?
Type BucketNotificationArgs
|
(
args
:
BucketNotificationArgs
,
opts
:
ComponentResourceOptions
,
name
:
string
)
=>
void
Transform the S3 Bucket Notification resource.