@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.790Z") @Stability(value=Stable) public interface CfnMultiRegionAccessPointProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.s3.*;
CfnMultiRegionAccessPointProps cfnMultiRegionAccessPointProps = CfnMultiRegionAccessPointProps.builder()
.regions(List.of(RegionProperty.builder()
.bucket("bucket")
// the properties below are optional
.accountId("accountId")
.build()))
// the properties below are optional
.name("name")
.publicAccessBlockConfiguration(PublicAccessBlockConfigurationProperty.builder()
.blockPublicAcls(false)
.blockPublicPolicy(false)
.ignorePublicAcls(false)
.restrictPublicBuckets(false)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnMultiRegionAccessPointProps.Builder
A builder for
CfnMultiRegionAccessPointProps |
static class |
CfnMultiRegionAccessPointProps.Jsii$Proxy
An implementation for
CfnMultiRegionAccessPointProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnMultiRegionAccessPointProps.Builder |
builder() |
default String |
getName()
The name of the Multi-Region Access Point.
|
default Object |
getPublicAccessBlockConfiguration()
The PublicAccessBlock configuration that you want to apply to this Multi-Region Access Point.
|
Object |
getRegions()
A collection of the Regions and buckets associated with the Multi-Region Access Point.
|
@Stability(value=Stable) @NotNull Object getRegions()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default Object getPublicAccessBlockConfiguration()
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 .
@Stability(value=Stable) static CfnMultiRegionAccessPointProps.Builder builder()
Copyright © 2022. All rights reserved.