Learn R Programming

paws.database (version 0.1.12)

simpledb_domain_metadata: Returns information about the domain, including when the domain was created, the number of items and attributes in the domain, and the size of the attribute names and values

Description

Returns information about the domain, including when the domain was created, the number of items and attributes in the domain, and the size of the attribute names and values.

Usage

simpledb_domain_metadata(DomainName)

Value

A list with the following syntax:

list(
  ItemCount = 123,
  ItemNamesSizeBytes = 123,
  AttributeNameCount = 123,
  AttributeNamesSizeBytes = 123,
  AttributeValueCount = 123,
  AttributeValuesSizeBytes = 123,
  Timestamp = 123
)

Arguments

DomainName

[required] The name of the domain for which to display the metadata of.

Request syntax

svc$domain_metadata(
  DomainName = "string"
)