s3_access_point_attachments
Creates, updates, deletes, gets or lists a s3_access_point_attachments resource.
Overview
| Name | s3_access_point_attachments |
| Type | Resource |
| Id | aws.fsx.s3_access_point_attachments |
Fields
The following fields are returned by SELECT queries:
- describe_s3_access_point_attachments
| Name | Datatype | Description |
|---|---|---|
creation_time | string (date-time) | The time that the resource was created, in seconds (since 1970-01-01T00:00:00Z), also known as Unix time. |
lifecycle | string | The 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_reason | object | Describes why a resource lifecycle state changed. |
name | string | The 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_configuration | object | The ONTAP configuration of the S3 access point attachment. |
open_zfs_configuration | object | The OpenZFSConfiguration of the S3 access point attachment. |
s3_access_point | object | The S3 access point configuration of the S3 access point attachment. |
type | string | The type of Amazon FSx volume that the S3 access point is attached to. (OPENZFS, ONTAP) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_s3_access_point_attachments | select | region | Describes 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_s3_access_point_attachments
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
;