Class CfnAccessPoint
- All Implemented Interfaces:
IConstruct
,IDependable
,IInspectable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
AWS::S3::AccessPoint
.
The AWS::S3::AccessPoint resource is an Amazon S3 resource type that you can use to access buckets.
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.*; Object policy; CfnAccessPoint cfnAccessPoint = CfnAccessPoint.Builder.create(this, "MyCfnAccessPoint") .bucket("bucket") // the properties below are optional .bucketAccountId("bucketAccountId") .name("name") .policy(policy) .publicAccessBlockConfiguration(PublicAccessBlockConfigurationProperty.builder() .blockPublicAcls(false) .blockPublicPolicy(false) .ignorePublicAcls(false) .restrictPublicBuckets(false) .build()) .vpcConfiguration(VpcConfigurationProperty.builder() .vpcId("vpcId") .build()) .build();
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
A fluent builder forCfnAccessPoint
.static interface
The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket.static interface
The Virtual Private Cloud (VPC) configuration for this access point.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionCfnAccessPoint
(Construct scope, String id, CfnAccessPointProps props) Create a newAWS::S3::AccessPoint
.protected
CfnAccessPoint
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnAccessPoint
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionThe alias for this access point.This property contains the details of the ARN for the access point.The name of this access point.Indicates whether this access point allows access from the internet.The name of the bucket associated with this access point.The AWS account ID associated with the S3 bucket associated with this access point.getName()
The name of this access point.The access point policy associated with this access point.The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket.The Virtual Private Cloud (VPC) configuration for this access point, if one exists.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
The name of the bucket associated with this access point.void
setBucketAccountId
(String value) The AWS account ID associated with the S3 bucket associated with this access point.void
The name of this access point.void
The access point policy associated with this access point.void
The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket.void
The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket.void
setVpcConfiguration
(IResolvable value) The Virtual Private Cloud (VPC) configuration for this access point, if one exists.void
The Virtual Private Cloud (VPC) configuration for this access point, if one exists.Methods inherited from class software.amazon.awscdk.core.CfnResource
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.core.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.core.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnAccessPoint
protected CfnAccessPoint(software.amazon.jsii.JsiiObjectRef objRef) -
CfnAccessPoint
protected CfnAccessPoint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnAccessPoint
@Stability(Stable) public CfnAccessPoint(@NotNull Construct scope, @NotNull String id, @NotNull CfnAccessPointProps props) Create a newAWS::S3::AccessPoint
.- Parameters:
scope
-- scope in which this resource is defined.
id
-- scoped id of the resource.
props
-- resource properties.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
-- tree inspector to collect and process attributes.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrAlias
The alias for this access point. -
getAttrArn
This property contains the details of the ARN for the access point. -
getAttrName
The name of this access point. -
getAttrNetworkOrigin
Indicates whether this access point allows access from the internet.If
VpcConfiguration
is specified for this access point, thenNetworkOrigin
isVPC
, and the access point doesn't allow access from the internet. Otherwise,NetworkOrigin
isInternet
, and the access point allows access from the internet, subject to the access point and bucket access policies.Allowed values :
VPC
|Internet
-
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getBucket
The name of the bucket associated with this access point. -
setBucket
The name of the bucket associated with this access point. -
getPolicy
The access point policy associated with this access point. -
setPolicy
The access point policy associated with this access point. -
getBucketAccountId
The AWS account ID associated with the S3 bucket associated with this access point. -
setBucketAccountId
The AWS account ID associated with the S3 bucket associated with this access point. -
getName
The name of this access point.If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the access point name.
-
setName
The name of this access point.If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the access point name.
-
getPublicAccessBlockConfiguration
The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket.You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see The Meaning of "Public" in the Amazon S3 User Guide .
-
setPublicAccessBlockConfiguration
The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket.You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see The Meaning of "Public" in the Amazon S3 User Guide .
-
setPublicAccessBlockConfiguration
@Stability(Stable) public void setPublicAccessBlockConfiguration(@Nullable CfnAccessPoint.PublicAccessBlockConfigurationProperty value) The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket.You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see The Meaning of "Public" in the Amazon S3 User Guide .
-
getVpcConfiguration
The Virtual Private Cloud (VPC) configuration for this access point, if one exists. -
setVpcConfiguration
The Virtual Private Cloud (VPC) configuration for this access point, if one exists. -
setVpcConfiguration
@Stability(Stable) public void setVpcConfiguration(@Nullable CfnAccessPoint.VpcConfigurationProperty value) The Virtual Private Cloud (VPC) configuration for this access point, if one exists.
-