1. Packages
  2. AWS S3 Replicated Bucket
  3. API Docs
  4. ReplicatedBucket
AWS S3 Replicated Bucket v0.0.6 published on Thursday, Oct 7, 2021 by Lee Zen

aws-s3-replicated-bucket.ReplicatedBucket

Explore with Pulumi AI

Create ReplicatedBucket Resource

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

Constructor syntax

new ReplicatedBucket(name: string, args: ReplicatedBucketArgs, opts?: ComponentResourceOptions);
@overload
def ReplicatedBucket(resource_name: str,
                     args: ReplicatedBucketArgs,
                     opts: Optional[ResourceOptions] = None)

@overload
def ReplicatedBucket(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     destination_region: Optional[str] = None)
func NewReplicatedBucket(ctx *Context, name string, args ReplicatedBucketArgs, opts ...ResourceOption) (*ReplicatedBucket, error)
public ReplicatedBucket(string name, ReplicatedBucketArgs args, ComponentResourceOptions? opts = null)
public ReplicatedBucket(String name, ReplicatedBucketArgs args)
public ReplicatedBucket(String name, ReplicatedBucketArgs args, ComponentResourceOptions options)
type: aws-s3-replicated-bucket:ReplicatedBucket
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. ReplicatedBucketArgs
The arguments to resource properties.
opts ComponentResourceOptions
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. ReplicatedBucketArgs
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. ReplicatedBucketArgs
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. ReplicatedBucketArgs
The arguments to resource properties.
opts ComponentResourceOptions
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. ReplicatedBucketArgs
The arguments to resource properties.
options ComponentResourceOptions
Bag of options to control resource's behavior.

Constructor example

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

var replicatedBucketResource = new AwsS3ReplicatedBucket.ReplicatedBucket("replicatedBucketResource", new()
{
    DestinationRegion = "string",
});
Copy
example, err := awss3replicatedbucket.NewReplicatedBucket(ctx, "replicatedBucketResource", &awss3replicatedbucket.ReplicatedBucketArgs{
	DestinationRegion: pulumi.String("string"),
})
Copy
var replicatedBucketResource = new ReplicatedBucket("replicatedBucketResource", ReplicatedBucketArgs.builder()
    .destinationRegion("string")
    .build());
Copy
replicated_bucket_resource = aws_s3_replicated_bucket.ReplicatedBucket("replicatedBucketResource", destination_region="string")
Copy
const replicatedBucketResource = new aws_s3_replicated_bucket.ReplicatedBucket("replicatedBucketResource", {destinationRegion: "string"});
Copy
type: aws-s3-replicated-bucket:ReplicatedBucket
properties:
    destinationRegion: string
Copy

ReplicatedBucket 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 ReplicatedBucket resource accepts the following input properties:

DestinationRegion This property is required. string
Region to which data should be replicated.
DestinationRegion This property is required. string
Region to which data should be replicated.
destinationRegion This property is required. String
Region to which data should be replicated.
destinationRegion This property is required. string
Region to which data should be replicated.
destination_region This property is required. str
Region to which data should be replicated.
destinationRegion This property is required. String
Region to which data should be replicated.

Outputs

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

DestinationBucket Pulumi.Aws.S3.Bucket
Bucket to which data should be replicated. This type is defined in the AWS Classic package.
SourceBucket Pulumi.Aws.S3.Bucket
Bucket to which objects are written. This type is defined in the AWS Classic package.
DestinationBucket Bucket
Bucket to which data should be replicated. This type is defined in the AWS Classic package.
SourceBucket Bucket
Bucket to which objects are written. This type is defined in the AWS Classic package.
destinationBucket Bucket
Bucket to which data should be replicated. This type is defined in the AWS Classic package.
sourceBucket Bucket
Bucket to which objects are written. This type is defined in the AWS Classic package.
destinationBucket pulumiAwss3Bucket
Bucket to which data should be replicated. This type is defined in the AWS Classic package.
sourceBucket pulumiAwss3Bucket
Bucket to which objects are written. This type is defined in the AWS Classic package.
destination_bucket pulumi_aws.s3.Bucket
Bucket to which data should be replicated. This type is defined in the AWS Classic package.
source_bucket pulumi_aws.s3.Bucket
Bucket to which objects are written. This type is defined in the AWS Classic package.
destinationBucket aws:s3:Bucket
Bucket to which data should be replicated. This type is defined in the AWS Classic package.
sourceBucket aws:s3:Bucket
Bucket to which objects are written. This type is defined in the AWS Classic package.

Package Details

Repository
AWS S3 Replicated Bucket
License