Skip to content

Describe Replication Configurations

efs_describe_replication_configurations R Documentation

Retrieves the replication configuration for a specific file system

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.

Usage

efs_describe_replication_configurations(FileSystemId, NextToken,
  MaxResults)

Arguments

FileSystemId

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

NextToken

NextToken is present if the response is paginated. You can use NextToken in a subsequent request to fetch the next page of output.

MaxResults

(Optional) To limit the number of objects returned in a response, you can specify the MaxItems parameter. The default value is 100.

Value

A list with the following syntax:

list(
  Replications = list(
    list(
      SourceFileSystemId = "string",
      SourceFileSystemRegion = "string",
      SourceFileSystemArn = "string",
      OriginalSourceFileSystemArn = "string",
      CreationTime = as.POSIXct(
        "2015-01-01"
      ),
      Destinations = list(
        list(
          Status = "ENABLED"|"ENABLING"|"DELETING"|"ERROR"|"PAUSED"|"PAUSING",
          FileSystemId = "string",
          Region = "string",
          LastReplicatedTimestamp = as.POSIXct(
            "2015-01-01"
          )
        )
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_replication_configurations(
  FileSystemId = "string",
  NextToken = "string",
  MaxResults = 123
)