| Copyright | (c) 2013-2018 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | None |
| Language | Haskell2010 |
Network.AWS.SDB.DomainMetadata
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.
- domainMetadata :: Text -> DomainMetadata
- data DomainMetadata
- dmDomainName :: Lens' DomainMetadata Text
- domainMetadataResponse :: Int -> DomainMetadataResponse
- data DomainMetadataResponse
- dmrsItemNamesSizeBytes :: Lens' DomainMetadataResponse (Maybe Integer)
- dmrsAttributeValuesSizeBytes :: Lens' DomainMetadataResponse (Maybe Integer)
- dmrsAttributeNameCount :: Lens' DomainMetadataResponse (Maybe Int)
- dmrsAttributeNamesSizeBytes :: Lens' DomainMetadataResponse (Maybe Integer)
- dmrsAttributeValueCount :: Lens' DomainMetadataResponse (Maybe Int)
- dmrsItemCount :: Lens' DomainMetadataResponse (Maybe Int)
- dmrsTimestamp :: Lens' DomainMetadataResponse (Maybe Int)
- dmrsResponseStatus :: Lens' DomainMetadataResponse Int
Creating a Request
Arguments
| :: Text | |
| -> DomainMetadata |
Creates a value of DomainMetadata with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
dmDomainName- The name of the domain for which to display the metadata of.
data DomainMetadata Source #
See: domainMetadata smart constructor.
Instances
Request Lenses
dmDomainName :: Lens' DomainMetadata Text Source #
The name of the domain for which to display the metadata of.
Destructuring the Response
domainMetadataResponse Source #
Arguments
| :: Int | |
| -> DomainMetadataResponse |
Creates a value of DomainMetadataResponse with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
dmrsItemNamesSizeBytes- The total size of all item names in the domain, in bytes.dmrsAttributeValuesSizeBytes- The total size of all attribute values in the domain, in bytes.dmrsAttributeNameCount- The number of unique attribute names in the domain.dmrsAttributeNamesSizeBytes- The total size of all unique attribute names in the domain, in bytes.dmrsAttributeValueCount- The number of all attribute name/value pairs in the domain.dmrsItemCount- The number of all items in the domain.dmrsTimestamp- The data and time when metadata was calculated, in Epoch (UNIX) seconds.dmrsResponseStatus- -- | The response status code.
data DomainMetadataResponse Source #
See: domainMetadataResponse smart constructor.
Response Lenses
dmrsItemNamesSizeBytes :: Lens' DomainMetadataResponse (Maybe Integer) Source #
The total size of all item names in the domain, in bytes.
dmrsAttributeValuesSizeBytes :: Lens' DomainMetadataResponse (Maybe Integer) Source #
The total size of all attribute values in the domain, in bytes.
dmrsAttributeNameCount :: Lens' DomainMetadataResponse (Maybe Int) Source #
The number of unique attribute names in the domain.
dmrsAttributeNamesSizeBytes :: Lens' DomainMetadataResponse (Maybe Integer) Source #
The total size of all unique attribute names in the domain, in bytes.
dmrsAttributeValueCount :: Lens' DomainMetadataResponse (Maybe Int) Source #
The number of all attribute name/value pairs in the domain.
dmrsItemCount :: Lens' DomainMetadataResponse (Maybe Int) Source #
The number of all items in the domain.
dmrsTimestamp :: Lens' DomainMetadataResponse (Maybe Int) Source #
The data and time when metadata was calculated, in Epoch (UNIX) seconds.
dmrsResponseStatus :: Lens' DomainMetadataResponse Int Source #
- - | The response status code.