CfnS3AccessPointAttachmentProps
- class aws_cdk.aws_fsx.CfnS3AccessPointAttachmentProps(*, name, type, ontap_configuration=None, open_zfs_configuration=None, s3_access_point=None)
Bases:
objectProperties for defining a
CfnS3AccessPointAttachment.- Parameters:
name (
str) – The name of the S3 access point attachment; also used for the name of the S3 access point.type (
str) – The type of Amazon FSx volume that the S3 access point is attached to.ontap_configuration (
Union[IResolvable,S3AccessPointOntapConfigurationProperty,Dict[str,Any],None])open_zfs_configuration (
Union[IResolvable,S3AccessPointOpenZFSConfigurationProperty,Dict[str,Any],None]) – The OpenZFSConfiguration of the S3 access point attachment.s3_access_point (
Union[IResolvable,S3AccessPointProperty,Dict[str,Any],None]) – The S3 access point configuration of the S3 access point attachment.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_fsx as fsx # policy: Any cfn_s3_access_point_attachment_props = fsx.CfnS3AccessPointAttachmentProps( name="name", type="type", # the properties below are optional ontap_configuration=fsx.CfnS3AccessPointAttachment.S3AccessPointOntapConfigurationProperty( file_system_identity=fsx.CfnS3AccessPointAttachment.OntapFileSystemIdentityProperty( type="type", # the properties below are optional unix_user=fsx.CfnS3AccessPointAttachment.OntapUnixFileSystemUserProperty( name="name" ), windows_user=fsx.CfnS3AccessPointAttachment.OntapWindowsFileSystemUserProperty( name="name" ) ), volume_id="volumeId" ), open_zfs_configuration=fsx.CfnS3AccessPointAttachment.S3AccessPointOpenZFSConfigurationProperty( file_system_identity=fsx.CfnS3AccessPointAttachment.OpenZFSFileSystemIdentityProperty( posix_user=fsx.CfnS3AccessPointAttachment.OpenZFSPosixFileSystemUserProperty( gid=123, uid=123, # the properties below are optional secondary_gids=[fsx.CfnS3AccessPointAttachment.FileSystemGIDProperty( gid=123 )] ), type="type" ), volume_id="volumeId" ), s3_access_point=fsx.CfnS3AccessPointAttachment.S3AccessPointProperty( alias="alias", policy=policy, resource_arn="resourceArn", vpc_configuration=fsx.CfnS3AccessPointAttachment.S3AccessPointVpcConfigurationProperty( vpc_id="vpcId" ) ) )
Attributes
- name
The name of the S3 access point attachment;
also used for the name of the S3 access point.
- ontap_configuration
-
- Type:
see
- open_zfs_configuration
The OpenZFSConfiguration of the S3 access point attachment.
- s3_access_point
The S3 access point configuration of the S3 access point attachment.
- type
The type of Amazon FSx volume that the S3 access point is attached to.