Interface CfnMultiRegionAccessPointMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMultiRegionAccessPointMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:04.771Z")
@Stability(Stable)
public interface CfnMultiRegionAccessPointMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnMultiRegionAccessPointPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.s3.*;
CfnMultiRegionAccessPointMixinProps cfnMultiRegionAccessPointMixinProps = CfnMultiRegionAccessPointMixinProps.builder()
.name("name")
.publicAccessBlockConfiguration(PublicAccessBlockConfigurationProperty.builder()
.blockPublicAcls(false)
.blockPublicPolicy(false)
.ignorePublicAcls(false)
.restrictPublicBuckets(false)
.build())
.regions(List.of(RegionProperty.builder()
.bucket("bucket")
.bucketAccountId("bucketAccountId")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMultiRegionAccessPointMixinPropsstatic final classAn implementation forCfnMultiRegionAccessPointMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetName()The name of the Multi-Region Access Point.default ObjectThe PublicAccessBlock configuration that you want to apply to this Multi-Region Access Point.default ObjectA 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
-
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 .
Returns union: either
IResolvableorCfnMultiRegionAccessPointPropsMixin.PublicAccessBlockConfigurationProperty- See Also:
-
getRegions
A collection of the Regions and buckets associated with the Multi-Region Access Point.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnMultiRegionAccessPointPropsMixin.RegionProperty>- See Also:
-
builder
-