interface CfnAccessPointProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.S3Outposts.CfnAccessPointProps |
Java | software.amazon.awscdk.services.s3outposts.CfnAccessPointProps |
Python | aws_cdk.aws_s3outposts.CfnAccessPointProps |
TypeScript | @aws-cdk/aws-s3outposts » CfnAccessPointProps |
Properties for defining a CfnAccessPoint
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as s3outposts from '@aws-cdk/aws-s3outposts';
declare const policy: any;
const cfnAccessPointProps: s3outposts.CfnAccessPointProps = {
bucket: 'bucket',
name: 'name',
vpcConfiguration: {
vpcId: 'vpcId',
},
// the properties below are optional
policy: policy,
};
Properties
Name | Type | Description |
---|---|---|
bucket | string | The Amazon Resource Name (ARN) of the S3 on Outposts bucket that is associated with this access point. |
name | string | The name of this access point. |
vpc | Vpc | IResolvable | The virtual private cloud (VPC) configuration for this access point, if one exists. |
policy? | any | The access point policy associated with this access point. |
bucket
Type:
string
The Amazon Resource Name (ARN) of the S3 on Outposts bucket that is associated with this access point.
name
Type:
string
The name of this access point.
vpcConfiguration
Type:
Vpc
|
IResolvable
The virtual private cloud (VPC) configuration for this access point, if one exists.
policy?
Type:
any
(optional)
The access point policy associated with this access point.