Show / Hide Table of Contents

Interface ICfnMultiRegionAccessPointProps

Properties for defining a CfnMultiRegionAccessPoint.

Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnMultiRegionAccessPointProps
Syntax (vb)
Public Interface ICfnMultiRegionAccessPointProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-multiregionaccesspoint.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 cfnMultiRegionAccessPointProps = new CfnMultiRegionAccessPointProps {
                 Regions = new [] { new RegionProperty {
                     Bucket = "bucket",

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

                 // the properties below are optional
                 Name = "name",
                 PublicAccessBlockConfiguration = new PublicAccessBlockConfigurationProperty {
                     BlockPublicAcls = false,
                     BlockPublicPolicy = false,
                     IgnorePublicAcls = false,
                     RestrictPublicBuckets = false
                 }
             };

Synopsis

Properties

Name

The name of the Multi-Region Access Point.

PublicAccessBlockConfiguration

The PublicAccessBlock configuration that you want to apply to this Multi-Region Access Point.

Regions

A collection of the Regions and buckets associated with the Multi-Region Access Point.

Properties

Name

The name of the Multi-Region Access Point.

string? Name { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-multiregionaccesspoint.html#cfn-s3-multiregionaccesspoint-name

PublicAccessBlockConfiguration

The PublicAccessBlock configuration that you want to apply to this Multi-Region Access Point.

object? PublicAccessBlockConfiguration { get; }
Property Value

object

Remarks

You can enable the configuration options in any combination. For more information about when Amazon S3 considers an object public, see The Meaning of "Public" in the Amazon S3 User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-multiregionaccesspoint.html#cfn-s3-multiregionaccesspoint-publicaccessblockconfiguration

Regions

A collection of the Regions and buckets associated with the Multi-Region Access Point.

object Regions { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-multiregionaccesspoint.html#cfn-s3-multiregionaccesspoint-regions

Back to top Generated by DocFX