Show / Hide Table of Contents

Class CfnMultiRegionAccessPoint.RegionProperty

A bucket associated with a specific Region when creating Multi-Region Access Points.

Inheritance
object
CfnMultiRegionAccessPoint.RegionProperty
Implements
CfnMultiRegionAccessPoint.IRegionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMultiRegionAccessPoint.RegionProperty : CfnMultiRegionAccessPoint.IRegionProperty
Syntax (vb)
Public Class CfnMultiRegionAccessPoint.RegionProperty Implements CfnMultiRegionAccessPoint.IRegionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-multiregionaccesspoint-region.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.S3;

             var regionProperty = new RegionProperty {
                 Bucket = "bucket",

                 // the properties below are optional
                 BucketAccountId = "bucketAccountId"
             };

Synopsis

Constructors

RegionProperty()

A bucket associated with a specific Region when creating Multi-Region Access Points.

Properties

Bucket

The name of the associated bucket for the Region.

BucketAccountId

The AWS account ID that owns the Amazon S3 bucket that's associated with this Multi-Region Access Point.

Constructors

RegionProperty()

A bucket associated with a specific Region when creating Multi-Region Access Points.

public RegionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-multiregionaccesspoint-region.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.S3;

             var regionProperty = new RegionProperty {
                 Bucket = "bucket",

                 // the properties below are optional
                 BucketAccountId = "bucketAccountId"
             };

Properties

Bucket

The name of the associated bucket for the Region.

public string Bucket { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-multiregionaccesspoint-region.html#cfn-s3-multiregionaccesspoint-region-bucket

BucketAccountId

The AWS account ID that owns the Amazon S3 bucket that's associated with this Multi-Region Access Point.

public string? BucketAccountId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-multiregionaccesspoint-region.html#cfn-s3-multiregionaccesspoint-region-bucketaccountid

Implements

CfnMultiRegionAccessPoint.IRegionProperty
Back to top Generated by DocFX