aws-cdk-lib.aws_s3outposts.CfnAccessPointProps

interface CfnAccessPointProps

LanguageType name
.NETAmazon.CDK.AWS.S3Outposts.CfnAccessPointProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awss3outposts#CfnAccessPointProps
Javasoftware.amazon.awscdk.services.s3outposts.CfnAccessPointProps
Pythonaws_cdk.aws_s3outposts.CfnAccessPointProps
TypeScript aws-cdk-lib » 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 { aws_s3outposts as s3outposts } from 'aws-cdk-lib';

declare const policy: any;
const cfnAccessPointProps: s3outposts.CfnAccessPointProps = {
  bucket: 'bucket',
  name: 'name',
  vpcConfiguration: {
    vpcId: 'vpcId',
  },

  // the properties below are optional
  policy: policy,
};

Properties

NameTypeDescription
bucketstringThe Amazon Resource Name (ARN) of the S3 on Outposts bucket that is associated with this access point.
namestringThe name of this access point.
vpcConfigurationIResolvable | VpcConfigurationPropertyThe virtual private cloud (VPC) configuration for this access point, if one exists.
policy?anyThe 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: IResolvable | VpcConfigurationProperty

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.