🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

@pulumi/aws-s3-replicated-bucket

Package Overview
Dependencies
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pulumi/aws-s3-replicated-bucket

Create a [s3](https://www.pulumi.com/docs/reference/pkg/aws/s3/bucket/) that replicates its contents to another [region](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).

latest
npmnpm
Version
0.0.6
Version published
Maintainers
2
Created
Source

Replicated Bucket Pulumi Component Provider

Create a s3 that replicates its contents to another region.

Installing

This package is available in many languages in the standard packaging formats.

Node.js (Java/TypeScript)

To use from JavaScript or TypeScript in Node.js, install using either npm:

$ npm install @pulumi/replicatedbucket

or yarn:

$ yarn add @pulumi/replicatedbucket

Python

To use from Python, install using pip:

$ pip install pulumi_replicatedbucket

Go

To use from Go, use go get to grab the latest version of the library

$ go get github.com/pulumi/pulumi-replicatedbucket/sdk

.NET

To use from .NET, install using dotnet add package:

$ dotnet add package Pulumi.ReplicatedBucket

Concept

The Pulumi replicated Bucket provides a simple and correct implementation of a s3 bucket replicated to another region.

const bucket = new replicatedBucket.Bucket("bucket", {
    destinationRegion: "us-east-1",
});
var bucket = new ReplicatedBucket.Bucket(ctx, "bucket", new ReplicatedBucket.BucketArgs{
    DestinationRegion: pulumi.String("us-east-1")
})
bucket, err = replicatedbucket.NewBucket(ctx, "bucket", &replicatedbucket.BucketArgs{
	DestinationRegion: pulumi.String("us-east-1"),
})
bucket = pulumi_replicatedbucket.Bucket("bucket", destination_region="us-east-1")

FAQs

Package last updated on 07 Oct 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts