CfnS3AccessPointAttachmentProps
- class aws_cdk.aws_fsx.CfnS3AccessPointAttachmentProps(*, name, open_zfs_configuration, type, s3_access_point=None)
Bases:
object
Properties for defining a
CfnS3AccessPointAttachment
.- Parameters:
name (
str
) – The Name of the S3AccessPointAttachment.open_zfs_configuration (
Union
[IResolvable
,S3AccessPointOpenZFSConfigurationProperty
,Dict
[str
,Any
]])type (
str
)s3_access_point (
Union
[IResolvable
,S3AccessPointProperty
,Dict
[str
,Any
],None
])
- 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", 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" ), type="type", # the properties below are optional 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 S3AccessPointAttachment.
- open_zfs_configuration
-
- Type:
see
- s3_access_point
-
- Type:
see