1. Packages
  2. AWS
  3. API Docs
  4. s3
  5. BucketServerSideEncryptionConfigurationV2
AWS v6.83.0 published on Monday, Jun 16, 2025 by Pulumi

aws.s3.BucketServerSideEncryptionConfigurationV2

Explore with Pulumi AI

Provides a S3 bucket server-side encryption configuration resource.

NOTE: Destroying an aws.s3.BucketServerSideEncryptionConfigurationV2 resource resets the bucket to Amazon S3 bucket default encryption.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const mykey = new aws.kms.Key("mykey", {
    description: "This key is used to encrypt bucket objects",
    deletionWindowInDays: 10,
});
const mybucket = new aws.s3.BucketV2("mybucket", {bucket: "mybucket"});
const example = new aws.s3.BucketServerSideEncryptionConfigurationV2("example", {
    bucket: mybucket.id,
    rules: [{
        applyServerSideEncryptionByDefault: {
            kmsMasterKeyId: mykey.arn,
            sseAlgorithm: "aws:kms",
        },
    }],
});
Copy
import pulumi
import pulumi_aws as aws

mykey = aws.kms.Key("mykey",
    description="This key is used to encrypt bucket objects",
    deletion_window_in_days=10)
mybucket = aws.s3.BucketV2("mybucket", bucket="mybucket")
example = aws.s3.BucketServerSideEncryptionConfigurationV2("example",
    bucket=mybucket.id,
    rules=[{
        "apply_server_side_encryption_by_default": {
            "kms_master_key_id": mykey.arn,
            "sse_algorithm": "aws:kms",
        },
    }])
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/kms"
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/s3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		mykey, err := kms.NewKey(ctx, "mykey", &kms.KeyArgs{
			Description:          pulumi.String("This key is used to encrypt bucket objects"),
			DeletionWindowInDays: pulumi.Int(10),
		})
		if err != nil {
			return err
		}
		mybucket, err := s3.NewBucketV2(ctx, "mybucket", &s3.BucketV2Args{
			Bucket: pulumi.String("mybucket"),
		})
		if err != nil {
			return err
		}
		_, err = s3.NewBucketServerSideEncryptionConfigurationV2(ctx, "example", &s3.BucketServerSideEncryptionConfigurationV2Args{
			Bucket: mybucket.ID(),
			Rules: s3.BucketServerSideEncryptionConfigurationV2RuleArray{
				&s3.BucketServerSideEncryptionConfigurationV2RuleArgs{
					ApplyServerSideEncryptionByDefault: &s3.BucketServerSideEncryptionConfigurationV2RuleApplyServerSideEncryptionByDefaultArgs{
						KmsMasterKeyId: mykey.Arn,
						SseAlgorithm:   pulumi.String("aws:kms"),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var mykey = new Aws.Kms.Key("mykey", new()
    {
        Description = "This key is used to encrypt bucket objects",
        DeletionWindowInDays = 10,
    });

    var mybucket = new Aws.S3.BucketV2("mybucket", new()
    {
        Bucket = "mybucket",
    });

    var example = new Aws.S3.BucketServerSideEncryptionConfigurationV2("example", new()
    {
        Bucket = mybucket.Id,
        Rules = new[]
        {
            new Aws.S3.Inputs.BucketServerSideEncryptionConfigurationV2RuleArgs
            {
                ApplyServerSideEncryptionByDefault = new Aws.S3.Inputs.BucketServerSideEncryptionConfigurationV2RuleApplyServerSideEncryptionByDefaultArgs
                {
                    KmsMasterKeyId = mykey.Arn,
                    SseAlgorithm = "aws:kms",
                },
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.kms.Key;
import com.pulumi.aws.kms.KeyArgs;
import com.pulumi.aws.s3.BucketV2;
import com.pulumi.aws.s3.BucketV2Args;
import com.pulumi.aws.s3.BucketServerSideEncryptionConfigurationV2;
import com.pulumi.aws.s3.BucketServerSideEncryptionConfigurationV2Args;
import com.pulumi.aws.s3.inputs.BucketServerSideEncryptionConfigurationV2RuleArgs;
import com.pulumi.aws.s3.inputs.BucketServerSideEncryptionConfigurationV2RuleApplyServerSideEncryptionByDefaultArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var mykey = new Key("mykey", KeyArgs.builder()
            .description("This key is used to encrypt bucket objects")
            .deletionWindowInDays(10)
            .build());

        var mybucket = new BucketV2("mybucket", BucketV2Args.builder()
            .bucket("mybucket")
            .build());

        var example = new BucketServerSideEncryptionConfigurationV2("example", BucketServerSideEncryptionConfigurationV2Args.builder()
            .bucket(mybucket.id())
            .rules(BucketServerSideEncryptionConfigurationV2RuleArgs.builder()
                .applyServerSideEncryptionByDefault(BucketServerSideEncryptionConfigurationV2RuleApplyServerSideEncryptionByDefaultArgs.builder()
                    .kmsMasterKeyId(mykey.arn())
                    .sseAlgorithm("aws:kms")
                    .build())
                .build())
            .build());

    }
}
Copy
resources:
  mykey:
    type: aws:kms:Key
    properties:
      description: This key is used to encrypt bucket objects
      deletionWindowInDays: 10
  mybucket:
    type: aws:s3:BucketV2
    properties:
      bucket: mybucket
  example:
    type: aws:s3:BucketServerSideEncryptionConfigurationV2
    properties:
      bucket: ${mybucket.id}
      rules:
        - applyServerSideEncryptionByDefault:
            kmsMasterKeyId: ${mykey.arn}
            sseAlgorithm: aws:kms
Copy

Create BucketServerSideEncryptionConfigurationV2 Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new BucketServerSideEncryptionConfigurationV2(name: string, args: BucketServerSideEncryptionConfigurationV2Args, opts?: CustomResourceOptions);
@overload
def BucketServerSideEncryptionConfigurationV2(resource_name: str,
                                              args: BucketServerSideEncryptionConfigurationV2Args,
                                              opts: Optional[ResourceOptions] = None)

@overload
def BucketServerSideEncryptionConfigurationV2(resource_name: str,
                                              opts: Optional[ResourceOptions] = None,
                                              bucket: Optional[str] = None,
                                              rules: Optional[Sequence[BucketServerSideEncryptionConfigurationV2RuleArgs]] = None,
                                              expected_bucket_owner: Optional[str] = None)
func NewBucketServerSideEncryptionConfigurationV2(ctx *Context, name string, args BucketServerSideEncryptionConfigurationV2Args, opts ...ResourceOption) (*BucketServerSideEncryptionConfigurationV2, error)
public BucketServerSideEncryptionConfigurationV2(string name, BucketServerSideEncryptionConfigurationV2Args args, CustomResourceOptions? opts = null)
public BucketServerSideEncryptionConfigurationV2(String name, BucketServerSideEncryptionConfigurationV2Args args)
public BucketServerSideEncryptionConfigurationV2(String name, BucketServerSideEncryptionConfigurationV2Args args, CustomResourceOptions options)
type: aws:s3:BucketServerSideEncryptionConfigurationV2
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. BucketServerSideEncryptionConfigurationV2Args
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. BucketServerSideEncryptionConfigurationV2Args
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. BucketServerSideEncryptionConfigurationV2Args
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. BucketServerSideEncryptionConfigurationV2Args
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. BucketServerSideEncryptionConfigurationV2Args
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var bucketServerSideEncryptionConfigurationV2Resource = new Aws.S3.BucketServerSideEncryptionConfigurationV2("bucketServerSideEncryptionConfigurationV2Resource", new()
{
    Bucket = "string",
    Rules = new[]
    {
        new Aws.S3.Inputs.BucketServerSideEncryptionConfigurationV2RuleArgs
        {
            ApplyServerSideEncryptionByDefault = new Aws.S3.Inputs.BucketServerSideEncryptionConfigurationV2RuleApplyServerSideEncryptionByDefaultArgs
            {
                SseAlgorithm = "string",
                KmsMasterKeyId = "string",
            },
            BucketKeyEnabled = false,
        },
    },
    ExpectedBucketOwner = "string",
});
Copy
example, err := s3.NewBucketServerSideEncryptionConfigurationV2(ctx, "bucketServerSideEncryptionConfigurationV2Resource", &s3.BucketServerSideEncryptionConfigurationV2Args{
	Bucket: pulumi.String("string"),
	Rules: s3.BucketServerSideEncryptionConfigurationV2RuleArray{
		&s3.BucketServerSideEncryptionConfigurationV2RuleArgs{
			ApplyServerSideEncryptionByDefault: &s3.BucketServerSideEncryptionConfigurationV2RuleApplyServerSideEncryptionByDefaultArgs{
				SseAlgorithm:   pulumi.String("string"),
				KmsMasterKeyId: pulumi.String("string"),
			},
			BucketKeyEnabled: pulumi.Bool(false),
		},
	},
	ExpectedBucketOwner: pulumi.String("string"),
})
Copy
var bucketServerSideEncryptionConfigurationV2Resource = new BucketServerSideEncryptionConfigurationV2("bucketServerSideEncryptionConfigurationV2Resource", BucketServerSideEncryptionConfigurationV2Args.builder()
    .bucket("string")
    .rules(BucketServerSideEncryptionConfigurationV2RuleArgs.builder()
        .applyServerSideEncryptionByDefault(BucketServerSideEncryptionConfigurationV2RuleApplyServerSideEncryptionByDefaultArgs.builder()
            .sseAlgorithm("string")
            .kmsMasterKeyId("string")
            .build())
        .bucketKeyEnabled(false)
        .build())
    .expectedBucketOwner("string")
    .build());
Copy
bucket_server_side_encryption_configuration_v2_resource = aws.s3.BucketServerSideEncryptionConfigurationV2("bucketServerSideEncryptionConfigurationV2Resource",
    bucket="string",
    rules=[{
        "apply_server_side_encryption_by_default": {
            "sse_algorithm": "string",
            "kms_master_key_id": "string",
        },
        "bucket_key_enabled": False,
    }],
    expected_bucket_owner="string")
Copy
const bucketServerSideEncryptionConfigurationV2Resource = new aws.s3.BucketServerSideEncryptionConfigurationV2("bucketServerSideEncryptionConfigurationV2Resource", {
    bucket: "string",
    rules: [{
        applyServerSideEncryptionByDefault: {
            sseAlgorithm: "string",
            kmsMasterKeyId: "string",
        },
        bucketKeyEnabled: false,
    }],
    expectedBucketOwner: "string",
});
Copy
type: aws:s3:BucketServerSideEncryptionConfigurationV2
properties:
    bucket: string
    expectedBucketOwner: string
    rules:
        - applyServerSideEncryptionByDefault:
            kmsMasterKeyId: string
            sseAlgorithm: string
          bucketKeyEnabled: false
Copy

BucketServerSideEncryptionConfigurationV2 Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The BucketServerSideEncryptionConfigurationV2 resource accepts the following input properties:

Bucket
This property is required.
Changes to this property will trigger replacement.
string
ID (name) of the bucket.
Rules This property is required. List<BucketServerSideEncryptionConfigurationV2Rule>
Set of server-side encryption configuration rules. See below. Currently, only a single rule is supported.
ExpectedBucketOwner Changes to this property will trigger replacement. string
Account ID of the expected bucket owner.
Bucket
This property is required.
Changes to this property will trigger replacement.
string
ID (name) of the bucket.
Rules This property is required. []BucketServerSideEncryptionConfigurationV2RuleArgs
Set of server-side encryption configuration rules. See below. Currently, only a single rule is supported.
ExpectedBucketOwner Changes to this property will trigger replacement. string
Account ID of the expected bucket owner.
bucket
This property is required.
Changes to this property will trigger replacement.
String
ID (name) of the bucket.
rules This property is required. List<BucketServerSideEncryptionConfigurationV2Rule>
Set of server-side encryption configuration rules. See below. Currently, only a single rule is supported.
expectedBucketOwner Changes to this property will trigger replacement. String
Account ID of the expected bucket owner.
bucket
This property is required.
Changes to this property will trigger replacement.
string
ID (name) of the bucket.
rules This property is required. BucketServerSideEncryptionConfigurationV2Rule[]
Set of server-side encryption configuration rules. See below. Currently, only a single rule is supported.
expectedBucketOwner Changes to this property will trigger replacement. string
Account ID of the expected bucket owner.
bucket
This property is required.
Changes to this property will trigger replacement.
str
ID (name) of the bucket.
rules This property is required. Sequence[BucketServerSideEncryptionConfigurationV2RuleArgs]
Set of server-side encryption configuration rules. See below. Currently, only a single rule is supported.
expected_bucket_owner Changes to this property will trigger replacement. str
Account ID of the expected bucket owner.
bucket
This property is required.
Changes to this property will trigger replacement.
String
ID (name) of the bucket.
rules This property is required. List<Property Map>
Set of server-side encryption configuration rules. See below. Currently, only a single rule is supported.
expectedBucketOwner Changes to this property will trigger replacement. String
Account ID of the expected bucket owner.

Outputs

All input properties are implicitly available as output properties. Additionally, the BucketServerSideEncryptionConfigurationV2 resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing BucketServerSideEncryptionConfigurationV2 Resource

Get an existing BucketServerSideEncryptionConfigurationV2 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: BucketServerSideEncryptionConfigurationV2State, opts?: CustomResourceOptions): BucketServerSideEncryptionConfigurationV2
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bucket: Optional[str] = None,
        expected_bucket_owner: Optional[str] = None,
        rules: Optional[Sequence[BucketServerSideEncryptionConfigurationV2RuleArgs]] = None) -> BucketServerSideEncryptionConfigurationV2
func GetBucketServerSideEncryptionConfigurationV2(ctx *Context, name string, id IDInput, state *BucketServerSideEncryptionConfigurationV2State, opts ...ResourceOption) (*BucketServerSideEncryptionConfigurationV2, error)
public static BucketServerSideEncryptionConfigurationV2 Get(string name, Input<string> id, BucketServerSideEncryptionConfigurationV2State? state, CustomResourceOptions? opts = null)
public static BucketServerSideEncryptionConfigurationV2 get(String name, Output<String> id, BucketServerSideEncryptionConfigurationV2State state, CustomResourceOptions options)
resources:  _:    type: aws:s3:BucketServerSideEncryptionConfigurationV2    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Bucket Changes to this property will trigger replacement. string
ID (name) of the bucket.
ExpectedBucketOwner Changes to this property will trigger replacement. string
Account ID of the expected bucket owner.
Rules List<BucketServerSideEncryptionConfigurationV2Rule>
Set of server-side encryption configuration rules. See below. Currently, only a single rule is supported.
Bucket Changes to this property will trigger replacement. string
ID (name) of the bucket.
ExpectedBucketOwner Changes to this property will trigger replacement. string
Account ID of the expected bucket owner.
Rules []BucketServerSideEncryptionConfigurationV2RuleArgs
Set of server-side encryption configuration rules. See below. Currently, only a single rule is supported.
bucket Changes to this property will trigger replacement. String
ID (name) of the bucket.
expectedBucketOwner Changes to this property will trigger replacement. String
Account ID of the expected bucket owner.
rules List<BucketServerSideEncryptionConfigurationV2Rule>
Set of server-side encryption configuration rules. See below. Currently, only a single rule is supported.
bucket Changes to this property will trigger replacement. string
ID (name) of the bucket.
expectedBucketOwner Changes to this property will trigger replacement. string
Account ID of the expected bucket owner.
rules BucketServerSideEncryptionConfigurationV2Rule[]
Set of server-side encryption configuration rules. See below. Currently, only a single rule is supported.
bucket Changes to this property will trigger replacement. str
ID (name) of the bucket.
expected_bucket_owner Changes to this property will trigger replacement. str
Account ID of the expected bucket owner.
rules Sequence[BucketServerSideEncryptionConfigurationV2RuleArgs]
Set of server-side encryption configuration rules. See below. Currently, only a single rule is supported.
bucket Changes to this property will trigger replacement. String
ID (name) of the bucket.
expectedBucketOwner Changes to this property will trigger replacement. String
Account ID of the expected bucket owner.
rules List<Property Map>
Set of server-side encryption configuration rules. See below. Currently, only a single rule is supported.

Supporting Types

BucketServerSideEncryptionConfigurationV2Rule
, BucketServerSideEncryptionConfigurationV2RuleArgs

ApplyServerSideEncryptionByDefault BucketServerSideEncryptionConfigurationV2RuleApplyServerSideEncryptionByDefault
Single object for setting server-side encryption by default. See below.
BucketKeyEnabled bool
Whether or not to use Amazon S3 Bucket Keys for SSE-KMS.
ApplyServerSideEncryptionByDefault BucketServerSideEncryptionConfigurationV2RuleApplyServerSideEncryptionByDefault
Single object for setting server-side encryption by default. See below.
BucketKeyEnabled bool
Whether or not to use Amazon S3 Bucket Keys for SSE-KMS.
applyServerSideEncryptionByDefault BucketServerSideEncryptionConfigurationV2RuleApplyServerSideEncryptionByDefault
Single object for setting server-side encryption by default. See below.
bucketKeyEnabled Boolean
Whether or not to use Amazon S3 Bucket Keys for SSE-KMS.
applyServerSideEncryptionByDefault BucketServerSideEncryptionConfigurationV2RuleApplyServerSideEncryptionByDefault
Single object for setting server-side encryption by default. See below.
bucketKeyEnabled boolean
Whether or not to use Amazon S3 Bucket Keys for SSE-KMS.
apply_server_side_encryption_by_default BucketServerSideEncryptionConfigurationV2RuleApplyServerSideEncryptionByDefault
Single object for setting server-side encryption by default. See below.
bucket_key_enabled bool
Whether or not to use Amazon S3 Bucket Keys for SSE-KMS.
applyServerSideEncryptionByDefault Property Map
Single object for setting server-side encryption by default. See below.
bucketKeyEnabled Boolean
Whether or not to use Amazon S3 Bucket Keys for SSE-KMS.

BucketServerSideEncryptionConfigurationV2RuleApplyServerSideEncryptionByDefault
, BucketServerSideEncryptionConfigurationV2RuleApplyServerSideEncryptionByDefaultArgs

SseAlgorithm This property is required. string
Server-side encryption algorithm to use. Valid values are AES256, aws:kms, and aws:kms:dsse
KmsMasterKeyId string
AWS KMS master key ID used for the SSE-KMS encryption. This can only be used when you set the value of sse_algorithm as aws:kms. The default aws/s3 AWS KMS master key is used if this element is absent while the sse_algorithm is aws:kms.
SseAlgorithm This property is required. string
Server-side encryption algorithm to use. Valid values are AES256, aws:kms, and aws:kms:dsse
KmsMasterKeyId string
AWS KMS master key ID used for the SSE-KMS encryption. This can only be used when you set the value of sse_algorithm as aws:kms. The default aws/s3 AWS KMS master key is used if this element is absent while the sse_algorithm is aws:kms.
sseAlgorithm This property is required. String
Server-side encryption algorithm to use. Valid values are AES256, aws:kms, and aws:kms:dsse
kmsMasterKeyId String
AWS KMS master key ID used for the SSE-KMS encryption. This can only be used when you set the value of sse_algorithm as aws:kms. The default aws/s3 AWS KMS master key is used if this element is absent while the sse_algorithm is aws:kms.
sseAlgorithm This property is required. string
Server-side encryption algorithm to use. Valid values are AES256, aws:kms, and aws:kms:dsse
kmsMasterKeyId string
AWS KMS master key ID used for the SSE-KMS encryption. This can only be used when you set the value of sse_algorithm as aws:kms. The default aws/s3 AWS KMS master key is used if this element is absent while the sse_algorithm is aws:kms.
sse_algorithm This property is required. str
Server-side encryption algorithm to use. Valid values are AES256, aws:kms, and aws:kms:dsse
kms_master_key_id str
AWS KMS master key ID used for the SSE-KMS encryption. This can only be used when you set the value of sse_algorithm as aws:kms. The default aws/s3 AWS KMS master key is used if this element is absent while the sse_algorithm is aws:kms.
sseAlgorithm This property is required. String
Server-side encryption algorithm to use. Valid values are AES256, aws:kms, and aws:kms:dsse
kmsMasterKeyId String
AWS KMS master key ID used for the SSE-KMS encryption. This can only be used when you set the value of sse_algorithm as aws:kms. The default aws/s3 AWS KMS master key is used if this element is absent while the sse_algorithm is aws:kms.

Import

If the owner (account ID) of the source bucket differs from the account used to configure the AWS Provider, import using the bucket and expected_bucket_owner separated by a comma (,):

Using pulumi import to import S3 bucket server-side encryption configuration using the bucket or using the bucket and expected_bucket_owner separated by a comma (,). For example:

If the owner (account ID) of the source bucket is the same account used to configure the AWS Provider, import using the bucket:

$ pulumi import aws:s3/bucketServerSideEncryptionConfigurationV2:BucketServerSideEncryptionConfigurationV2 example bucket-name
Copy

If the owner (account ID) of the source bucket differs from the account used to configure the AWS Provider, import using the bucket and expected_bucket_owner separated by a comma (,):

$ pulumi import aws:s3/bucketServerSideEncryptionConfigurationV2:BucketServerSideEncryptionConfigurationV2 example bucket-name,123456789012
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.