Inherits from DynamoDBResponse : AmazonServiceResponse : NSObject
Declared in DynamoDBGetItemResponse.h

Overview

Get Item Result

Tasks

  • – setException:

    If an exception was thrown, this will return the exception.

  • – init

    Default constructor for a new object. Callers should use the property methods to initialize this object after creating it.

  •   item

    A map of attribute names to AttributeValue objects, as specified by AttributesToGet.

    property
  •   consumedCapacity

    The table name that consumed provisioned throughput, and the number of capacity units consumed by it. ConsumedCapacity is only returned if it was asked for in the request. For more information, see Provisioned Throughput in the Amazon DynamoDB Developer Guide.

    property
  • – itemValueForKey:

    Returns a value from the item dictionary for the specified key.

  • – description

    Returns a string representation of this object; useful for testing and debugging.

Properties

consumedCapacity

The table name that consumed provisioned throughput, and the number of capacity units consumed by it. ConsumedCapacity is only returned if it was asked for in the request. For more information, see Provisioned Throughput in the Amazon DynamoDB Developer Guide.

@property (nonatomic, retain) DynamoDBConsumedCapacity *consumedCapacity

Discussion

The table name that consumed provisioned throughput, and the number of capacity units consumed by it. ConsumedCapacity is only returned if it was asked for in the request. For more information, see Provisioned Throughput in the Amazon DynamoDB Developer Guide.

Declared In

DynamoDBGetItemResponse.h

item

A map of attribute names to AttributeValue objects, as specified by AttributesToGet.

@property (nonatomic, retain) NSMutableDictionary *item

Discussion

A map of attribute names to AttributeValue objects, as specified by AttributesToGet.

Declared In

DynamoDBGetItemResponse.h

Instance Methods

description

Returns a string representation of this object; useful for testing and debugging.

- (NSString *)description

Return Value

A string representation of this object.

Discussion

Returns a string representation of this object; useful for testing and debugging.

Declared In

DynamoDBGetItemResponse.h

init

Default constructor for a new object. Callers should use the property methods to initialize this object after creating it.

- (id)init

Discussion

Default constructor for a new object. Callers should use the property methods to initialize this object after creating it.

Declared In

DynamoDBGetItemResponse.h

itemValueForKey:

Returns a value from the item dictionary for the specified key.

- (DynamoDBAttributeValue *)itemValueForKey:(NSString *)theKey

Discussion

Returns a value from the item dictionary for the specified key.

Declared In

DynamoDBGetItemResponse.h

setException:

If an exception was thrown, this will return the exception.

- (void)setException:(AmazonServiceException *)theException

Discussion

If an exception was thrown, this will return the exception.

Declared In

AmazonServiceResponse.h