AccessPointAttributes¶
-
class
aws_cdk.aws_efs.
AccessPointAttributes
(*, access_point_arn=None, access_point_id=None, file_system=None)¶ Bases:
object
(experimental) Attributes that can be specified when importing an AccessPoint.
- Parameters
access_point_arn (
Optional
[str
]) – (experimental) The ARN of the AccessPoint One of this, or {@link accessPointId} is required. Default: - determined based on accessPointIdaccess_point_id (
Optional
[str
]) – (experimental) The ID of the AccessPoint One of this, or {@link accessPointArn} is required. Default: - determined based on accessPointArnfile_system (
Optional
[IFileSystem
]) – (experimental) The EFS file system. Default: - no EFS file system
- Stability
experimental
Attributes
-
access_point_arn
¶ (experimental) The ARN of the AccessPoint One of this, or {@link accessPointId} is required.
- Default
determined based on accessPointId
- Stability
experimental
- Return type
Optional
[str
]
-
access_point_id
¶ (experimental) The ID of the AccessPoint One of this, or {@link accessPointArn} is required.
- Default
determined based on accessPointArn
- Stability
experimental
- Return type
Optional
[str
]
-
file_system
¶ (experimental) The EFS file system.
- Default
no EFS file system
- Stability
experimental
- Return type
Optional
[IFileSystem
]