Interface CfnMultiRegionAccessPointProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMultiRegionAccessPointProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:37.647Z") @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();
 
  • Method Details

    • getRegions

      @Stability(Stable) @NotNull Object getRegions()
      A collection of the Regions and buckets associated with the Multi-Region Access Point.
    • getName

      @Stability(Stable) @Nullable default String getName()
      The name of the Multi-Region Access Point.
    • getPublicAccessBlockConfiguration

      @Stability(Stable) @Nullable default Object 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 .

    • builder

      @Stability(Stable) static CfnMultiRegionAccessPointProps.Builder builder()
      Returns:
      a CfnMultiRegionAccessPointProps.Builder of CfnMultiRegionAccessPointProps