Learn R Programming

paws.database (version 0.1.12)

docdb_describe_db_cluster_snapshot_attributes: Returns a list of cluster snapshot attribute names and values for a manual DB cluster snapshot

Description

Returns a list of cluster snapshot attribute names and values for a manual DB cluster snapshot.

When you share snapshots with other AWS accounts, describe_db_cluster_snapshot_attributes returns the restore attribute and a list of IDs for the AWS accounts that are authorized to copy or restore the manual cluster snapshot. If all is included in the list of values for the restore attribute, then the manual cluster snapshot is public and can be copied or restored by all AWS accounts.

Usage

docdb_describe_db_cluster_snapshot_attributes(
  DBClusterSnapshotIdentifier)

Value

A list with the following syntax:

list(
  DBClusterSnapshotAttributesResult = list(
    DBClusterSnapshotIdentifier = "string",
    DBClusterSnapshotAttributes = list(
      list(
        AttributeName = "string",
        AttributeValues = list(
          "string"
        )
      )
    )
  )
)

Arguments

DBClusterSnapshotIdentifier

[required] The identifier for the cluster snapshot to describe the attributes for.

Request syntax

svc$describe_db_cluster_snapshot_attributes(
  DBClusterSnapshotIdentifier = "string"
)