Skip to main content

s3_access_point_attachments

Creates, updates, deletes, gets or lists a s3_access_point_attachments resource.

Overview

Names3_access_point_attachments
TypeResource
Idaws.fsx.s3_access_point_attachments

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
creation_timestring (date-time)The time that the resource was created, in seconds (since 1970-01-01T00:00:00Z), also known as Unix time.
lifecyclestringThe lifecycle status of the S3 access point attachment. The lifecycle can have the following values: AVAILABLE - the S3 access point attachment is available for use CREATING - Amazon FSx is creating the S3 access point and attachment DELETING - Amazon FSx is deleting the S3 access point and attachment FAILED - The S3 access point attachment is in a failed state. Delete and detach the S3 access point attachment, and create a new one. UPDATING - Amazon FSx is updating the S3 access point attachment (AVAILABLE, CREATING, DELETING, UPDATING, FAILED, MISCONFIGURED)
lifecycle_transition_reasonobjectDescribes why a resource lifecycle state changed.
namestringThe name of the S3 access point attachment; also used for the name of the S3 access point. (pattern: <code>^(?=[a-z0-9])[a-z0-9-]{1,48}[a-z0-9]$</code>)
ontap_configurationobjectThe ONTAP configuration of the S3 access point attachment.
open_zfs_configurationobjectThe OpenZFSConfiguration of the S3 access point attachment.
s3_access_pointobjectThe S3 access point configuration of the S3 access point attachment.
typestringThe type of Amazon FSx volume that the S3 access point is attached to. (OPENZFS, ONTAP)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_s3_access_point_attachmentsselectregionDescribes one or more S3 access points attached to Amazon FSx volumes. The requester requires the following permission to perform this action: fsx:DescribeS3AccessPointAttachments

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Describes one or more S3 access points attached to Amazon FSx volumes. The requester requires the following permission to perform this action: fsx:DescribeS3AccessPointAttachments

SELECT
creation_time,
lifecycle,
lifecycle_transition_reason,
name,
ontap_configuration,
open_zfs_configuration,
s3_access_point,
type
FROM aws.fsx.s3_access_point_attachments
WHERE region = '{{ region }}' -- required
;