Skip to content

aws.efs.describe_replication_configurations

Example SQL Queries

SELECT * FROM
aws.efs.describe_replication_configurations;

Description

Retrieves the replication configuration for a specific file system. If a file system is not specified, all of the replication configurations for the Amazon Web Services account in an Amazon Web Services Region are retrieved.

Table Definition

Column NameColumn Data Type
file_system_id Input Column

You can retrieve the replication configuration for a specific file system by providing its file system ID.

VARCHAR
_aws_profile Input Column

The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role.

STRUCT(
"type" VARCHAR,
"name" VARCHAR,
"account_id" VARCHAR,
"via_profile_name" VARCHAR,
"assumed_role_arn" VARCHAR,
"organization" STRUCT(
"account_name" VARCHAR,
"id" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[],
"master_account" STRUCT(
"id" VARCHAR,
"email" VARCHAR
),
"parents" STRUCT(
"type" VARCHAR,
"id" VARCHAR,
"name" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[]
)[]
)
)
Show child fields
_aws_profile.account_id

The AWS account id

_aws_profile.assumed_role_arn

The ARN of the assumed role

_aws_profile.name

The unique name of the profile.

_aws_profile.organization

Information about this profile's membership in the AWS organization.

Show child fields
_aws_profile.organization.account_name

The name of account speciifed by the organization

_aws_profile.organization.id

The organization id

_aws_profile.organization.master_account
Show child fields
_aws_profile.organization.master_account.email

The organization master account email address

_aws_profile.organization.master_account.id

The organization master account id

_aws_profile.organization.parents[]
Show child fields
_aws_profile.organization.parents[].id

The id of the parent

_aws_profile.organization.parents[].name

The name of the parent

_aws_profile.organization.parents[].tags[]
Show child fields
_aws_profile.organization.parents[].tags[].key
_aws_profile.organization.parents[].tags[].value
_aws_profile.organization.parents[].type

The type of parent can be an organization unit or a root

_aws_profile.organization.tags[]
Show child fields
_aws_profile.organization.tags[].key
_aws_profile.organization.tags[].value
_aws_profile.type

The type of profile, either 'credentials' or 'assumed_role'

_aws_profile.via_profile_name

This IAM role for this profile is assumed by first utilizing another profile with this name to obtain credentials.

creation_time

Describes when the replication configuration was created.

TIMESTAMP_S
destinations

An array of destination objects. Only one destination object is supported.

STRUCT(
"status" VARCHAR,
"file_system_id" VARCHAR,
"region" VARCHAR,
"last_replicated_timestamp" TIMESTAMP_S
)[]
Show child fields
destinations[]
Show child fields
destinations[].file_system_id

The ID of the destination Amazon EFS file system.

destinations[].last_replicated_timestamp

The time when the most recent sync was successfully completed on the destination file system. Any changes to data on the source file system that occurred before this time have been successfully replicated to the destination file system. Any changes that occurred after this time might not be fully replicated.

destinations[].region

The Amazon Web Services Region in which the destination file system is located.

destinations[].status

Describes the status of the destination EFS file system.

  • The Paused state occurs as a result of opting out of the source or destination Region after the replication configuration was created. To resume replication for the file system, you need to again opt in to the Amazon Web Services Region. For more information, see Managing Amazon Web Services Regions in the Amazon Web Services General Reference Guide.

  • The Error state occurs when either the source or the destination file system (or both) is in a failed state and is unrecoverable. For more information, see Monitoring replication status in the Amazon EFS User Guide. You must delete the replication configuration, and then restore the most recent backup of the failed file system (either the source or the destination) to a new file system.

original_source_file_system_arn

The Amazon Resource Name (ARN) of the original source EFS file system in the replication configuration.

VARCHAR
source_file_system_arn

The Amazon Resource Name (ARN) of the current source file system in the replication configuration.

VARCHAR
source_file_system_id

The ID of the source Amazon EFS file system that is being replicated.

VARCHAR
source_file_system_region

The Amazon Web Services Region in which the source EFS file system is located.

VARCHAR