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¶
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 useNextToken
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"
)