models.streams.dynamodb-2012-08-10-intermediate.json Maven / Gradle / Ivy
Show all versions of aws-java-sdk-dynamodb Show documentation
{
"metadata" : {
"apiVersion" : "2012-08-10",
"protocol" : "json",
"checksumFormat" : null,
"documentation" : "Amazon DynamoDB Amazon DynamoDB Streams provides API actions for accessing streams and processing stream records. To learn more about application development with Streams, see Capturing Table Activity with DynamoDB Streams in the Amazon DynamoDB Developer Guide.
The following are short descriptions of each low-level DynamoDB Streams action:
-
DescribeStream - Returns detailed information about a particular stream.
-
GetRecords - Retrieves the stream records from within a shard.
-
GetShardIterator - Returns information on how to retrieve the streams record from a shard with a given shard ID.
-
ListStreams - Returns a list of all the streams associated with the current AWS account and endpoint.
",
"defaultEndpoint" : "https://streams.dynamodb.us-east-1.amazonaws.com",
"defaultEndpointWithoutHttpProtocol" : "streams.dynamodb.us-east-1.amazonaws.com",
"syncInterface" : "AmazonDynamoDBStreams",
"syncClient" : "AmazonDynamoDBStreamsClient",
"asyncInterface" : "AmazonDynamoDBStreamsAsync",
"asyncClient" : "AmazonDynamoDBStreamsAsyncClient",
"packageName" : "com.amazonaws.services.dynamodbv2",
"packagePath" : "com/amazonaws/services/dynamodbv2",
"serviceAbbreviation" : null,
"serviceFullName" : "Amazon DynamoDB Streams",
"hasApiWithStreamInput" : false,
"contentType" : null,
"jsonVersion" : "1.0",
"endpointPrefix" : "streams.dynamodb",
"signingName" : "dynamodb",
"protocolDefaultExceptionUmarshallerImpl" : null,
"syncClientBuilderClassName" : "AmazonDynamoDBStreamsClientBuilder",
"asyncClientBuilderClassName" : "AmazonDynamoDBStreamsAsyncClientBuilder",
"cucumberModuleInjectorClassName" : "AmazonDynamoDBStreamsModuleInjector",
"smokeTestsPackageName" : "com.amazonaws.services.dynamodbv2.smoketests",
"serviceName" : "Amazon DynamoDB Streams",
"cborProtocol" : false,
"xmlProtocol" : false,
"unmarshallerContextClassName" : "JsonUnmarshallerContext",
"unmarshallerClassSuffix" : "JsonUnmarshaller",
"jsonProtocol" : true
},
"operations" : {
"DescribeStream" : {
"documentation" : "Returns information about a stream, including the current status of the stream, its Amazon Resource Name (ARN), the composition of its shards, and its corresponding DynamoDB table.
You can call DescribeStream at a maximum rate of 10 times per second.
Each shard in the stream has a SequenceNumberRange
associated with it. If the SequenceNumberRange
has a StartingSequenceNumber
but no EndingSequenceNumber
, then the shard is still open (able to receive more stream records). If both StartingSequenceNumber
and EndingSequenceNumber
are present, then that shard is closed and can no longer receive more data.
",
"operationName" : "DescribeStream",
"deprecated" : false,
"input" : {
"variableName" : "describeStreamRequest",
"variableType" : "DescribeStreamRequest",
"variableDeclarationType" : "DescribeStreamRequest",
"documentation" : "Represents the input of a DescribeStream operation.
",
"simpleType" : "DescribeStreamRequest",
"variableSetterType" : "DescribeStreamRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DescribeStreamResult",
"documentation" : "Represents the output of a DescribeStream operation.
"
},
"exceptions" : [ {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The operation tried to access a nonexistent stream.
"
}, {
"exceptionName" : "InternalServerErrorException",
"documentation" : "An error occurred on the server side.
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "DescribeStreamResult",
"asyncReturnType" : "DescribeStreamResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "describeStream"
},
"GetRecords" : {
"documentation" : "Retrieves the stream records from a given shard.
Specify a shard iterator using the ShardIterator
parameter. The shard iterator specifies the position in the shard from which you want to start reading stream records sequentially. If there are no stream records available in the portion of the shard that the iterator points to, GetRecords
returns an empty list. Note that it might take multiple calls to get to a portion of the shard that contains stream records.
GetRecords
can retrieve a maximum of 1 MB of data or 1000 stream records, whichever comes first.
",
"operationName" : "GetRecords",
"deprecated" : false,
"input" : {
"variableName" : "getRecordsRequest",
"variableType" : "GetRecordsRequest",
"variableDeclarationType" : "GetRecordsRequest",
"documentation" : "Represents the input of a GetRecords operation.
",
"simpleType" : "GetRecordsRequest",
"variableSetterType" : "GetRecordsRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetRecordsResult",
"documentation" : "Represents the output of a GetRecords operation.
"
},
"exceptions" : [ {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The operation tried to access a nonexistent stream.
"
}, {
"exceptionName" : "LimitExceededException",
"documentation" : "Your request rate is too high. The AWS SDKs for DynamoDB automatically retry requests that receive this exception. Your request is eventually successful, unless your retry queue is too large to finish. Reduce the frequency of requests and use exponential backoff. For more information, go to Error Retries and Exponential Backoff in the Amazon DynamoDB Developer Guide.
"
}, {
"exceptionName" : "InternalServerErrorException",
"documentation" : "An error occurred on the server side.
"
}, {
"exceptionName" : "ExpiredIteratorException",
"documentation" : "The shard iterator has expired and can no longer be used to retrieve stream records. A shard iterator expires 15 minutes after it is retrieved using the GetShardIterator action.
"
}, {
"exceptionName" : "TrimmedDataAccessException",
"documentation" : "The operation attempted to read past the oldest stream record in a shard.
In DynamoDB Streams, there is a 24 hour limit on data retention. Stream records whose age exceeds this limit are subject to removal (trimming) from the stream. You might receive a TrimmedDataAccessException if:
You request a shard iterator with a sequence number older than the trim point (24 hours).
You obtain a shard iterator, but before you use the iterator in a GetRecords request, a stream record in the shard exceeds the 24 hour period and is trimmed. This causes the iterator to access a record that no longer exists.
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "GetRecordsResult",
"asyncReturnType" : "GetRecordsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "getRecords"
},
"GetShardIterator" : {
"documentation" : "Returns a shard iterator. A shard iterator provides information about how to retrieve the stream records from within a shard. Use the shard iterator in a subsequent GetRecords
request to read the stream records from the shard.
A shard iterator expires 15 minutes after it is returned to the requester.
",
"operationName" : "GetShardIterator",
"deprecated" : false,
"input" : {
"variableName" : "getShardIteratorRequest",
"variableType" : "GetShardIteratorRequest",
"variableDeclarationType" : "GetShardIteratorRequest",
"documentation" : "Represents the input of a GetShardIterator operation.
",
"simpleType" : "GetShardIteratorRequest",
"variableSetterType" : "GetShardIteratorRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetShardIteratorResult",
"documentation" : "Represents the output of a GetShardIterator operation.
"
},
"exceptions" : [ {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The operation tried to access a nonexistent stream.
"
}, {
"exceptionName" : "InternalServerErrorException",
"documentation" : "An error occurred on the server side.
"
}, {
"exceptionName" : "TrimmedDataAccessException",
"documentation" : "The operation attempted to read past the oldest stream record in a shard.
In DynamoDB Streams, there is a 24 hour limit on data retention. Stream records whose age exceeds this limit are subject to removal (trimming) from the stream. You might receive a TrimmedDataAccessException if:
You request a shard iterator with a sequence number older than the trim point (24 hours).
You obtain a shard iterator, but before you use the iterator in a GetRecords request, a stream record in the shard exceeds the 24 hour period and is trimmed. This causes the iterator to access a record that no longer exists.
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "GetShardIteratorResult",
"asyncReturnType" : "GetShardIteratorResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "getShardIterator"
},
"ListStreams" : {
"documentation" : "Returns an array of stream ARNs associated with the current account and endpoint. If the TableName
parameter is present, then ListStreams will return only the streams ARNs for that table.
You can call ListStreams at a maximum rate of 5 times per second.
",
"operationName" : "ListStreams",
"deprecated" : false,
"input" : {
"variableName" : "listStreamsRequest",
"variableType" : "ListStreamsRequest",
"variableDeclarationType" : "ListStreamsRequest",
"documentation" : "Represents the input of a ListStreams operation.
",
"simpleType" : "ListStreamsRequest",
"variableSetterType" : "ListStreamsRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ListStreamsResult",
"documentation" : "Represents the output of a ListStreams operation.
"
},
"exceptions" : [ {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The operation tried to access a nonexistent stream.
"
}, {
"exceptionName" : "InternalServerErrorException",
"documentation" : "An error occurred on the server side.
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "ListStreamsResult",
"asyncReturnType" : "ListStreamsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "listStreams"
}
},
"shapes" : {
"AttributeValue" : {
"c2jName" : "AttributeValue",
"documentation" : "Represents the data for an attribute. You can set one, and only one, of the elements.
Each attribute in an item is a name-value pair. An attribute can be single-valued or multi-valued set. For example, a book item can have title and authors attributes. Each book has one title but can have many authors. The multi-valued attribute is a set; duplicate values are not allowed.
",
"shapeName" : "AttributeValue",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A String data type.
",
"name" : "S",
"c2jName" : "S",
"c2jShape" : "StringAttributeValue",
"variable" : {
"variableName" : "s",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A String data type.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "s",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "S",
"marshallLocationName" : "S",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A String data type.
\n@param s A String data type.*/",
"getterDocumentation" : "/**A String data type.
\n@return A String data type.*/",
"fluentSetterDocumentation" : "/**A String data type.
\n@param s A String data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A String data type.
\n@param s A String data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A Number data type.
",
"name" : "N",
"c2jName" : "N",
"c2jShape" : "NumberAttributeValue",
"variable" : {
"variableName" : "n",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A Number data type.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "n",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "N",
"marshallLocationName" : "N",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A Number data type.
\n@param n A Number data type.*/",
"getterDocumentation" : "/**A Number data type.
\n@return A Number data type.*/",
"fluentSetterDocumentation" : "/**A Number data type.
\n@param n A Number data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A Number data type.
\n@param n A Number data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A Binary data type.
",
"name" : "B",
"c2jName" : "B",
"c2jShape" : "BinaryAttributeValue",
"variable" : {
"variableName" : "b",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "A Binary data type.
",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"setterModel" : {
"variableName" : "b",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"getterModel" : {
"returnType" : "java.nio.ByteBuffer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "B",
"marshallLocationName" : "B",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A Binary data type.
\nAWS SDK for Java performs a Base64 encoding on this field before sending this request to AWS service by default. Users of the SDK should not perform Base64 encoding on this field.\n
\n\nWarning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.\n
\n\n@param b A Binary data type.*/",
"getterDocumentation" : "/**A Binary data type.
\n\n{@code ByteBuffer}s are stateful. Calling their {@code get} methods changes their {@code position}. We recommend using {@link java.nio.ByteBuffer#asReadOnlyBuffer()} to create a read-only view of the buffer with an independent {@code position}, and calling {@code get} methods on this rather than directly on the returned {@code ByteBuffer}. Doing so will ensure that anyone else using the {@code ByteBuffer} will not be affected by changes to the {@code position}.\n
\n@return A Binary data type.*/",
"fluentSetterDocumentation" : "/**A Binary data type.
\n@param b A Binary data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A Binary data type.
\n@param b A Binary data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A String Set data type.
",
"name" : "SS",
"c2jName" : "SS",
"c2jShape" : "StringSetAttributeValue",
"variable" : {
"variableName" : "sS",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "A String Set data type.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "sS",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SS",
"marshallLocationName" : "SS",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "StringAttributeValue",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A String Set data type.
\n@param sS A String Set data type.*/",
"getterDocumentation" : "/**A String Set data type.
\n@return A String Set data type.*/",
"fluentSetterDocumentation" : "/**A String Set data type.
\n@param sS A String Set data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A String Set data type.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setSS(java.util.Collection)} or {@link #withSS(java.util.Collection)} if you want to override the existing values.
\n@param sS A String Set data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A Number Set data type.
",
"name" : "NS",
"c2jName" : "NS",
"c2jShape" : "NumberSetAttributeValue",
"variable" : {
"variableName" : "nS",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "A Number Set data type.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "nS",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NS",
"marshallLocationName" : "NS",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "NumberAttributeValue",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A Number Set data type.
\n@param nS A Number Set data type.*/",
"getterDocumentation" : "/**A Number Set data type.
\n@return A Number Set data type.*/",
"fluentSetterDocumentation" : "/**A Number Set data type.
\n@param nS A Number Set data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A Number Set data type.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setNS(java.util.Collection)} or {@link #withNS(java.util.Collection)} if you want to override the existing values.
\n@param nS A Number Set data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A Binary Set data type.
",
"name" : "BS",
"c2jName" : "BS",
"c2jShape" : "BinarySetAttributeValue",
"variable" : {
"variableName" : "bS",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "A Binary Set data type.
",
"simpleType" : "ByteBuffer>",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "bS",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "ByteBuffer>",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BS",
"marshallLocationName" : "BS",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "java.nio.ByteBuffer",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "BinaryAttributeValue",
"variable" : {
"variableName" : "member",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"getterModel" : {
"returnType" : "java.nio.ByteBuffer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\nAWS SDK for Java performs a Base64 encoding on this field before sending this request to AWS service by default. Users of the SDK should not perform Base64 encoding on this field.\n
\n\nWarning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.\n
\n\n@param member */",
"getterDocumentation" : "/**\n\n{@code ByteBuffer}s are stateful. Calling their {@code get} methods changes their {@code position}. We recommend using {@link java.nio.ByteBuffer#asReadOnlyBuffer()} to create a read-only view of the buffer with an independent {@code position}, and calling {@code get} methods on this rather than directly on the returned {@code ByteBuffer}. Doing so will ensure that anyone else using the {@code ByteBuffer} will not be affected by changes to the {@code position}.\n
\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "ByteBuffer",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A Binary Set data type.
\n@param bS A Binary Set data type.*/",
"getterDocumentation" : "/**A Binary Set data type.
\n@return A Binary Set data type.*/",
"fluentSetterDocumentation" : "/**A Binary Set data type.
\n@param bS A Binary Set data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A Binary Set data type.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setBS(java.util.Collection)} or {@link #withBS(java.util.Collection)} if you want to override the existing values.
\n@param bS A Binary Set data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A Map data type.
",
"name" : "M",
"c2jName" : "M",
"c2jShape" : "MapAttributeValue",
"variable" : {
"variableName" : "m",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "A Map data type.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"setterModel" : {
"variableName" : "m",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "M",
"marshallLocationName" : "M",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : {
"implType" : "java.util.HashMap",
"interfaceType" : "java.util.Map",
"keyType" : "String",
"keyLocationName" : "key",
"keyModel" : null,
"valueType" : "AttributeValue",
"valueLocationName" : "value",
"valueModel" : {
"documentation" : "",
"name" : "Value",
"c2jName" : "value",
"c2jShape" : "AttributeValue",
"variable" : {
"variableName" : "value",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"getterModel" : {
"returnType" : "AttributeValue",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "value",
"marshallLocationName" : "value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param value */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"templateType" : "java.util.Map",
"templateImplType" : "java.util.HashMap",
"keySimple" : true,
"valueSimple" : false,
"valueList" : false,
"entryType" : "Map.Entry"
},
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : true,
"setterDocumentation" : "/**A Map data type.
\n@param m A Map data type.*/",
"getterDocumentation" : "/**A Map data type.
\n@return A Map data type.*/",
"fluentSetterDocumentation" : "/**A Map data type.
\n@param m A Map data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A Map data type.
\n@param m A Map data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A List data type.
",
"name" : "L",
"c2jName" : "L",
"c2jShape" : "ListAttributeValue",
"variable" : {
"variableName" : "l",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "A List data type.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "l",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "L",
"marshallLocationName" : "L",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "AttributeValue",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "AttributeValue",
"variable" : {
"variableName" : "member",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"getterModel" : {
"returnType" : "AttributeValue",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "AttributeValue",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A List data type.
\n@param l A List data type.*/",
"getterDocumentation" : "/**A List data type.
\n@return A List data type.*/",
"fluentSetterDocumentation" : "/**A List data type.
\n@param l A List data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A List data type.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setL(java.util.Collection)} or {@link #withL(java.util.Collection)} if you want to override the existing values.
\n@param l A List data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A Null data type.
",
"name" : "NULL",
"c2jName" : "NULL",
"c2jShape" : "NullAttributeValue",
"variable" : {
"variableName" : "nULLValue",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "A Null data type.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "nULLValue",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NULL",
"marshallLocationName" : "NULL",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A Null data type.
\n@param nULLValue A Null data type.*/",
"getterDocumentation" : "/**A Null data type.
\n@return A Null data type.*/",
"fluentSetterDocumentation" : "/**A Null data type.
\n@param nULLValue A Null data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A Null data type.
\n@param nULLValue A Null data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A Boolean data type.
",
"name" : "BOOL",
"c2jName" : "BOOL",
"c2jShape" : "BooleanAttributeValue",
"variable" : {
"variableName" : "bOOL",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "A Boolean data type.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "bOOL",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BOOL",
"marshallLocationName" : "BOOL",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A Boolean data type.
\n@param bOOL A Boolean data type.*/",
"getterDocumentation" : "/**A Boolean data type.
\n@return A Boolean data type.*/",
"fluentSetterDocumentation" : "/**A Boolean data type.
\n@param bOOL A Boolean data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A Boolean data type.
\n@param bOOL A Boolean data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "attributeValue",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : null,
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : true,
"skipGeneratingMarshaller" : true,
"skipGeneratingUnmarshaller" : true
},
"membersAsMap" : {
"SS" : {
"documentation" : "A String Set data type.
",
"name" : "SS",
"c2jName" : "SS",
"c2jShape" : "StringSetAttributeValue",
"variable" : {
"variableName" : "sS",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "A String Set data type.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "sS",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SS",
"marshallLocationName" : "SS",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "StringAttributeValue",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A String Set data type.
\n@param sS A String Set data type.*/",
"getterDocumentation" : "/**A String Set data type.
\n@return A String Set data type.*/",
"fluentSetterDocumentation" : "/**A String Set data type.
\n@param sS A String Set data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A String Set data type.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setSS(java.util.Collection)} or {@link #withSS(java.util.Collection)} if you want to override the existing values.
\n@param sS A String Set data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"BS" : {
"documentation" : "A Binary Set data type.
",
"name" : "BS",
"c2jName" : "BS",
"c2jShape" : "BinarySetAttributeValue",
"variable" : {
"variableName" : "bS",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "A Binary Set data type.
",
"simpleType" : "ByteBuffer>",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "bS",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "ByteBuffer>",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BS",
"marshallLocationName" : "BS",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "java.nio.ByteBuffer",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "BinaryAttributeValue",
"variable" : {
"variableName" : "member",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"getterModel" : {
"returnType" : "java.nio.ByteBuffer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\nAWS SDK for Java performs a Base64 encoding on this field before sending this request to AWS service by default. Users of the SDK should not perform Base64 encoding on this field.\n
\n\nWarning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.\n
\n\n@param member */",
"getterDocumentation" : "/**\n\n{@code ByteBuffer}s are stateful. Calling their {@code get} methods changes their {@code position}. We recommend using {@link java.nio.ByteBuffer#asReadOnlyBuffer()} to create a read-only view of the buffer with an independent {@code position}, and calling {@code get} methods on this rather than directly on the returned {@code ByteBuffer}. Doing so will ensure that anyone else using the {@code ByteBuffer} will not be affected by changes to the {@code position}.\n
\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "ByteBuffer",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A Binary Set data type.
\n@param bS A Binary Set data type.*/",
"getterDocumentation" : "/**A Binary Set data type.
\n@return A Binary Set data type.*/",
"fluentSetterDocumentation" : "/**A Binary Set data type.
\n@param bS A Binary Set data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A Binary Set data type.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setBS(java.util.Collection)} or {@link #withBS(java.util.Collection)} if you want to override the existing values.
\n@param bS A Binary Set data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"B" : {
"documentation" : "A Binary data type.
",
"name" : "B",
"c2jName" : "B",
"c2jShape" : "BinaryAttributeValue",
"variable" : {
"variableName" : "b",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "A Binary data type.
",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"setterModel" : {
"variableName" : "b",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"getterModel" : {
"returnType" : "java.nio.ByteBuffer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "B",
"marshallLocationName" : "B",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A Binary data type.
\nAWS SDK for Java performs a Base64 encoding on this field before sending this request to AWS service by default. Users of the SDK should not perform Base64 encoding on this field.\n
\n\nWarning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.\n
\n\n@param b A Binary data type.*/",
"getterDocumentation" : "/**A Binary data type.
\n\n{@code ByteBuffer}s are stateful. Calling their {@code get} methods changes their {@code position}. We recommend using {@link java.nio.ByteBuffer#asReadOnlyBuffer()} to create a read-only view of the buffer with an independent {@code position}, and calling {@code get} methods on this rather than directly on the returned {@code ByteBuffer}. Doing so will ensure that anyone else using the {@code ByteBuffer} will not be affected by changes to the {@code position}.\n
\n@return A Binary data type.*/",
"fluentSetterDocumentation" : "/**A Binary data type.
\n@param b A Binary data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A Binary data type.
\n@param b A Binary data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"S" : {
"documentation" : "A String data type.
",
"name" : "S",
"c2jName" : "S",
"c2jShape" : "StringAttributeValue",
"variable" : {
"variableName" : "s",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A String data type.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "s",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "S",
"marshallLocationName" : "S",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A String data type.
\n@param s A String data type.*/",
"getterDocumentation" : "/**A String data type.
\n@return A String data type.*/",
"fluentSetterDocumentation" : "/**A String data type.
\n@param s A String data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A String data type.
\n@param s A String data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"NULL" : {
"documentation" : "A Null data type.
",
"name" : "NULL",
"c2jName" : "NULL",
"c2jShape" : "NullAttributeValue",
"variable" : {
"variableName" : "nULLValue",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "A Null data type.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "nULLValue",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NULL",
"marshallLocationName" : "NULL",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A Null data type.
\n@param nULLValue A Null data type.*/",
"getterDocumentation" : "/**A Null data type.
\n@return A Null data type.*/",
"fluentSetterDocumentation" : "/**A Null data type.
\n@param nULLValue A Null data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A Null data type.
\n@param nULLValue A Null data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"NS" : {
"documentation" : "A Number Set data type.
",
"name" : "NS",
"c2jName" : "NS",
"c2jShape" : "NumberSetAttributeValue",
"variable" : {
"variableName" : "nS",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "A Number Set data type.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "nS",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NS",
"marshallLocationName" : "NS",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "NumberAttributeValue",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A Number Set data type.
\n@param nS A Number Set data type.*/",
"getterDocumentation" : "/**A Number Set data type.
\n@return A Number Set data type.*/",
"fluentSetterDocumentation" : "/**A Number Set data type.
\n@param nS A Number Set data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A Number Set data type.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setNS(java.util.Collection)} or {@link #withNS(java.util.Collection)} if you want to override the existing values.
\n@param nS A Number Set data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"BOOL" : {
"documentation" : "A Boolean data type.
",
"name" : "BOOL",
"c2jName" : "BOOL",
"c2jShape" : "BooleanAttributeValue",
"variable" : {
"variableName" : "bOOL",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "A Boolean data type.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "bOOL",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BOOL",
"marshallLocationName" : "BOOL",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A Boolean data type.
\n@param bOOL A Boolean data type.*/",
"getterDocumentation" : "/**A Boolean data type.
\n@return A Boolean data type.*/",
"fluentSetterDocumentation" : "/**A Boolean data type.
\n@param bOOL A Boolean data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A Boolean data type.
\n@param bOOL A Boolean data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"L" : {
"documentation" : "A List data type.
",
"name" : "L",
"c2jName" : "L",
"c2jShape" : "ListAttributeValue",
"variable" : {
"variableName" : "l",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "A List data type.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "l",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "L",
"marshallLocationName" : "L",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "AttributeValue",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "AttributeValue",
"variable" : {
"variableName" : "member",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"getterModel" : {
"returnType" : "AttributeValue",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "AttributeValue",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A List data type.
\n@param l A List data type.*/",
"getterDocumentation" : "/**A List data type.
\n@return A List data type.*/",
"fluentSetterDocumentation" : "/**A List data type.
\n@param l A List data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A List data type.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setL(java.util.Collection)} or {@link #withL(java.util.Collection)} if you want to override the existing values.
\n@param l A List data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"M" : {
"documentation" : "A Map data type.
",
"name" : "M",
"c2jName" : "M",
"c2jShape" : "MapAttributeValue",
"variable" : {
"variableName" : "m",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "A Map data type.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"setterModel" : {
"variableName" : "m",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "M",
"marshallLocationName" : "M",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : {
"implType" : "java.util.HashMap",
"interfaceType" : "java.util.Map",
"keyType" : "String",
"keyLocationName" : "key",
"keyModel" : null,
"valueType" : "AttributeValue",
"valueLocationName" : "value",
"valueModel" : {
"documentation" : "",
"name" : "Value",
"c2jName" : "value",
"c2jShape" : "AttributeValue",
"variable" : {
"variableName" : "value",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"getterModel" : {
"returnType" : "AttributeValue",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "value",
"marshallLocationName" : "value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param value */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"templateType" : "java.util.Map",
"templateImplType" : "java.util.HashMap",
"keySimple" : true,
"valueSimple" : false,
"valueList" : false,
"entryType" : "Map.Entry"
},
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : true,
"setterDocumentation" : "/**A Map data type.
\n@param m A Map data type.*/",
"getterDocumentation" : "/**A Map data type.
\n@return A Map data type.*/",
"fluentSetterDocumentation" : "/**A Map data type.
\n@param m A Map data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A Map data type.
\n@param m A Map data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"N" : {
"documentation" : "A Number data type.
",
"name" : "N",
"c2jName" : "N",
"c2jShape" : "NumberAttributeValue",
"variable" : {
"variableName" : "n",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A Number data type.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "n",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "N",
"marshallLocationName" : "N",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A Number data type.
\n@param n A Number data type.*/",
"getterDocumentation" : "/**A Number data type.
\n@return A Number data type.*/",
"fluentSetterDocumentation" : "/**A Number data type.
\n@param n A Number data type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A Number data type.
\n@param n A Number data type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ShardIteratorType" : {
"c2jName" : "ShardIteratorType",
"documentation" : "",
"shapeName" : "ShardIteratorType",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "TRIM_HORIZON",
"value" : "TRIM_HORIZON"
}, {
"name" : "LATEST",
"value" : "LATEST"
}, {
"name" : "AT_SEQUENCE_NUMBER",
"value" : "AT_SEQUENCE_NUMBER"
}, {
"name" : "AFTER_SEQUENCE_NUMBER",
"value" : "AFTER_SEQUENCE_NUMBER"
} ],
"variable" : {
"variableName" : "shardIteratorType",
"variableType" : "ShardIteratorType",
"variableDeclarationType" : "ShardIteratorType",
"documentation" : null,
"simpleType" : "ShardIteratorType",
"variableSetterType" : "ShardIteratorType"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"GetRecordsResult" : {
"c2jName" : "GetRecordsOutput",
"documentation" : "Represents the output of a GetRecords operation.
",
"shapeName" : "GetRecordsResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The stream records from the shard, which were retrieved using the shard iterator.
",
"name" : "Records",
"c2jName" : "Records",
"c2jShape" : "RecordList",
"variable" : {
"variableName" : "records",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "The stream records from the shard, which were retrieved using the shard iterator.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "records",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Records",
"marshallLocationName" : "Records",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Record",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Record",
"variable" : {
"variableName" : "member",
"variableType" : "Record",
"variableDeclarationType" : "Record",
"documentation" : "",
"simpleType" : "Record",
"variableSetterType" : "Record"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Record",
"variableDeclarationType" : "Record",
"documentation" : "",
"simpleType" : "Record",
"variableSetterType" : "Record"
},
"getterModel" : {
"returnType" : "Record",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "Record",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The stream records from the shard, which were retrieved using the shard iterator.
\n@param records The stream records from the shard, which were retrieved using the shard iterator.*/",
"getterDocumentation" : "/**The stream records from the shard, which were retrieved using the shard iterator.
\n@return The stream records from the shard, which were retrieved using the shard iterator.*/",
"fluentSetterDocumentation" : "/**The stream records from the shard, which were retrieved using the shard iterator.
\n@param records The stream records from the shard, which were retrieved using the shard iterator.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The stream records from the shard, which were retrieved using the shard iterator.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setRecords(java.util.Collection)} or {@link #withRecords(java.util.Collection)} if you want to override the existing values.
\n@param records The stream records from the shard, which were retrieved using the shard iterator.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.
",
"name" : "NextShardIterator",
"c2jName" : "NextShardIterator",
"c2jShape" : "ShardIterator",
"variable" : {
"variableName" : "nextShardIterator",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nextShardIterator",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextShardIterator",
"marshallLocationName" : "NextShardIterator",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.
\n@param nextShardIterator The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.*/",
"getterDocumentation" : "/**The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.
\n@return The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.*/",
"fluentSetterDocumentation" : "/**The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.
\n@param nextShardIterator The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.
\n@param nextShardIterator The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getRecordsResult",
"variableType" : "GetRecordsResult",
"variableDeclarationType" : "GetRecordsResult",
"documentation" : null,
"simpleType" : "GetRecordsResult",
"variableSetterType" : "GetRecordsResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"NextShardIterator" : {
"documentation" : "The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.
",
"name" : "NextShardIterator",
"c2jName" : "NextShardIterator",
"c2jShape" : "ShardIterator",
"variable" : {
"variableName" : "nextShardIterator",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nextShardIterator",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextShardIterator",
"marshallLocationName" : "NextShardIterator",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.
\n@param nextShardIterator The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.*/",
"getterDocumentation" : "/**The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.
\n@return The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.*/",
"fluentSetterDocumentation" : "/**The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.
\n@param nextShardIterator The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.
\n@param nextShardIterator The next position in the shard from which to start sequentially reading stream records. If set to null
, the shard has been closed and the requested iterator will not return any more data.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Records" : {
"documentation" : "The stream records from the shard, which were retrieved using the shard iterator.
",
"name" : "Records",
"c2jName" : "Records",
"c2jShape" : "RecordList",
"variable" : {
"variableName" : "records",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "The stream records from the shard, which were retrieved using the shard iterator.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "records",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Records",
"marshallLocationName" : "Records",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Record",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Record",
"variable" : {
"variableName" : "member",
"variableType" : "Record",
"variableDeclarationType" : "Record",
"documentation" : "",
"simpleType" : "Record",
"variableSetterType" : "Record"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Record",
"variableDeclarationType" : "Record",
"documentation" : "",
"simpleType" : "Record",
"variableSetterType" : "Record"
},
"getterModel" : {
"returnType" : "Record",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "Record",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The stream records from the shard, which were retrieved using the shard iterator.
\n@param records The stream records from the shard, which were retrieved using the shard iterator.*/",
"getterDocumentation" : "/**The stream records from the shard, which were retrieved using the shard iterator.
\n@return The stream records from the shard, which were retrieved using the shard iterator.*/",
"fluentSetterDocumentation" : "/**The stream records from the shard, which were retrieved using the shard iterator.
\n@param records The stream records from the shard, which were retrieved using the shard iterator.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The stream records from the shard, which were retrieved using the shard iterator.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setRecords(java.util.Collection)} or {@link #withRecords(java.util.Collection)} if you want to override the existing values.
\n@param records The stream records from the shard, which were retrieved using the shard iterator.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"KeyType" : {
"c2jName" : "KeyType",
"documentation" : "",
"shapeName" : "KeyType",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "HASH",
"value" : "HASH"
}, {
"name" : "RANGE",
"value" : "RANGE"
} ],
"variable" : {
"variableName" : "keyType",
"variableType" : "KeyType",
"variableDeclarationType" : "KeyType",
"documentation" : null,
"simpleType" : "KeyType",
"variableSetterType" : "KeyType"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : true,
"skipGeneratingMarshaller" : true,
"skipGeneratingUnmarshaller" : true
},
"membersAsMap" : { }
},
"TrimmedDataAccessException" : {
"c2jName" : "TrimmedDataAccessException",
"documentation" : "The operation attempted to read past the oldest stream record in a shard.
In DynamoDB Streams, there is a 24 hour limit on data retention. Stream records whose age exceeds this limit are subject to removal (trimming) from the stream. You might receive a TrimmedDataAccessException if:
You request a shard iterator with a sequence number older than the trim point (24 hours).
You obtain a shard iterator, but before you use the iterator in a GetRecords request, a stream record in the shard exceeds the 24 hour period and is trimmed. This causes the iterator to access a record that no longer exists.
",
"shapeName" : "TrimmedDataAccessException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ ],
"enums" : null,
"variable" : {
"variableName" : "trimmedDataAccessException",
"variableType" : "TrimmedDataAccessException",
"variableDeclarationType" : "TrimmedDataAccessException",
"documentation" : null,
"simpleType" : "TrimmedDataAccessException",
"variableSetterType" : "TrimmedDataAccessException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "TrimmedDataAccessException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"StreamViewType" : {
"c2jName" : "StreamViewType",
"documentation" : "",
"shapeName" : "StreamViewType",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "NEW_IMAGE",
"value" : "NEW_IMAGE"
}, {
"name" : "OLD_IMAGE",
"value" : "OLD_IMAGE"
}, {
"name" : "NEW_AND_OLD_IMAGES",
"value" : "NEW_AND_OLD_IMAGES"
}, {
"name" : "KEYS_ONLY",
"value" : "KEYS_ONLY"
} ],
"variable" : {
"variableName" : "streamViewType",
"variableType" : "StreamViewType",
"variableDeclarationType" : "StreamViewType",
"documentation" : null,
"simpleType" : "StreamViewType",
"variableSetterType" : "StreamViewType"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : true,
"skipGeneratingMarshaller" : true,
"skipGeneratingUnmarshaller" : true
},
"membersAsMap" : { }
},
"StreamStatus" : {
"c2jName" : "StreamStatus",
"documentation" : "",
"shapeName" : "StreamStatus",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "ENABLING",
"value" : "ENABLING"
}, {
"name" : "ENABLED",
"value" : "ENABLED"
}, {
"name" : "DISABLING",
"value" : "DISABLING"
}, {
"name" : "DISABLED",
"value" : "DISABLED"
} ],
"variable" : {
"variableName" : "streamStatus",
"variableType" : "StreamStatus",
"variableDeclarationType" : "StreamStatus",
"documentation" : null,
"simpleType" : "StreamStatus",
"variableSetterType" : "StreamStatus"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"ListStreamsRequest" : {
"c2jName" : "ListStreamsInput",
"documentation" : "Represents the input of a ListStreams operation.
",
"shapeName" : "ListStreamsRequest",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "If this parameter is provided, then only the streams associated with this table name are returned.
",
"name" : "TableName",
"c2jName" : "TableName",
"c2jShape" : "TableName",
"variable" : {
"variableName" : "tableName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "If this parameter is provided, then only the streams associated with this table name are returned.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "tableName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "TableName",
"marshallLocationName" : "TableName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**If this parameter is provided, then only the streams associated with this table name are returned.
\n@param tableName If this parameter is provided, then only the streams associated with this table name are returned.*/",
"getterDocumentation" : "/**If this parameter is provided, then only the streams associated with this table name are returned.
\n@return If this parameter is provided, then only the streams associated with this table name are returned.*/",
"fluentSetterDocumentation" : "/**If this parameter is provided, then only the streams associated with this table name are returned.
\n@param tableName If this parameter is provided, then only the streams associated with this table name are returned.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**If this parameter is provided, then only the streams associated with this table name are returned.
\n@param tableName If this parameter is provided, then only the streams associated with this table name are returned.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The maximum number of streams to return. The upper limit is 100.
",
"name" : "Limit",
"c2jName" : "Limit",
"c2jShape" : "PositiveIntegerObject",
"variable" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of streams to return. The upper limit is 100.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Limit",
"marshallLocationName" : "Limit",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The maximum number of streams to return. The upper limit is 100.
\n@param limit The maximum number of streams to return. The upper limit is 100.*/",
"getterDocumentation" : "/**The maximum number of streams to return. The upper limit is 100.
\n@return The maximum number of streams to return. The upper limit is 100.*/",
"fluentSetterDocumentation" : "/**The maximum number of streams to return. The upper limit is 100.
\n@param limit The maximum number of streams to return. The upper limit is 100.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of streams to return. The upper limit is 100.
\n@param limit The maximum number of streams to return. The upper limit is 100.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.
",
"name" : "ExclusiveStartStreamArn",
"c2jName" : "ExclusiveStartStreamArn",
"c2jShape" : "StreamArn",
"variable" : {
"variableName" : "exclusiveStartStreamArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "exclusiveStartStreamArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ExclusiveStartStreamArn",
"marshallLocationName" : "ExclusiveStartStreamArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.
\n@param exclusiveStartStreamArn The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.*/",
"getterDocumentation" : "/**The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.
\n@return The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.*/",
"fluentSetterDocumentation" : "/**The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.
\n@param exclusiveStartStreamArn The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.
\n@param exclusiveStartStreamArn The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listStreamsRequest",
"variableType" : "ListStreamsRequest",
"variableDeclarationType" : "ListStreamsRequest",
"documentation" : null,
"simpleType" : "ListStreamsRequest",
"variableSetterType" : "ListStreamsRequest"
},
"marshaller" : {
"action" : "ListStreams",
"verb" : "POST",
"target" : "DynamoDBStreams_20120810.ListStreams",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"TableName" : {
"documentation" : "If this parameter is provided, then only the streams associated with this table name are returned.
",
"name" : "TableName",
"c2jName" : "TableName",
"c2jShape" : "TableName",
"variable" : {
"variableName" : "tableName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "If this parameter is provided, then only the streams associated with this table name are returned.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "tableName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "TableName",
"marshallLocationName" : "TableName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**If this parameter is provided, then only the streams associated with this table name are returned.
\n@param tableName If this parameter is provided, then only the streams associated with this table name are returned.*/",
"getterDocumentation" : "/**If this parameter is provided, then only the streams associated with this table name are returned.
\n@return If this parameter is provided, then only the streams associated with this table name are returned.*/",
"fluentSetterDocumentation" : "/**If this parameter is provided, then only the streams associated with this table name are returned.
\n@param tableName If this parameter is provided, then only the streams associated with this table name are returned.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**If this parameter is provided, then only the streams associated with this table name are returned.
\n@param tableName If this parameter is provided, then only the streams associated with this table name are returned.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ExclusiveStartStreamArn" : {
"documentation" : "The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.
",
"name" : "ExclusiveStartStreamArn",
"c2jName" : "ExclusiveStartStreamArn",
"c2jShape" : "StreamArn",
"variable" : {
"variableName" : "exclusiveStartStreamArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "exclusiveStartStreamArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ExclusiveStartStreamArn",
"marshallLocationName" : "ExclusiveStartStreamArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.
\n@param exclusiveStartStreamArn The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.*/",
"getterDocumentation" : "/**The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.
\n@return The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.*/",
"fluentSetterDocumentation" : "/**The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.
\n@param exclusiveStartStreamArn The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.
\n@param exclusiveStartStreamArn The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn
in the previous operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Limit" : {
"documentation" : "The maximum number of streams to return. The upper limit is 100.
",
"name" : "Limit",
"c2jName" : "Limit",
"c2jShape" : "PositiveIntegerObject",
"variable" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of streams to return. The upper limit is 100.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Limit",
"marshallLocationName" : "Limit",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The maximum number of streams to return. The upper limit is 100.
\n@param limit The maximum number of streams to return. The upper limit is 100.*/",
"getterDocumentation" : "/**The maximum number of streams to return. The upper limit is 100.
\n@return The maximum number of streams to return. The upper limit is 100.*/",
"fluentSetterDocumentation" : "/**The maximum number of streams to return. The upper limit is 100.
\n@param limit The maximum number of streams to return. The upper limit is 100.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of streams to return. The upper limit is 100.
\n@param limit The maximum number of streams to return. The upper limit is 100.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DescribeStreamRequest" : {
"c2jName" : "DescribeStreamInput",
"documentation" : "Represents the input of a DescribeStream operation.
",
"shapeName" : "DescribeStreamRequest",
"deprecated" : false,
"required" : [ "StreamArn" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The Amazon Resource Name (ARN) for the stream.
",
"name" : "StreamArn",
"c2jName" : "StreamArn",
"c2jShape" : "StreamArn",
"variable" : {
"variableName" : "streamArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) for the stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamArn",
"marshallLocationName" : "StreamArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) for the stream.
\n@param streamArn The Amazon Resource Name (ARN) for the stream.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) for the stream.
\n@return The Amazon Resource Name (ARN) for the stream.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) for the stream.
\n@param streamArn The Amazon Resource Name (ARN) for the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) for the stream.
\n@param streamArn The Amazon Resource Name (ARN) for the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The maximum number of shard objects to return. The upper limit is 100.
",
"name" : "Limit",
"c2jName" : "Limit",
"c2jShape" : "PositiveIntegerObject",
"variable" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of shard objects to return. The upper limit is 100.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Limit",
"marshallLocationName" : "Limit",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The maximum number of shard objects to return. The upper limit is 100.
\n@param limit The maximum number of shard objects to return. The upper limit is 100.*/",
"getterDocumentation" : "/**The maximum number of shard objects to return. The upper limit is 100.
\n@return The maximum number of shard objects to return. The upper limit is 100.*/",
"fluentSetterDocumentation" : "/**The maximum number of shard objects to return. The upper limit is 100.
\n@param limit The maximum number of shard objects to return. The upper limit is 100.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of shard objects to return. The upper limit is 100.
\n@param limit The maximum number of shard objects to return. The upper limit is 100.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.
",
"name" : "ExclusiveStartShardId",
"c2jName" : "ExclusiveStartShardId",
"c2jShape" : "ShardId",
"variable" : {
"variableName" : "exclusiveStartShardId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "exclusiveStartShardId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ExclusiveStartShardId",
"marshallLocationName" : "ExclusiveStartShardId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.
\n@param exclusiveStartShardId The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.*/",
"getterDocumentation" : "/**The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.
\n@return The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.*/",
"fluentSetterDocumentation" : "/**The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.
\n@param exclusiveStartShardId The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.
\n@param exclusiveStartShardId The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "describeStreamRequest",
"variableType" : "DescribeStreamRequest",
"variableDeclarationType" : "DescribeStreamRequest",
"documentation" : null,
"simpleType" : "DescribeStreamRequest",
"variableSetterType" : "DescribeStreamRequest"
},
"marshaller" : {
"action" : "DescribeStream",
"verb" : "POST",
"target" : "DynamoDBStreams_20120810.DescribeStream",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ExclusiveStartShardId" : {
"documentation" : "The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.
",
"name" : "ExclusiveStartShardId",
"c2jName" : "ExclusiveStartShardId",
"c2jShape" : "ShardId",
"variable" : {
"variableName" : "exclusiveStartShardId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "exclusiveStartShardId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ExclusiveStartShardId",
"marshallLocationName" : "ExclusiveStartShardId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.
\n@param exclusiveStartShardId The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.*/",
"getterDocumentation" : "/**The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.
\n@return The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.*/",
"fluentSetterDocumentation" : "/**The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.
\n@param exclusiveStartShardId The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.
\n@param exclusiveStartShardId The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId
in the previous operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Limit" : {
"documentation" : "The maximum number of shard objects to return. The upper limit is 100.
",
"name" : "Limit",
"c2jName" : "Limit",
"c2jShape" : "PositiveIntegerObject",
"variable" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of shard objects to return. The upper limit is 100.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Limit",
"marshallLocationName" : "Limit",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The maximum number of shard objects to return. The upper limit is 100.
\n@param limit The maximum number of shard objects to return. The upper limit is 100.*/",
"getterDocumentation" : "/**The maximum number of shard objects to return. The upper limit is 100.
\n@return The maximum number of shard objects to return. The upper limit is 100.*/",
"fluentSetterDocumentation" : "/**The maximum number of shard objects to return. The upper limit is 100.
\n@param limit The maximum number of shard objects to return. The upper limit is 100.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of shard objects to return. The upper limit is 100.
\n@param limit The maximum number of shard objects to return. The upper limit is 100.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"StreamArn" : {
"documentation" : "The Amazon Resource Name (ARN) for the stream.
",
"name" : "StreamArn",
"c2jName" : "StreamArn",
"c2jShape" : "StreamArn",
"variable" : {
"variableName" : "streamArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) for the stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamArn",
"marshallLocationName" : "StreamArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) for the stream.
\n@param streamArn The Amazon Resource Name (ARN) for the stream.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) for the stream.
\n@return The Amazon Resource Name (ARN) for the stream.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) for the stream.
\n@param streamArn The Amazon Resource Name (ARN) for the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) for the stream.
\n@param streamArn The Amazon Resource Name (ARN) for the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"GetRecordsRequest" : {
"c2jName" : "GetRecordsInput",
"documentation" : "Represents the input of a GetRecords operation.
",
"shapeName" : "GetRecordsRequest",
"deprecated" : false,
"required" : [ "ShardIterator" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
",
"name" : "ShardIterator",
"c2jName" : "ShardIterator",
"c2jShape" : "ShardIterator",
"variable" : {
"variableName" : "shardIterator",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "shardIterator",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ShardIterator",
"marshallLocationName" : "ShardIterator",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
\n@param shardIterator A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.*/",
"getterDocumentation" : "/**A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
\n@return A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.*/",
"fluentSetterDocumentation" : "/**A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
\n@param shardIterator A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
\n@param shardIterator A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The maximum number of records to return from the shard. The upper limit is 1000.
",
"name" : "Limit",
"c2jName" : "Limit",
"c2jShape" : "PositiveIntegerObject",
"variable" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of records to return from the shard. The upper limit is 1000.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Limit",
"marshallLocationName" : "Limit",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The maximum number of records to return from the shard. The upper limit is 1000.
\n@param limit The maximum number of records to return from the shard. The upper limit is 1000.*/",
"getterDocumentation" : "/**The maximum number of records to return from the shard. The upper limit is 1000.
\n@return The maximum number of records to return from the shard. The upper limit is 1000.*/",
"fluentSetterDocumentation" : "/**The maximum number of records to return from the shard. The upper limit is 1000.
\n@param limit The maximum number of records to return from the shard. The upper limit is 1000.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of records to return from the shard. The upper limit is 1000.
\n@param limit The maximum number of records to return from the shard. The upper limit is 1000.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getRecordsRequest",
"variableType" : "GetRecordsRequest",
"variableDeclarationType" : "GetRecordsRequest",
"documentation" : null,
"simpleType" : "GetRecordsRequest",
"variableSetterType" : "GetRecordsRequest"
},
"marshaller" : {
"action" : "GetRecords",
"verb" : "POST",
"target" : "DynamoDBStreams_20120810.GetRecords",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ShardIterator" : {
"documentation" : "A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
",
"name" : "ShardIterator",
"c2jName" : "ShardIterator",
"c2jShape" : "ShardIterator",
"variable" : {
"variableName" : "shardIterator",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "shardIterator",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ShardIterator",
"marshallLocationName" : "ShardIterator",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
\n@param shardIterator A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.*/",
"getterDocumentation" : "/**A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
\n@return A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.*/",
"fluentSetterDocumentation" : "/**A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
\n@param shardIterator A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
\n@param shardIterator A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Limit" : {
"documentation" : "The maximum number of records to return from the shard. The upper limit is 1000.
",
"name" : "Limit",
"c2jName" : "Limit",
"c2jShape" : "PositiveIntegerObject",
"variable" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of records to return from the shard. The upper limit is 1000.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Limit",
"marshallLocationName" : "Limit",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The maximum number of records to return from the shard. The upper limit is 1000.
\n@param limit The maximum number of records to return from the shard. The upper limit is 1000.*/",
"getterDocumentation" : "/**The maximum number of records to return from the shard. The upper limit is 1000.
\n@return The maximum number of records to return from the shard. The upper limit is 1000.*/",
"fluentSetterDocumentation" : "/**The maximum number of records to return from the shard. The upper limit is 1000.
\n@param limit The maximum number of records to return from the shard. The upper limit is 1000.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of records to return from the shard. The upper limit is 1000.
\n@param limit The maximum number of records to return from the shard. The upper limit is 1000.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListStreamsResult" : {
"c2jName" : "ListStreamsOutput",
"documentation" : "Represents the output of a ListStreams operation.
",
"shapeName" : "ListStreamsResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A list of stream descriptors associated with the current account and endpoint.
",
"name" : "Streams",
"c2jName" : "Streams",
"c2jShape" : "StreamList",
"variable" : {
"variableName" : "streams",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "A list of stream descriptors associated with the current account and endpoint.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "streams",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Streams",
"marshallLocationName" : "Streams",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Stream",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Stream",
"variable" : {
"variableName" : "member",
"variableType" : "Stream",
"variableDeclarationType" : "Stream",
"documentation" : "",
"simpleType" : "Stream",
"variableSetterType" : "Stream"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Stream",
"variableDeclarationType" : "Stream",
"documentation" : "",
"simpleType" : "Stream",
"variableSetterType" : "Stream"
},
"getterModel" : {
"returnType" : "Stream",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "Stream",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of stream descriptors associated with the current account and endpoint.
\n@param streams A list of stream descriptors associated with the current account and endpoint.*/",
"getterDocumentation" : "/**A list of stream descriptors associated with the current account and endpoint.
\n@return A list of stream descriptors associated with the current account and endpoint.*/",
"fluentSetterDocumentation" : "/**A list of stream descriptors associated with the current account and endpoint.
\n@param streams A list of stream descriptors associated with the current account and endpoint.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of stream descriptors associated with the current account and endpoint.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setStreams(java.util.Collection)} or {@link #withStreams(java.util.Collection)} if you want to override the existing values.
\n@param streams A list of stream descriptors associated with the current account and endpoint.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.
If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.
",
"name" : "LastEvaluatedStreamArn",
"c2jName" : "LastEvaluatedStreamArn",
"c2jShape" : "StreamArn",
"variable" : {
"variableName" : "lastEvaluatedStreamArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.
If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastEvaluatedStreamArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastEvaluatedStreamArn",
"marshallLocationName" : "LastEvaluatedStreamArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.
If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.
\n@param lastEvaluatedStreamArn The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request. If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.*/",
"getterDocumentation" : "/**
The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.
If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.
\n@return The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request. If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.*/",
"fluentSetterDocumentation" : "/**
The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.
If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.
\n@param lastEvaluatedStreamArn The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request. If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.
If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.
\n@param lastEvaluatedStreamArn The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request. If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listStreamsResult",
"variableType" : "ListStreamsResult",
"variableDeclarationType" : "ListStreamsResult",
"documentation" : null,
"simpleType" : "ListStreamsResult",
"variableSetterType" : "ListStreamsResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"LastEvaluatedStreamArn" : {
"documentation" : "
The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.
If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.
",
"name" : "LastEvaluatedStreamArn",
"c2jName" : "LastEvaluatedStreamArn",
"c2jShape" : "StreamArn",
"variable" : {
"variableName" : "lastEvaluatedStreamArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.
If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastEvaluatedStreamArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastEvaluatedStreamArn",
"marshallLocationName" : "LastEvaluatedStreamArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.
If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.
\n@param lastEvaluatedStreamArn The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request. If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.*/",
"getterDocumentation" : "/**
The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.
If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.
\n@return The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request. If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.*/",
"fluentSetterDocumentation" : "/**
The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.
If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.
\n@param lastEvaluatedStreamArn The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request. If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.
If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.
\n@param lastEvaluatedStreamArn The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request. If LastEvaluatedStreamArn
is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Streams" : {
"documentation" : "
A list of stream descriptors associated with the current account and endpoint.
",
"name" : "Streams",
"c2jName" : "Streams",
"c2jShape" : "StreamList",
"variable" : {
"variableName" : "streams",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "A list of stream descriptors associated with the current account and endpoint.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "streams",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Streams",
"marshallLocationName" : "Streams",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Stream",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Stream",
"variable" : {
"variableName" : "member",
"variableType" : "Stream",
"variableDeclarationType" : "Stream",
"documentation" : "",
"simpleType" : "Stream",
"variableSetterType" : "Stream"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Stream",
"variableDeclarationType" : "Stream",
"documentation" : "",
"simpleType" : "Stream",
"variableSetterType" : "Stream"
},
"getterModel" : {
"returnType" : "Stream",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : false,
"map" : false,
"simpleType" : "Stream",
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of stream descriptors associated with the current account and endpoint.
\n@param streams A list of stream descriptors associated with the current account and endpoint.*/",
"getterDocumentation" : "/**A list of stream descriptors associated with the current account and endpoint.
\n@return A list of stream descriptors associated with the current account and endpoint.*/",
"fluentSetterDocumentation" : "/**A list of stream descriptors associated with the current account and endpoint.
\n@param streams A list of stream descriptors associated with the current account and endpoint.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of stream descriptors associated with the current account and endpoint.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setStreams(java.util.Collection)} or {@link #withStreams(java.util.Collection)} if you want to override the existing values.
\n@param streams A list of stream descriptors associated with the current account and endpoint.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"GetShardIteratorResult" : {
"c2jName" : "GetShardIteratorOutput",
"documentation" : "Represents the output of a GetShardIterator operation.
",
"shapeName" : "GetShardIteratorResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.
",
"name" : "ShardIterator",
"c2jName" : "ShardIterator",
"c2jShape" : "ShardIterator",
"variable" : {
"variableName" : "shardIterator",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "shardIterator",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ShardIterator",
"marshallLocationName" : "ShardIterator",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.
\n@param shardIterator The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.*/",
"getterDocumentation" : "/**The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.
\n@return The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.*/",
"fluentSetterDocumentation" : "/**The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.
\n@param shardIterator The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.
\n@param shardIterator The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getShardIteratorResult",
"variableType" : "GetShardIteratorResult",
"variableDeclarationType" : "GetShardIteratorResult",
"documentation" : null,
"simpleType" : "GetShardIteratorResult",
"variableSetterType" : "GetShardIteratorResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ShardIterator" : {
"documentation" : "The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.
",
"name" : "ShardIterator",
"c2jName" : "ShardIterator",
"c2jShape" : "ShardIterator",
"variable" : {
"variableName" : "shardIterator",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "shardIterator",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ShardIterator",
"marshallLocationName" : "ShardIterator",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.
\n@param shardIterator The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.*/",
"getterDocumentation" : "/**The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.
\n@return The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.*/",
"fluentSetterDocumentation" : "/**The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.
\n@param shardIterator The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.
\n@param shardIterator The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"Record" : {
"c2jName" : "Record",
"documentation" : "A description of a unique event within a stream.
",
"shapeName" : "Record",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A globally unique identifier for the event that was recorded in this stream record.
",
"name" : "EventID",
"c2jName" : "eventID",
"c2jShape" : "String",
"variable" : {
"variableName" : "eventID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A globally unique identifier for the event that was recorded in this stream record.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "eventID",
"marshallLocationName" : "eventID",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A globally unique identifier for the event that was recorded in this stream record.
\n@param eventID A globally unique identifier for the event that was recorded in this stream record.*/",
"getterDocumentation" : "/**A globally unique identifier for the event that was recorded in this stream record.
\n@return A globally unique identifier for the event that was recorded in this stream record.*/",
"fluentSetterDocumentation" : "/**A globally unique identifier for the event that was recorded in this stream record.
\n@param eventID A globally unique identifier for the event that was recorded in this stream record.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A globally unique identifier for the event that was recorded in this stream record.
\n@param eventID A globally unique identifier for the event that was recorded in this stream record.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The type of data modification that was performed on the DynamoDB table:
-
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
",
"name" : "EventName",
"c2jName" : "eventName",
"c2jShape" : "OperationType",
"variable" : {
"variableName" : "eventName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The type of data modification that was performed on the DynamoDB table:
-
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "eventName",
"marshallLocationName" : "eventName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "OperationType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The type of data modification that was performed on the DynamoDB table:
-
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
\n@param eventName The type of data modification that was performed on the DynamoDB table: -
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
\n@see OperationType*/",
"getterDocumentation" : "/**The type of data modification that was performed on the DynamoDB table:
-
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
\n@return The type of data modification that was performed on the DynamoDB table: -
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
\n@see OperationType*/",
"fluentSetterDocumentation" : "/**The type of data modification that was performed on the DynamoDB table:
-
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
\n@param eventName The type of data modification that was performed on the DynamoDB table: -
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
\n@return Returns a reference to this object so that method calls can be chained together.\n@see OperationType*/",
"varargSetterDocumentation" : "/**The type of data modification that was performed on the DynamoDB table:
-
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
\n@param eventName The type of data modification that was performed on the DynamoDB table: -
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
\n@return Returns a reference to this object so that method calls can be chained together.\n@see OperationType*/"
}, {
"documentation" : "The version number of the stream record format. This number is updated whenever the structure of Record is modified.
Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.
",
"name" : "EventVersion",
"c2jName" : "eventVersion",
"c2jShape" : "String",
"variable" : {
"variableName" : "eventVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The version number of the stream record format. This number is updated whenever the structure of Record is modified.
Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "eventVersion",
"marshallLocationName" : "eventVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version number of the stream record format. This number is updated whenever the structure of Record is modified.
Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.
\n@param eventVersion The version number of the stream record format. This number is updated whenever the structure of Record is modified. Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.*/",
"getterDocumentation" : "/**
The version number of the stream record format. This number is updated whenever the structure of Record is modified.
Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.
\n@return The version number of the stream record format. This number is updated whenever the structure of Record is modified. Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.*/",
"fluentSetterDocumentation" : "/**
The version number of the stream record format. This number is updated whenever the structure of Record is modified.
Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.
\n@param eventVersion The version number of the stream record format. This number is updated whenever the structure of Record is modified. Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
The version number of the stream record format. This number is updated whenever the structure of Record is modified.
Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.
\n@param eventVersion The version number of the stream record format. This number is updated whenever the structure of Record is modified. Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "
The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.
",
"name" : "EventSource",
"c2jName" : "eventSource",
"c2jShape" : "String",
"variable" : {
"variableName" : "eventSource",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventSource",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "eventSource",
"marshallLocationName" : "eventSource",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.
\n@param eventSource The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.*/",
"getterDocumentation" : "/**The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.
\n@return The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.*/",
"fluentSetterDocumentation" : "/**The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.
\n@param eventSource The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.
\n@param eventSource The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The region in which the GetRecords request was received.
",
"name" : "AwsRegion",
"c2jName" : "awsRegion",
"c2jShape" : "String",
"variable" : {
"variableName" : "awsRegion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The region in which the GetRecords request was received.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "awsRegion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "awsRegion",
"marshallLocationName" : "awsRegion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The region in which the GetRecords request was received.
\n@param awsRegion The region in which the GetRecords request was received.*/",
"getterDocumentation" : "/**The region in which the GetRecords request was received.
\n@return The region in which the GetRecords request was received.*/",
"fluentSetterDocumentation" : "/**The region in which the GetRecords request was received.
\n@param awsRegion The region in which the GetRecords request was received.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The region in which the GetRecords request was received.
\n@param awsRegion The region in which the GetRecords request was received.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The main body of the stream record, containing all of the DynamoDB-specific fields.
",
"name" : "Dynamodb",
"c2jName" : "dynamodb",
"c2jShape" : "StreamRecord",
"variable" : {
"variableName" : "dynamodb",
"variableType" : "StreamRecord",
"variableDeclarationType" : "StreamRecord",
"documentation" : "The main body of the stream record, containing all of the DynamoDB-specific fields.
",
"simpleType" : "StreamRecord",
"variableSetterType" : "StreamRecord"
},
"setterModel" : {
"variableName" : "dynamodb",
"variableType" : "StreamRecord",
"variableDeclarationType" : "StreamRecord",
"documentation" : "",
"simpleType" : "StreamRecord",
"variableSetterType" : "StreamRecord"
},
"getterModel" : {
"returnType" : "StreamRecord",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "dynamodb",
"marshallLocationName" : "dynamodb",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The main body of the stream record, containing all of the DynamoDB-specific fields.
\n@param dynamodb The main body of the stream record, containing all of the DynamoDB-specific fields.*/",
"getterDocumentation" : "/**The main body of the stream record, containing all of the DynamoDB-specific fields.
\n@return The main body of the stream record, containing all of the DynamoDB-specific fields.*/",
"fluentSetterDocumentation" : "/**The main body of the stream record, containing all of the DynamoDB-specific fields.
\n@param dynamodb The main body of the stream record, containing all of the DynamoDB-specific fields.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The main body of the stream record, containing all of the DynamoDB-specific fields.
\n@param dynamodb The main body of the stream record, containing all of the DynamoDB-specific fields.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "record",
"variableType" : "Record",
"variableDeclarationType" : "Record",
"documentation" : null,
"simpleType" : "Record",
"variableSetterType" : "Record"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"EventSource" : {
"documentation" : "The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.
",
"name" : "EventSource",
"c2jName" : "eventSource",
"c2jShape" : "String",
"variable" : {
"variableName" : "eventSource",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventSource",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "eventSource",
"marshallLocationName" : "eventSource",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.
\n@param eventSource The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.*/",
"getterDocumentation" : "/**The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.
\n@return The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.*/",
"fluentSetterDocumentation" : "/**The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.
\n@param eventSource The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.
\n@param eventSource The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"AwsRegion" : {
"documentation" : "The region in which the GetRecords request was received.
",
"name" : "AwsRegion",
"c2jName" : "awsRegion",
"c2jShape" : "String",
"variable" : {
"variableName" : "awsRegion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The region in which the GetRecords request was received.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "awsRegion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "awsRegion",
"marshallLocationName" : "awsRegion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The region in which the GetRecords request was received.
\n@param awsRegion The region in which the GetRecords request was received.*/",
"getterDocumentation" : "/**The region in which the GetRecords request was received.
\n@return The region in which the GetRecords request was received.*/",
"fluentSetterDocumentation" : "/**The region in which the GetRecords request was received.
\n@param awsRegion The region in which the GetRecords request was received.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The region in which the GetRecords request was received.
\n@param awsRegion The region in which the GetRecords request was received.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"EventID" : {
"documentation" : "A globally unique identifier for the event that was recorded in this stream record.
",
"name" : "EventID",
"c2jName" : "eventID",
"c2jShape" : "String",
"variable" : {
"variableName" : "eventID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A globally unique identifier for the event that was recorded in this stream record.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "eventID",
"marshallLocationName" : "eventID",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A globally unique identifier for the event that was recorded in this stream record.
\n@param eventID A globally unique identifier for the event that was recorded in this stream record.*/",
"getterDocumentation" : "/**A globally unique identifier for the event that was recorded in this stream record.
\n@return A globally unique identifier for the event that was recorded in this stream record.*/",
"fluentSetterDocumentation" : "/**A globally unique identifier for the event that was recorded in this stream record.
\n@param eventID A globally unique identifier for the event that was recorded in this stream record.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A globally unique identifier for the event that was recorded in this stream record.
\n@param eventID A globally unique identifier for the event that was recorded in this stream record.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Dynamodb" : {
"documentation" : "The main body of the stream record, containing all of the DynamoDB-specific fields.
",
"name" : "Dynamodb",
"c2jName" : "dynamodb",
"c2jShape" : "StreamRecord",
"variable" : {
"variableName" : "dynamodb",
"variableType" : "StreamRecord",
"variableDeclarationType" : "StreamRecord",
"documentation" : "The main body of the stream record, containing all of the DynamoDB-specific fields.
",
"simpleType" : "StreamRecord",
"variableSetterType" : "StreamRecord"
},
"setterModel" : {
"variableName" : "dynamodb",
"variableType" : "StreamRecord",
"variableDeclarationType" : "StreamRecord",
"documentation" : "",
"simpleType" : "StreamRecord",
"variableSetterType" : "StreamRecord"
},
"getterModel" : {
"returnType" : "StreamRecord",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "dynamodb",
"marshallLocationName" : "dynamodb",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The main body of the stream record, containing all of the DynamoDB-specific fields.
\n@param dynamodb The main body of the stream record, containing all of the DynamoDB-specific fields.*/",
"getterDocumentation" : "/**The main body of the stream record, containing all of the DynamoDB-specific fields.
\n@return The main body of the stream record, containing all of the DynamoDB-specific fields.*/",
"fluentSetterDocumentation" : "/**The main body of the stream record, containing all of the DynamoDB-specific fields.
\n@param dynamodb The main body of the stream record, containing all of the DynamoDB-specific fields.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The main body of the stream record, containing all of the DynamoDB-specific fields.
\n@param dynamodb The main body of the stream record, containing all of the DynamoDB-specific fields.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"EventName" : {
"documentation" : "The type of data modification that was performed on the DynamoDB table:
-
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
",
"name" : "EventName",
"c2jName" : "eventName",
"c2jShape" : "OperationType",
"variable" : {
"variableName" : "eventName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The type of data modification that was performed on the DynamoDB table:
-
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "eventName",
"marshallLocationName" : "eventName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "OperationType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The type of data modification that was performed on the DynamoDB table:
-
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
\n@param eventName The type of data modification that was performed on the DynamoDB table: -
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
\n@see OperationType*/",
"getterDocumentation" : "/**The type of data modification that was performed on the DynamoDB table:
-
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
\n@return The type of data modification that was performed on the DynamoDB table: -
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
\n@see OperationType*/",
"fluentSetterDocumentation" : "/**The type of data modification that was performed on the DynamoDB table:
-
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
\n@param eventName The type of data modification that was performed on the DynamoDB table: -
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
\n@return Returns a reference to this object so that method calls can be chained together.\n@see OperationType*/",
"varargSetterDocumentation" : "/**The type of data modification that was performed on the DynamoDB table:
-
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
\n@param eventName The type of data modification that was performed on the DynamoDB table: -
INSERT
- a new item was added to the table.
-
MODIFY
- one or more of an existing item's attributes were modified.
-
REMOVE
- the item was deleted from the table
\n@return Returns a reference to this object so that method calls can be chained together.\n@see OperationType*/"
},
"EventVersion" : {
"documentation" : "The version number of the stream record format. This number is updated whenever the structure of Record is modified.
Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.
",
"name" : "EventVersion",
"c2jName" : "eventVersion",
"c2jShape" : "String",
"variable" : {
"variableName" : "eventVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The version number of the stream record format. This number is updated whenever the structure of Record is modified.
Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "eventVersion",
"marshallLocationName" : "eventVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version number of the stream record format. This number is updated whenever the structure of Record is modified.
Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.
\n@param eventVersion The version number of the stream record format. This number is updated whenever the structure of Record is modified. Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.*/",
"getterDocumentation" : "/**
The version number of the stream record format. This number is updated whenever the structure of Record is modified.
Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.
\n@return The version number of the stream record format. This number is updated whenever the structure of Record is modified. Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.*/",
"fluentSetterDocumentation" : "/**
The version number of the stream record format. This number is updated whenever the structure of Record is modified.
Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.
\n@param eventVersion The version number of the stream record format. This number is updated whenever the structure of Record is modified. Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
The version number of the stream record format. This number is updated whenever the structure of Record is modified.
Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.
\n@param eventVersion The version number of the stream record format. This number is updated whenever the structure of Record is modified. Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"Stream" : {
"c2jName" : "Stream",
"documentation" : "
Represents all of the data describing a particular stream.
",
"shapeName" : "Stream",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The Amazon Resource Name (ARN) for the stream.
",
"name" : "StreamArn",
"c2jName" : "StreamArn",
"c2jShape" : "StreamArn",
"variable" : {
"variableName" : "streamArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) for the stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamArn",
"marshallLocationName" : "StreamArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) for the stream.
\n@param streamArn The Amazon Resource Name (ARN) for the stream.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) for the stream.
\n@return The Amazon Resource Name (ARN) for the stream.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) for the stream.
\n@param streamArn The Amazon Resource Name (ARN) for the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) for the stream.
\n@param streamArn The Amazon Resource Name (ARN) for the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The DynamoDB table with which the stream is associated.
",
"name" : "TableName",
"c2jName" : "TableName",
"c2jShape" : "TableName",
"variable" : {
"variableName" : "tableName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The DynamoDB table with which the stream is associated.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "tableName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "TableName",
"marshallLocationName" : "TableName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The DynamoDB table with which the stream is associated.
\n@param tableName The DynamoDB table with which the stream is associated.*/",
"getterDocumentation" : "/**The DynamoDB table with which the stream is associated.
\n@return The DynamoDB table with which the stream is associated.*/",
"fluentSetterDocumentation" : "/**The DynamoDB table with which the stream is associated.
\n@param tableName The DynamoDB table with which the stream is associated.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The DynamoDB table with which the stream is associated.
\n@param tableName The DynamoDB table with which the stream is associated.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A timestamp, in ISO 8601 format, for this stream.
Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
",
"name" : "StreamLabel",
"c2jName" : "StreamLabel",
"c2jShape" : "String",
"variable" : {
"variableName" : "streamLabel",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A timestamp, in ISO 8601 format, for this stream.
Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamLabel",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamLabel",
"marshallLocationName" : "StreamLabel",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A timestamp, in ISO 8601 format, for this stream.
Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
\n@param streamLabel A timestamp, in ISO 8601 format, for this stream. Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
*/",
"getterDocumentation" : "/**A timestamp, in ISO 8601 format, for this stream.
Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
\n@return A timestamp, in ISO 8601 format, for this stream. Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
*/",
"fluentSetterDocumentation" : "/**A timestamp, in ISO 8601 format, for this stream.
Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
\n@param streamLabel A timestamp, in ISO 8601 format, for this stream. Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A timestamp, in ISO 8601 format, for this stream.
Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
\n@param streamLabel A timestamp, in ISO 8601 format, for this stream. Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "stream",
"variableType" : "Stream",
"variableDeclarationType" : "Stream",
"documentation" : null,
"simpleType" : "Stream",
"variableSetterType" : "Stream"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"TableName" : {
"documentation" : "The DynamoDB table with which the stream is associated.
",
"name" : "TableName",
"c2jName" : "TableName",
"c2jShape" : "TableName",
"variable" : {
"variableName" : "tableName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The DynamoDB table with which the stream is associated.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "tableName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "TableName",
"marshallLocationName" : "TableName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The DynamoDB table with which the stream is associated.
\n@param tableName The DynamoDB table with which the stream is associated.*/",
"getterDocumentation" : "/**The DynamoDB table with which the stream is associated.
\n@return The DynamoDB table with which the stream is associated.*/",
"fluentSetterDocumentation" : "/**The DynamoDB table with which the stream is associated.
\n@param tableName The DynamoDB table with which the stream is associated.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The DynamoDB table with which the stream is associated.
\n@param tableName The DynamoDB table with which the stream is associated.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"StreamLabel" : {
"documentation" : "A timestamp, in ISO 8601 format, for this stream.
Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
",
"name" : "StreamLabel",
"c2jName" : "StreamLabel",
"c2jShape" : "String",
"variable" : {
"variableName" : "streamLabel",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A timestamp, in ISO 8601 format, for this stream.
Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamLabel",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamLabel",
"marshallLocationName" : "StreamLabel",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A timestamp, in ISO 8601 format, for this stream.
Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
\n@param streamLabel A timestamp, in ISO 8601 format, for this stream. Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
*/",
"getterDocumentation" : "/**A timestamp, in ISO 8601 format, for this stream.
Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
\n@return A timestamp, in ISO 8601 format, for this stream. Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
*/",
"fluentSetterDocumentation" : "/**A timestamp, in ISO 8601 format, for this stream.
Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
\n@param streamLabel A timestamp, in ISO 8601 format, for this stream. Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A timestamp, in ISO 8601 format, for this stream.
Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
\n@param streamLabel A timestamp, in ISO 8601 format, for this stream. Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
the AWS customer ID.
-
the table name
-
the StreamLabel
\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"StreamArn" : {
"documentation" : "The Amazon Resource Name (ARN) for the stream.
",
"name" : "StreamArn",
"c2jName" : "StreamArn",
"c2jShape" : "StreamArn",
"variable" : {
"variableName" : "streamArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) for the stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamArn",
"marshallLocationName" : "StreamArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) for the stream.
\n@param streamArn The Amazon Resource Name (ARN) for the stream.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) for the stream.
\n@return The Amazon Resource Name (ARN) for the stream.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) for the stream.
\n@param streamArn The Amazon Resource Name (ARN) for the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) for the stream.
\n@param streamArn The Amazon Resource Name (ARN) for the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ResourceNotFoundException" : {
"c2jName" : "ResourceNotFoundException",
"documentation" : "The operation tried to access a nonexistent stream.
",
"shapeName" : "ResourceNotFoundException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ ],
"enums" : null,
"variable" : {
"variableName" : "resourceNotFoundException",
"variableType" : "ResourceNotFoundException",
"variableDeclarationType" : "ResourceNotFoundException",
"documentation" : null,
"simpleType" : "ResourceNotFoundException",
"variableSetterType" : "ResourceNotFoundException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "ResourceNotFoundException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : true,
"skipGeneratingMarshaller" : true,
"skipGeneratingUnmarshaller" : true
},
"membersAsMap" : { }
},
"KeySchemaElement" : {
"c2jName" : "KeySchemaElement",
"documentation" : "Represents a single element of a key schema. A key schema specifies the attributes that make up the primary key of a table, or the key attributes of an index.
A KeySchemaElement represents exactly one attribute of the primary key. For example, a simple primary key (partition key) would be represented by one KeySchemaElement. A composite primary key (partition key and sort key) would require one KeySchemaElement for the partition key, and another KeySchemaElement for the sort key.
The partition key of an item is also known as its hash attribute. The term \"hash attribute\" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values.
The sort key of an item is also known as its range attribute. The term \"range attribute\" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
",
"shapeName" : "KeySchemaElement",
"deprecated" : false,
"required" : [ "AttributeName", "KeyType" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of a key attribute.
",
"name" : "AttributeName",
"c2jName" : "AttributeName",
"c2jShape" : "KeySchemaAttributeName",
"variable" : {
"variableName" : "attributeName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of a key attribute.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "attributeName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AttributeName",
"marshallLocationName" : "AttributeName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of a key attribute.
\n@param attributeName The name of a key attribute.*/",
"getterDocumentation" : "/**The name of a key attribute.
\n@return The name of a key attribute.*/",
"fluentSetterDocumentation" : "/**The name of a key attribute.
\n@param attributeName The name of a key attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of a key attribute.
\n@param attributeName The name of a key attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The attribute data, consisting of the data type and the attribute value itself.
",
"name" : "KeyType",
"c2jName" : "KeyType",
"c2jShape" : "KeyType",
"variable" : {
"variableName" : "keyType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The attribute data, consisting of the data type and the attribute value itself.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "keyType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "KeyType",
"marshallLocationName" : "KeyType",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "KeyType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The attribute data, consisting of the data type and the attribute value itself.
\n@param keyType The attribute data, consisting of the data type and the attribute value itself.\n@see KeyType*/",
"getterDocumentation" : "/**The attribute data, consisting of the data type and the attribute value itself.
\n@return The attribute data, consisting of the data type and the attribute value itself.\n@see KeyType*/",
"fluentSetterDocumentation" : "/**The attribute data, consisting of the data type and the attribute value itself.
\n@param keyType The attribute data, consisting of the data type and the attribute value itself.\n@return Returns a reference to this object so that method calls can be chained together.\n@see KeyType*/",
"varargSetterDocumentation" : "/**The attribute data, consisting of the data type and the attribute value itself.
\n@param keyType The attribute data, consisting of the data type and the attribute value itself.\n@return Returns a reference to this object so that method calls can be chained together.\n@see KeyType*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "keySchemaElement",
"variableType" : "KeySchemaElement",
"variableDeclarationType" : "KeySchemaElement",
"documentation" : null,
"simpleType" : "KeySchemaElement",
"variableSetterType" : "KeySchemaElement"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : true,
"skipGeneratingMarshaller" : true,
"skipGeneratingUnmarshaller" : true
},
"membersAsMap" : {
"KeyType" : {
"documentation" : "The attribute data, consisting of the data type and the attribute value itself.
",
"name" : "KeyType",
"c2jName" : "KeyType",
"c2jShape" : "KeyType",
"variable" : {
"variableName" : "keyType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The attribute data, consisting of the data type and the attribute value itself.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "keyType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "KeyType",
"marshallLocationName" : "KeyType",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "KeyType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The attribute data, consisting of the data type and the attribute value itself.
\n@param keyType The attribute data, consisting of the data type and the attribute value itself.\n@see KeyType*/",
"getterDocumentation" : "/**The attribute data, consisting of the data type and the attribute value itself.
\n@return The attribute data, consisting of the data type and the attribute value itself.\n@see KeyType*/",
"fluentSetterDocumentation" : "/**The attribute data, consisting of the data type and the attribute value itself.
\n@param keyType The attribute data, consisting of the data type and the attribute value itself.\n@return Returns a reference to this object so that method calls can be chained together.\n@see KeyType*/",
"varargSetterDocumentation" : "/**The attribute data, consisting of the data type and the attribute value itself.
\n@param keyType The attribute data, consisting of the data type and the attribute value itself.\n@return Returns a reference to this object so that method calls can be chained together.\n@see KeyType*/"
},
"AttributeName" : {
"documentation" : "The name of a key attribute.
",
"name" : "AttributeName",
"c2jName" : "AttributeName",
"c2jShape" : "KeySchemaAttributeName",
"variable" : {
"variableName" : "attributeName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of a key attribute.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "attributeName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AttributeName",
"marshallLocationName" : "AttributeName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of a key attribute.
\n@param attributeName The name of a key attribute.*/",
"getterDocumentation" : "/**The name of a key attribute.
\n@return The name of a key attribute.*/",
"fluentSetterDocumentation" : "/**The name of a key attribute.
\n@param attributeName The name of a key attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of a key attribute.
\n@param attributeName The name of a key attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"StreamRecord" : {
"c2jName" : "StreamRecord",
"documentation" : "A description of a single data modification that was performed on an item in a DynamoDB table.
",
"shapeName" : "StreamRecord",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The approximate date and time when the stream record was created, in UNIX epoch time format.
",
"name" : "ApproximateCreationDateTime",
"c2jName" : "ApproximateCreationDateTime",
"c2jShape" : "Date",
"variable" : {
"variableName" : "approximateCreationDateTime",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The approximate date and time when the stream record was created, in UNIX epoch time format.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "approximateCreationDateTime",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ApproximateCreationDateTime",
"marshallLocationName" : "ApproximateCreationDateTime",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The approximate date and time when the stream record was created, in UNIX epoch time format.
\n@param approximateCreationDateTime The approximate date and time when the stream record was created, in UNIX epoch time format.*/",
"getterDocumentation" : "/**The approximate date and time when the stream record was created, in UNIX epoch time format.
\n@return The approximate date and time when the stream record was created, in UNIX epoch time format.*/",
"fluentSetterDocumentation" : "/**The approximate date and time when the stream record was created, in UNIX epoch time format.
\n@param approximateCreationDateTime The approximate date and time when the stream record was created, in UNIX epoch time format.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The approximate date and time when the stream record was created, in UNIX epoch time format.
\n@param approximateCreationDateTime The approximate date and time when the stream record was created, in UNIX epoch time format.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The primary key attribute(s) for the DynamoDB item that was modified.
",
"name" : "Keys",
"c2jName" : "Keys",
"c2jShape" : "AttributeMap",
"variable" : {
"variableName" : "keys",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "The primary key attribute(s) for the DynamoDB item that was modified.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"setterModel" : {
"variableName" : "keys",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Keys",
"marshallLocationName" : "Keys",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : {
"implType" : "java.util.HashMap",
"interfaceType" : "java.util.Map",
"keyType" : "String",
"keyLocationName" : "key",
"keyModel" : null,
"valueType" : "AttributeValue",
"valueLocationName" : "value",
"valueModel" : {
"documentation" : "",
"name" : "Value",
"c2jName" : "value",
"c2jShape" : "AttributeValue",
"variable" : {
"variableName" : "value",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"getterModel" : {
"returnType" : "AttributeValue",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "value",
"marshallLocationName" : "value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param value */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"templateType" : "java.util.Map",
"templateImplType" : "java.util.HashMap",
"keySimple" : true,
"valueSimple" : false,
"valueList" : false,
"entryType" : "Map.Entry"
},
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : true,
"setterDocumentation" : "/**The primary key attribute(s) for the DynamoDB item that was modified.
\n@param keys The primary key attribute(s) for the DynamoDB item that was modified.*/",
"getterDocumentation" : "/**The primary key attribute(s) for the DynamoDB item that was modified.
\n@return The primary key attribute(s) for the DynamoDB item that was modified.*/",
"fluentSetterDocumentation" : "/**The primary key attribute(s) for the DynamoDB item that was modified.
\n@param keys The primary key attribute(s) for the DynamoDB item that was modified.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The primary key attribute(s) for the DynamoDB item that was modified.
\n@param keys The primary key attribute(s) for the DynamoDB item that was modified.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The item in the DynamoDB table as it appeared after it was modified.
",
"name" : "NewImage",
"c2jName" : "NewImage",
"c2jShape" : "AttributeMap",
"variable" : {
"variableName" : "newImage",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "The item in the DynamoDB table as it appeared after it was modified.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"setterModel" : {
"variableName" : "newImage",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NewImage",
"marshallLocationName" : "NewImage",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : {
"implType" : "java.util.HashMap",
"interfaceType" : "java.util.Map",
"keyType" : "String",
"keyLocationName" : "key",
"keyModel" : null,
"valueType" : "AttributeValue",
"valueLocationName" : "value",
"valueModel" : {
"documentation" : "",
"name" : "Value",
"c2jName" : "value",
"c2jShape" : "AttributeValue",
"variable" : {
"variableName" : "value",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"getterModel" : {
"returnType" : "AttributeValue",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "value",
"marshallLocationName" : "value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param value */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"templateType" : "java.util.Map",
"templateImplType" : "java.util.HashMap",
"keySimple" : true,
"valueSimple" : false,
"valueList" : false,
"entryType" : "Map.Entry"
},
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : true,
"setterDocumentation" : "/**The item in the DynamoDB table as it appeared after it was modified.
\n@param newImage The item in the DynamoDB table as it appeared after it was modified.*/",
"getterDocumentation" : "/**The item in the DynamoDB table as it appeared after it was modified.
\n@return The item in the DynamoDB table as it appeared after it was modified.*/",
"fluentSetterDocumentation" : "/**The item in the DynamoDB table as it appeared after it was modified.
\n@param newImage The item in the DynamoDB table as it appeared after it was modified.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The item in the DynamoDB table as it appeared after it was modified.
\n@param newImage The item in the DynamoDB table as it appeared after it was modified.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The item in the DynamoDB table as it appeared before it was modified.
",
"name" : "OldImage",
"c2jName" : "OldImage",
"c2jShape" : "AttributeMap",
"variable" : {
"variableName" : "oldImage",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "The item in the DynamoDB table as it appeared before it was modified.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"setterModel" : {
"variableName" : "oldImage",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "OldImage",
"marshallLocationName" : "OldImage",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : {
"implType" : "java.util.HashMap",
"interfaceType" : "java.util.Map",
"keyType" : "String",
"keyLocationName" : "key",
"keyModel" : null,
"valueType" : "AttributeValue",
"valueLocationName" : "value",
"valueModel" : {
"documentation" : "",
"name" : "Value",
"c2jName" : "value",
"c2jShape" : "AttributeValue",
"variable" : {
"variableName" : "value",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"getterModel" : {
"returnType" : "AttributeValue",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "value",
"marshallLocationName" : "value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param value */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"templateType" : "java.util.Map",
"templateImplType" : "java.util.HashMap",
"keySimple" : true,
"valueSimple" : false,
"valueList" : false,
"entryType" : "Map.Entry"
},
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : true,
"setterDocumentation" : "/**The item in the DynamoDB table as it appeared before it was modified.
\n@param oldImage The item in the DynamoDB table as it appeared before it was modified.*/",
"getterDocumentation" : "/**The item in the DynamoDB table as it appeared before it was modified.
\n@return The item in the DynamoDB table as it appeared before it was modified.*/",
"fluentSetterDocumentation" : "/**The item in the DynamoDB table as it appeared before it was modified.
\n@param oldImage The item in the DynamoDB table as it appeared before it was modified.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The item in the DynamoDB table as it appeared before it was modified.
\n@param oldImage The item in the DynamoDB table as it appeared before it was modified.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The sequence number of the stream record.
",
"name" : "SequenceNumber",
"c2jName" : "SequenceNumber",
"c2jShape" : "SequenceNumber",
"variable" : {
"variableName" : "sequenceNumber",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The sequence number of the stream record.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "sequenceNumber",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SequenceNumber",
"marshallLocationName" : "SequenceNumber",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The sequence number of the stream record.
\n@param sequenceNumber The sequence number of the stream record.*/",
"getterDocumentation" : "/**The sequence number of the stream record.
\n@return The sequence number of the stream record.*/",
"fluentSetterDocumentation" : "/**The sequence number of the stream record.
\n@param sequenceNumber The sequence number of the stream record.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The sequence number of the stream record.
\n@param sequenceNumber The sequence number of the stream record.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The size of the stream record, in bytes.
",
"name" : "SizeBytes",
"c2jName" : "SizeBytes",
"c2jShape" : "PositiveLongObject",
"variable" : {
"variableName" : "sizeBytes",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The size of the stream record, in bytes.
",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"setterModel" : {
"variableName" : "sizeBytes",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SizeBytes",
"marshallLocationName" : "SizeBytes",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The size of the stream record, in bytes.
\n@param sizeBytes The size of the stream record, in bytes.*/",
"getterDocumentation" : "/**The size of the stream record, in bytes.
\n@return The size of the stream record, in bytes.*/",
"fluentSetterDocumentation" : "/**The size of the stream record, in bytes.
\n@param sizeBytes The size of the stream record, in bytes.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The size of the stream record, in bytes.
\n@param sizeBytes The size of the stream record, in bytes.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The type of data from the modified DynamoDB item that was captured in this stream record:
-
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
",
"name" : "StreamViewType",
"c2jName" : "StreamViewType",
"c2jShape" : "StreamViewType",
"variable" : {
"variableName" : "streamViewType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The type of data from the modified DynamoDB item that was captured in this stream record:
-
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamViewType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamViewType",
"marshallLocationName" : "StreamViewType",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "StreamViewType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The type of data from the modified DynamoDB item that was captured in this stream record:
-
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
\n@param streamViewType The type of data from the modified DynamoDB item that was captured in this stream record: -
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
\n@see StreamViewType*/",
"getterDocumentation" : "/**The type of data from the modified DynamoDB item that was captured in this stream record:
-
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
\n@return The type of data from the modified DynamoDB item that was captured in this stream record: -
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
\n@see StreamViewType*/",
"fluentSetterDocumentation" : "/**The type of data from the modified DynamoDB item that was captured in this stream record:
-
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
\n@param streamViewType The type of data from the modified DynamoDB item that was captured in this stream record: -
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see StreamViewType*/",
"varargSetterDocumentation" : "/**The type of data from the modified DynamoDB item that was captured in this stream record:
-
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
\n@param streamViewType The type of data from the modified DynamoDB item that was captured in this stream record: -
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see StreamViewType*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "streamRecord",
"variableType" : "StreamRecord",
"variableDeclarationType" : "StreamRecord",
"documentation" : null,
"simpleType" : "StreamRecord",
"variableSetterType" : "StreamRecord"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"NewImage" : {
"documentation" : "The item in the DynamoDB table as it appeared after it was modified.
",
"name" : "NewImage",
"c2jName" : "NewImage",
"c2jShape" : "AttributeMap",
"variable" : {
"variableName" : "newImage",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "The item in the DynamoDB table as it appeared after it was modified.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"setterModel" : {
"variableName" : "newImage",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NewImage",
"marshallLocationName" : "NewImage",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : {
"implType" : "java.util.HashMap",
"interfaceType" : "java.util.Map",
"keyType" : "String",
"keyLocationName" : "key",
"keyModel" : null,
"valueType" : "AttributeValue",
"valueLocationName" : "value",
"valueModel" : {
"documentation" : "",
"name" : "Value",
"c2jName" : "value",
"c2jShape" : "AttributeValue",
"variable" : {
"variableName" : "value",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"getterModel" : {
"returnType" : "AttributeValue",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "value",
"marshallLocationName" : "value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param value */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"templateType" : "java.util.Map",
"templateImplType" : "java.util.HashMap",
"keySimple" : true,
"valueSimple" : false,
"valueList" : false,
"entryType" : "Map.Entry"
},
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : true,
"setterDocumentation" : "/**The item in the DynamoDB table as it appeared after it was modified.
\n@param newImage The item in the DynamoDB table as it appeared after it was modified.*/",
"getterDocumentation" : "/**The item in the DynamoDB table as it appeared after it was modified.
\n@return The item in the DynamoDB table as it appeared after it was modified.*/",
"fluentSetterDocumentation" : "/**The item in the DynamoDB table as it appeared after it was modified.
\n@param newImage The item in the DynamoDB table as it appeared after it was modified.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The item in the DynamoDB table as it appeared after it was modified.
\n@param newImage The item in the DynamoDB table as it appeared after it was modified.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ApproximateCreationDateTime" : {
"documentation" : "The approximate date and time when the stream record was created, in UNIX epoch time format.
",
"name" : "ApproximateCreationDateTime",
"c2jName" : "ApproximateCreationDateTime",
"c2jShape" : "Date",
"variable" : {
"variableName" : "approximateCreationDateTime",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The approximate date and time when the stream record was created, in UNIX epoch time format.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "approximateCreationDateTime",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ApproximateCreationDateTime",
"marshallLocationName" : "ApproximateCreationDateTime",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The approximate date and time when the stream record was created, in UNIX epoch time format.
\n@param approximateCreationDateTime The approximate date and time when the stream record was created, in UNIX epoch time format.*/",
"getterDocumentation" : "/**The approximate date and time when the stream record was created, in UNIX epoch time format.
\n@return The approximate date and time when the stream record was created, in UNIX epoch time format.*/",
"fluentSetterDocumentation" : "/**The approximate date and time when the stream record was created, in UNIX epoch time format.
\n@param approximateCreationDateTime The approximate date and time when the stream record was created, in UNIX epoch time format.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The approximate date and time when the stream record was created, in UNIX epoch time format.
\n@param approximateCreationDateTime The approximate date and time when the stream record was created, in UNIX epoch time format.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Keys" : {
"documentation" : "The primary key attribute(s) for the DynamoDB item that was modified.
",
"name" : "Keys",
"c2jName" : "Keys",
"c2jShape" : "AttributeMap",
"variable" : {
"variableName" : "keys",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "The primary key attribute(s) for the DynamoDB item that was modified.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"setterModel" : {
"variableName" : "keys",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Keys",
"marshallLocationName" : "Keys",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : {
"implType" : "java.util.HashMap",
"interfaceType" : "java.util.Map",
"keyType" : "String",
"keyLocationName" : "key",
"keyModel" : null,
"valueType" : "AttributeValue",
"valueLocationName" : "value",
"valueModel" : {
"documentation" : "",
"name" : "Value",
"c2jName" : "value",
"c2jShape" : "AttributeValue",
"variable" : {
"variableName" : "value",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "AttributeValue",
"variableDeclarationType" : "AttributeValue",
"documentation" : "",
"simpleType" : "AttributeValue",
"variableSetterType" : "AttributeValue"
},
"getterModel" : {
"returnType" : "AttributeValue",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "value",
"marshallLocationName" : "value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param value */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"templateType" : "java.util.Map",
"templateImplType" : "java.util.HashMap",
"keySimple" : true,
"valueSimple" : false,
"valueList" : false,
"entryType" : "Map.Entry"
},
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : true,
"setterDocumentation" : "/**The primary key attribute(s) for the DynamoDB item that was modified.
\n@param keys The primary key attribute(s) for the DynamoDB item that was modified.*/",
"getterDocumentation" : "/**The primary key attribute(s) for the DynamoDB item that was modified.
\n@return The primary key attribute(s) for the DynamoDB item that was modified.*/",
"fluentSetterDocumentation" : "/**The primary key attribute(s) for the DynamoDB item that was modified.
\n@param keys The primary key attribute(s) for the DynamoDB item that was modified.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The primary key attribute(s) for the DynamoDB item that was modified.
\n@param keys The primary key attribute(s) for the DynamoDB item that was modified.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"SequenceNumber" : {
"documentation" : "The sequence number of the stream record.
",
"name" : "SequenceNumber",
"c2jName" : "SequenceNumber",
"c2jShape" : "SequenceNumber",
"variable" : {
"variableName" : "sequenceNumber",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The sequence number of the stream record.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "sequenceNumber",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SequenceNumber",
"marshallLocationName" : "SequenceNumber",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The sequence number of the stream record.
\n@param sequenceNumber The sequence number of the stream record.*/",
"getterDocumentation" : "/**The sequence number of the stream record.
\n@return The sequence number of the stream record.*/",
"fluentSetterDocumentation" : "/**The sequence number of the stream record.
\n@param sequenceNumber The sequence number of the stream record.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The sequence number of the stream record.
\n@param sequenceNumber The sequence number of the stream record.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"StreamViewType" : {
"documentation" : "The type of data from the modified DynamoDB item that was captured in this stream record:
-
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
",
"name" : "StreamViewType",
"c2jName" : "StreamViewType",
"c2jShape" : "StreamViewType",
"variable" : {
"variableName" : "streamViewType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The type of data from the modified DynamoDB item that was captured in this stream record:
-
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamViewType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamViewType",
"marshallLocationName" : "StreamViewType",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "StreamViewType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The type of data from the modified DynamoDB item that was captured in this stream record:
-
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
\n@param streamViewType The type of data from the modified DynamoDB item that was captured in this stream record: -
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
\n@see StreamViewType*/",
"getterDocumentation" : "/**The type of data from the modified DynamoDB item that was captured in this stream record:
-
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
\n@return The type of data from the modified DynamoDB item that was captured in this stream record: -
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
\n@see StreamViewType*/",
"fluentSetterDocumentation" : "/**The type of data from the modified DynamoDB item that was captured in this stream record:
-
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
\n@param streamViewType The type of data from the modified DynamoDB item that was captured in this stream record: -
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see StreamViewType*/",
"varargSetterDocumentation" : "/**The type of data from the modified DynamoDB item that was captured in this stream record:
-
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
\n@param streamViewType The type of data from the modified DynamoDB item that was captured in this stream record: -
KEYS_ONLY
- only the key attributes of the modified item.
-
NEW_IMAGE
- the entire item, as it appeared after it was modified.
-
OLD_IMAGE
- the entire item, as it appeared before it was modified.
-
NEW_AND_OLD_IMAGES
- both the new and the old item images of the item.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see StreamViewType*/"
},
"SizeBytes" : {
"documentation" : "The size of the stream record, in bytes.
",
"name" : "SizeBytes",
"c2jName" : "SizeBytes",
"c2jShape" : "PositiveLongObject",
"variable" : {
"variableName" : "sizeBytes",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The size of the stream record, in bytes.
",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"setterModel" : {
"variableName" : "sizeBytes",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SizeBytes",
"marshallLocationName" : "SizeBytes",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The size of the stream record, in bytes.
\n@param sizeBytes The size of the stream record, in bytes.*/",
"getterDocumentation" : "/**The size of the stream record, in bytes.
\n@return The size of the stream record, in bytes.*/",
"fluentSetterDocumentation" : "/**The size of the stream record, in bytes.
\n@param sizeBytes The size of the stream record, in bytes.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The size of the stream record, in bytes.
\n@param sizeBytes The size of the stream record, in bytes.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"OldImage" : {
"documentation" : "The item in the DynamoDB table as it appeared before it was modified.
",
"name" : "OldImage",
"c2jName" : "OldImage",
"c2jShape" : "AttributeMap",
"variable" : {
"variableName" : "oldImage",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "The item in the DynamoDB table as it appeared before it was modified.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map