interface CfnAccessPointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3Outposts.Mixins.CfnAccessPointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3outposts/mixins#CfnAccessPointMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.s3outposts.mixins.CfnAccessPointMixinProps |
Python | aws_cdk.mixins_preview.aws_s3outposts.mixins.CfnAccessPointMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_s3outposts » mixins » CfnAccessPointMixinProps |
Properties for CfnAccessPointPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as s3outposts_mixins } from '@aws-cdk/mixins-preview/aws-s3outposts';
declare const policy: any;
const cfnAccessPointMixinProps: s3outposts_mixins.CfnAccessPointMixinProps = {
bucket: 'bucket',
name: 'name',
policy: policy,
vpcConfiguration: {
vpcId: 'vpcId',
},
};
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. |
| policy? | any | The access point policy associated with this access point. |
| vpc | IResolvable | Vpc | The virtual private cloud (VPC) configuration for this access point, if one exists. |
bucket?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the S3 on Outposts bucket that is associated with this access point.
name?
Type:
string
(optional)
The name of this access point.
policy?
Type:
any
(optional)
The access point policy associated with this access point.
vpcConfiguration?
Type:
IResolvable | Vpc
(optional)
The virtual private cloud (VPC) configuration for this access point, if one exists.

.NET
Go
Java
Python
TypeScript