Interface CfnMultiRegionAccessPointProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMultiRegionAccessPointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-04T09:06:30.129Z")
@Stability(Stable)
public interface CfnMultiRegionAccessPointProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnMultiRegionAccessPoint
.
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 .bucketAccountId("bucketAccountId") .build())) // the properties below are optional .name("name") .publicAccessBlockConfiguration(PublicAccessBlockConfigurationProperty.builder() .blockPublicAcls(false) .blockPublicPolicy(false) .ignorePublicAcls(false) .restrictPublicBuckets(false) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMultiRegionAccessPointProps
static final class
An implementation forCfnMultiRegionAccessPointProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
getName()
The name of the Multi-Region Access Point.default Object
The PublicAccessBlock configuration that you want to apply to this Multi-Region Access Point.A collection of the Regions and buckets associated with the Multi-Region Access Point.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRegions
A collection of the Regions and buckets associated with the Multi-Region Access Point.- See Also:
-
getName
The name of the Multi-Region Access Point.- See Also:
-
getPublicAccessBlockConfiguration
The PublicAccessBlock configuration that you want to apply to this Multi-Region Access Point.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 Also:
-
builder
-