interface S3AccessPointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FSx.Mixins.CfnS3AccessPointAttachmentPropsMixin.S3AccessPointProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfsx/mixins#CfnS3AccessPointAttachmentPropsMixin_S3AccessPointProperty |
Java | software.amazon.awscdk.mixins.preview.services.fsx.mixins.CfnS3AccessPointAttachmentPropsMixin.S3AccessPointProperty |
Python | aws_cdk.mixins_preview.aws_fsx.mixins.CfnS3AccessPointAttachmentPropsMixin.S3AccessPointProperty |
TypeScript | @aws-cdk/mixins-preview » aws_fsx » mixins » CfnS3AccessPointAttachmentPropsMixin » S3AccessPointProperty |
Describes the S3 access point configuration of the S3 access point attachment.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as fsx_mixins } from '@aws-cdk/mixins-preview/aws-fsx';
declare const policy: any;
const s3AccessPointProperty: fsx_mixins.CfnS3AccessPointAttachmentPropsMixin.S3AccessPointProperty = {
alias: 'alias',
policy: policy,
resourceArn: 'resourceArn',
vpcConfiguration: {
vpcId: 'vpcId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| alias? | string | The S3 access point's alias. |
| policy? | any | The S3 access point's policy. |
| resource | string | The S3 access point's ARN. |
| vpc | IResolvable | S3 | The S3 access point's virtual private cloud (VPC) configuration. |
alias?
Type:
string
(optional)
The S3 access point's alias.
policy?
Type:
any
(optional)
The S3 access point's policy.
resourceArn?
Type:
string
(optional)
The S3 access point's ARN.
vpcConfiguration?
Type:
IResolvable | S3
(optional)
The S3 access point's virtual private cloud (VPC) configuration.

.NET
Go
Java
Python
TypeScript