@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:07.749Z") @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")
.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()
`AWS::S3::MultiRegionAccessPoint.Name`.
|
default Object |
getPublicAccessBlockConfiguration()
`AWS::S3::MultiRegionAccessPoint.PublicAccessBlockConfiguration`.
|
Object |
getRegions()
`AWS::S3::MultiRegionAccessPoint.Regions`.
|
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default Object getPublicAccessBlockConfiguration()
@Stability(value=Stable) @NotNull Object getRegions()
@Stability(value=Stable) static CfnMultiRegionAccessPointProps.Builder builder()
Copyright © 2021. All rights reserved.