Describe Db Snapshot Tenant Databases
rds_describe_db_snapshot_tenant_databases | R Documentation |
Describes the tenant databases that exist in a DB snapshot¶
Description¶
Describes the tenant databases that exist in a DB snapshot. This command only applies to RDS for Oracle DB instances in the multi-tenant configuration.
You can use this command to inspect the tenant databases within a snapshot before restoring it. You can't directly interact with the tenant databases in a DB snapshot. If you restore a snapshot that was taken from DB instance using the multi-tenant configuration, you restore all its tenant databases.
Usage¶
rds_describe_db_snapshot_tenant_databases(DBInstanceIdentifier,
DBSnapshotIdentifier, SnapshotType, Filters, MaxRecords, Marker,
DbiResourceId)
Arguments¶
DBInstanceIdentifier |
The ID of the DB instance used to create the DB snapshots. This parameter isn't case-sensitive. Constraints:
|
DBSnapshotIdentifier |
The ID of a DB snapshot that contains the tenant databases to describe. This value is stored as a lowercase string. Constraints:
|
SnapshotType |
The type of DB snapshots to be returned. You can specify one of the following values:
|
Filters |
A filter that specifies one or more tenant databases to describe. Supported filters:
|
MaxRecords |
The maximum number of records to include in the response. If more
records exist than the specified |
Marker |
An optional pagination token provided by a previous
|
DbiResourceId |
A specific DB resource identifier to describe. |
Value¶
A list with the following syntax:
list(
Marker = "string",
DBSnapshotTenantDatabases = list(
list(
DBSnapshotIdentifier = "string",
DBInstanceIdentifier = "string",
DbiResourceId = "string",
EngineName = "string",
SnapshotType = "string",
TenantDatabaseCreateTime = as.POSIXct(
"2015-01-01"
),
TenantDBName = "string",
MasterUsername = "string",
TenantDatabaseResourceId = "string",
CharacterSetName = "string",
DBSnapshotTenantDatabaseARN = "string",
NcharCharacterSetName = "string",
TagList = list(
list(
Key = "string",
Value = "string"
)
)
)
)
)
Request syntax¶
svc$describe_db_snapshot_tenant_databases(
DBInstanceIdentifier = "string",
DBSnapshotIdentifier = "string",
SnapshotType = "string",
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
MaxRecords = 123,
Marker = "string",
DbiResourceId = "string"
)