
models.kinesis-2013-12-02-intermediate.json Maven / Gradle / Ivy
Show all versions of aws-java-sdk-osgi Show documentation
{
"metadata" : {
"apiVersion" : "2013-12-02",
"protocol" : "cbor",
"checksumFormat" : null,
"documentation" : "Amazon Kinesis Streams Service API Reference Amazon Kinesis Streams is a managed service that scales elastically for real time processing of streaming big data.
",
"defaultEndpoint" : "https://kinesis.us-east-1.amazonaws.com",
"defaultEndpointWithoutHttpProtocol" : "kinesis.us-east-1.amazonaws.com",
"syncInterface" : "AmazonKinesis",
"syncClient" : "AmazonKinesisClient",
"asyncInterface" : "AmazonKinesisAsync",
"asyncClient" : "AmazonKinesisAsyncClient",
"packageName" : "com.amazonaws.services.kinesis",
"packagePath" : "com/amazonaws/services/kinesis",
"serviceAbbreviation" : "Kinesis",
"serviceFullName" : "Amazon Kinesis",
"hasApiWithStreamInput" : false,
"contentType" : null,
"jsonVersion" : "1.1",
"endpointPrefix" : "kinesis",
"signingName" : "kinesis",
"cborProtocol" : true,
"xmlProtocol" : false,
"unmarshallerClassSuffix" : "JsonUnmarshaller",
"jsonProtocol" : true,
"syncClientBuilderClassName" : "AmazonKinesisClientBuilder",
"asyncClientBuilderClassName" : "AmazonKinesisAsyncClientBuilder",
"serviceName" : "Kinesis",
"unmarshallerContextClassName" : "JsonUnmarshallerContext",
"protocolDefaultExceptionUmarshallerImpl" : null
},
"operations" : {
"AddTagsToStream" : {
"documentation" : "Adds or updates tags for the specified Amazon Kinesis stream. Each stream can have up to 10 tags.
If tags have already been assigned to the stream, AddTagsToStream
overwrites any existing tags that correspond to the specified tag keys.
",
"operationName" : "AddTagsToStream",
"deprecated" : false,
"input" : {
"variableName" : "addTagsToStreamRequest",
"variableType" : "AddTagsToStreamRequest",
"variableDeclarationType" : "AddTagsToStreamRequest",
"documentation" : "Represents the input for AddTagsToStream
.
",
"simpleType" : "AddTagsToStreamRequest",
"variableSetterType" : "AddTagsToStreamRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "AddTagsToStreamResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The requested resource could not be found. The stream might not be specified correctly, or it might not be in the ACTIVE
state if the operation requires it.
"
}, {
"exceptionName" : "ResourceInUseException",
"documentation" : "The resource is not available for this operation. For successful operation, the resource needs to be in the ACTIVE
state.
"
}, {
"exceptionName" : "InvalidArgumentException",
"documentation" : "A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.
"
}, {
"exceptionName" : "LimitExceededException",
"documentation" : "The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed (5).
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "AddTagsToStreamResult",
"asyncReturnType" : "AddTagsToStreamResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "addTagsToStream"
},
"CreateStream" : {
"documentation" : "Creates an Amazon Kinesis stream. A stream captures and transports data records that are continuously emitted from different data sources or producers. Scale-out within a stream is explicitly supported by means of shards, which are uniquely identified groups of data records in a stream.
You specify and control the number of shards that a stream is composed of. Each shard can support reads up to 5 transactions per second, up to a maximum data read total of 2 MB per second. Each shard can support writes up to 1,000 records per second, up to a maximum data write total of 1 MB per second. You can add shards to a stream if the amount of data input increases and you can remove shards if the amount of data input decreases.
The stream name identifies the stream. The name is scoped to the AWS account used by the application. It is also scoped by region. That is, two streams in two different accounts can have the same name, and two streams in the same account, but in two different regions, can have the same name.
CreateStream
is an asynchronous operation. Upon receiving a CreateStream
request, Amazon Kinesis immediately returns and sets the stream status to CREATING
. After the stream is created, Amazon Kinesis sets the stream status to ACTIVE
. You should perform read and write operations only on an ACTIVE
stream.
You receive a LimitExceededException
when making a CreateStream
request if you try to do one of the following:
- Have more than five streams in the
CREATING
state at any point in time. - Create more shards than are authorized for your account.
For the default shard limit for an AWS account, see Streams Limits in the Amazon Kinesis Streams Developer Guide. If you need to increase this limit, contact AWS Support.
You can use DescribeStream
to check the stream status, which is returned in StreamStatus
.
CreateStream has a limit of 5 transactions per second per account.
",
"operationName" : "CreateStream",
"deprecated" : false,
"input" : {
"variableName" : "createStreamRequest",
"variableType" : "CreateStreamRequest",
"variableDeclarationType" : "CreateStreamRequest",
"documentation" : "Represents the input for CreateStream
.
",
"simpleType" : "CreateStreamRequest",
"variableSetterType" : "CreateStreamRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "CreateStreamResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ResourceInUseException",
"documentation" : "The resource is not available for this operation. For successful operation, the resource needs to be in the ACTIVE
state.
"
}, {
"exceptionName" : "LimitExceededException",
"documentation" : "The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed (5).
"
}, {
"exceptionName" : "InvalidArgumentException",
"documentation" : "A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "CreateStreamResult",
"asyncReturnType" : "CreateStreamResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "createStream"
},
"DecreaseStreamRetentionPeriod" : {
"documentation" : "Decreases the Amazon Kinesis stream's retention period, which is the length of time data records are accessible after they are added to the stream. The minimum value of a stream's retention period is 24 hours.
This operation may result in lost data. For example, if the stream's retention period is 48 hours and is decreased to 24 hours, any data already in the stream that is older than 24 hours is inaccessible.
",
"operationName" : "DecreaseStreamRetentionPeriod",
"deprecated" : false,
"input" : {
"variableName" : "decreaseStreamRetentionPeriodRequest",
"variableType" : "DecreaseStreamRetentionPeriodRequest",
"variableDeclarationType" : "DecreaseStreamRetentionPeriodRequest",
"documentation" : "Represents the input for DecreaseStreamRetentionPeriod.
",
"simpleType" : "DecreaseStreamRetentionPeriodRequest",
"variableSetterType" : "DecreaseStreamRetentionPeriodRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DecreaseStreamRetentionPeriodResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ResourceInUseException",
"documentation" : "The resource is not available for this operation. For successful operation, the resource needs to be in the ACTIVE
state.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The requested resource could not be found. The stream might not be specified correctly, or it might not be in the ACTIVE
state if the operation requires it.
"
}, {
"exceptionName" : "LimitExceededException",
"documentation" : "The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed (5).
"
}, {
"exceptionName" : "InvalidArgumentException",
"documentation" : "A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "DecreaseStreamRetentionPeriodResult",
"asyncReturnType" : "DecreaseStreamRetentionPeriodResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "decreaseStreamRetentionPeriod"
},
"DeleteStream" : {
"documentation" : "Deletes an Amazon Kinesis stream and all its shards and data. You must shut down any applications that are operating on the stream before you delete the stream. If an application attempts to operate on a deleted stream, it will receive the exception ResourceNotFoundException
.
If the stream is in the ACTIVE
state, you can delete it. After a DeleteStream
request, the specified stream is in the DELETING
state until Amazon Kinesis completes the deletion.
Note: Amazon Kinesis might continue to accept data read and write operations, such as PutRecord, PutRecords, and GetRecords, on a stream in the DELETING
state until the stream deletion is complete.
When you delete a stream, any shards in that stream are also deleted, and any tags are dissociated from the stream.
You can use the DescribeStream operation to check the state of the stream, which is returned in StreamStatus
.
DeleteStream has a limit of 5 transactions per second per account.
",
"operationName" : "DeleteStream",
"deprecated" : false,
"input" : {
"variableName" : "deleteStreamRequest",
"variableType" : "DeleteStreamRequest",
"variableDeclarationType" : "DeleteStreamRequest",
"documentation" : "Represents the input for DeleteStream.
",
"simpleType" : "DeleteStreamRequest",
"variableSetterType" : "DeleteStreamRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DeleteStreamResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The requested resource could not be found. The stream might not be specified correctly, or it might not be in the ACTIVE
state if the operation requires it.
"
}, {
"exceptionName" : "LimitExceededException",
"documentation" : "The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed (5).
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "DeleteStreamResult",
"asyncReturnType" : "DeleteStreamResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "deleteStream"
},
"DescribeStream" : {
"documentation" : "Describes the specified Amazon Kinesis stream.
The information about the stream includes its current status, its Amazon Resource Name (ARN), and an array of shard objects. For each shard object, there is information about the hash key and sequence number ranges that the shard spans, and the IDs of any earlier shards that played in a role in creating the shard. A sequence number is the identifier associated with every record ingested in the stream. The sequence number is assigned when a record is put into the stream.
You can limit the number of returned shards using the Limit
parameter. The number of shards in a stream may be too large to return from a single call to DescribeStream
. You can detect this by using the HasMoreShards
flag in the returned output. HasMoreShards
is set to true
when there is more data available.
DescribeStream
is a paginated operation. If there are more shards available, you can request them using the shard ID of the last shard returned. Specify this ID in the ExclusiveStartShardId
parameter in a subsequent request to DescribeStream
.
There are no guarantees about the chronological order shards returned in DescribeStream
results. If you want to process shards in chronological order, use ParentShardId
to track lineage to the oldest shard.
DescribeStream has a limit of 10 transactions per second per account.
",
"operationName" : "DescribeStream",
"deprecated" : false,
"input" : {
"variableName" : "describeStreamRequest",
"variableType" : "DescribeStreamRequest",
"variableDeclarationType" : "DescribeStreamRequest",
"documentation" : "Represents the input for DescribeStream
.
",
"simpleType" : "DescribeStreamRequest",
"variableSetterType" : "DescribeStreamRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DescribeStreamResult",
"documentation" : "Represents the output for DescribeStream
.
"
},
"exceptions" : [ {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The requested resource could not be found. The stream might not be specified correctly, or it might not be in the ACTIVE
state if the operation requires it.
"
}, {
"exceptionName" : "LimitExceededException",
"documentation" : "The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed (5).
"
} ],
"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"
},
"DisableEnhancedMonitoring" : {
"documentation" : "Disables enhanced monitoring.
",
"operationName" : "DisableEnhancedMonitoring",
"deprecated" : false,
"input" : {
"variableName" : "disableEnhancedMonitoringRequest",
"variableType" : "DisableEnhancedMonitoringRequest",
"variableDeclarationType" : "DisableEnhancedMonitoringRequest",
"documentation" : "Represents the input for DisableEnhancedMonitoring.
",
"simpleType" : "DisableEnhancedMonitoringRequest",
"variableSetterType" : "DisableEnhancedMonitoringRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DisableEnhancedMonitoringResult",
"documentation" : "Represents the output for EnableEnhancedMonitoring and DisableEnhancedMonitoring.
"
},
"exceptions" : [ {
"exceptionName" : "InvalidArgumentException",
"documentation" : "A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.
"
}, {
"exceptionName" : "LimitExceededException",
"documentation" : "The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed (5).
"
}, {
"exceptionName" : "ResourceInUseException",
"documentation" : "The resource is not available for this operation. For successful operation, the resource needs to be in the ACTIVE
state.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The requested resource could not be found. The stream might not be specified correctly, or it might not be in the ACTIVE
state if the operation requires it.
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "DisableEnhancedMonitoringResult",
"asyncReturnType" : "DisableEnhancedMonitoringResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "disableEnhancedMonitoring"
},
"EnableEnhancedMonitoring" : {
"documentation" : "Enables enhanced Amazon Kinesis stream monitoring for shard-level metrics.
",
"operationName" : "EnableEnhancedMonitoring",
"deprecated" : false,
"input" : {
"variableName" : "enableEnhancedMonitoringRequest",
"variableType" : "EnableEnhancedMonitoringRequest",
"variableDeclarationType" : "EnableEnhancedMonitoringRequest",
"documentation" : "Represents the input for EnableEnhancedMonitoring.
",
"simpleType" : "EnableEnhancedMonitoringRequest",
"variableSetterType" : "EnableEnhancedMonitoringRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "EnableEnhancedMonitoringResult",
"documentation" : "Represents the output for EnableEnhancedMonitoring and DisableEnhancedMonitoring.
"
},
"exceptions" : [ {
"exceptionName" : "InvalidArgumentException",
"documentation" : "A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.
"
}, {
"exceptionName" : "LimitExceededException",
"documentation" : "The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed (5).
"
}, {
"exceptionName" : "ResourceInUseException",
"documentation" : "The resource is not available for this operation. For successful operation, the resource needs to be in the ACTIVE
state.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The requested resource could not be found. The stream might not be specified correctly, or it might not be in the ACTIVE
state if the operation requires it.
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "EnableEnhancedMonitoringResult",
"asyncReturnType" : "EnableEnhancedMonitoringResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "enableEnhancedMonitoring"
},
"GetRecords" : {
"documentation" : "Gets data records from an Amazon Kinesis stream's 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 data records sequentially. If there are no 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 records.
You can scale by provisioning multiple shards per stream while considering service limits (for more information, see Streams Limits in the Amazon Kinesis Streams Developer Guide). Your application should have one thread per shard, each reading continuously from its stream. To read from a stream continually, call GetRecords in a loop. Use GetShardIterator to get the shard iterator to specify in the first GetRecords call. GetRecords returns a new shard iterator in NextShardIterator
. Specify the shard iterator returned in NextShardIterator
in subsequent calls to GetRecords. Note that if the shard has been closed, the shard iterator can't return more data and GetRecords returns null
in NextShardIterator
. You can terminate the loop when the shard is closed, or when the shard iterator reaches the record with the sequence number or other attribute that marks it as the last record to process.
Each data record can be up to 1 MB in size, and each shard can read up to 2 MB per second. You can ensure that your calls don't exceed the maximum supported size or throughput by using the Limit
parameter to specify the maximum number of records that GetRecords can return. Consider your average record size when determining this limit.
The size of the data returned by GetRecords varies depending on the utilization of the shard. The maximum size of data that GetRecords can return is 10 MB. If a call returns this amount of data, subsequent calls made within the next 5 seconds throw ProvisionedThroughputExceededException
. If there is insufficient provisioned throughput on the shard, subsequent calls made within the next 1 second throw ProvisionedThroughputExceededException
. Note that GetRecords won't return any data when it throws an exception. For this reason, we recommend that you wait one second between calls to GetRecords; however, it's possible that the application will get exceptions for longer than 1 second.
To detect whether the application is falling behind in processing, you can use the MillisBehindLatest
response attribute. You can also monitor the stream using CloudWatch metrics and other mechanisms (see Monitoring in the Amazon Kinesis Streams Developer Guide).
Each Amazon Kinesis record includes a value, ApproximateArrivalTimestamp
, that is set when a stream successfully receives and stores a record. This is commonly referred to as a server-side timestamp, whereas a client-side timestamp is set when a data producer creates or sends the record to a stream (a data producer is any data source putting data records into a stream, for example with PutRecords). The timestamp has millisecond precision. There are no guarantees about the timestamp accuracy, or that the timestamp is always increasing. For example, records in a shard or across a stream might have timestamps that are out of order.
",
"operationName" : "GetRecords",
"deprecated" : false,
"input" : {
"variableName" : "getRecordsRequest",
"variableType" : "GetRecordsRequest",
"variableDeclarationType" : "GetRecordsRequest",
"documentation" : "Represents the input for GetRecords.
",
"simpleType" : "GetRecordsRequest",
"variableSetterType" : "GetRecordsRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetRecordsResult",
"documentation" : "Represents the output for GetRecords.
"
},
"exceptions" : [ {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The requested resource could not be found. The stream might not be specified correctly, or it might not be in the ACTIVE
state if the operation requires it.
"
}, {
"exceptionName" : "InvalidArgumentException",
"documentation" : "A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.
"
}, {
"exceptionName" : "ProvisionedThroughputExceededException",
"documentation" : "The request rate for the stream is too high, or the requested data is too large for the available throughput. Reduce the frequency or size of your requests. For more information, see Streams Limits in the Amazon Kinesis Streams Developer Guide, and Error Retries and Exponential Backoff in AWS in the AWS General Reference.
"
}, {
"exceptionName" : "ExpiredIteratorException",
"documentation" : "The provided iterator exceeds the maximum age allowed.
"
} ],
"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" : "Gets an Amazon Kinesis shard iterator. A shard iterator expires five minutes after it is returned to the requester.
A shard iterator specifies the shard position from which to start reading data records sequentially. The position is specified using the sequence number of a data record in a shard. A sequence number is the identifier associated with every record ingested in the stream, and is assigned when a record is put into the stream. Each stream has one or more shards.
You must specify the shard iterator type. For example, you can set the ShardIteratorType
parameter to read exactly from the position denoted by a specific sequence number by using the AT_SEQUENCE_NUMBER
shard iterator type, or right after the sequence number by using the AFTER_SEQUENCE_NUMBER
shard iterator type, using sequence numbers returned by earlier calls to PutRecord, PutRecords, GetRecords, or DescribeStream. In the request, you can specify the shard iterator type AT_TIMESTAMP
to read records from an arbitrary point in time, TRIM_HORIZON
to cause ShardIterator
to point to the last untrimmed record in the shard in the system (the oldest data record in the shard), or LATEST
so that you always read the most recent data in the shard.
When you read repeatedly from a stream, use a GetShardIterator request to get the first shard iterator for use in your first GetRecords request and for subsequent reads use the shard iterator returned by the GetRecords request in NextShardIterator
. A new shard iterator is returned by every GetRecords request in NextShardIterator
, which you use in the ShardIterator
parameter of the next GetRecords request.
If a GetShardIterator request is made too often, you receive a ProvisionedThroughputExceededException
. For more information about throughput limits, see GetRecords, and Streams Limits in the Amazon Kinesis Streams Developer Guide.
If the shard is closed, GetShardIterator returns a valid iterator for the last sequence number of the shard. Note that a shard can be closed as a result of using SplitShard or MergeShards.
GetShardIterator has a limit of 5 transactions per second per account per open shard.
",
"operationName" : "GetShardIterator",
"deprecated" : false,
"input" : {
"variableName" : "getShardIteratorRequest",
"variableType" : "GetShardIteratorRequest",
"variableDeclarationType" : "GetShardIteratorRequest",
"documentation" : "Represents the input for GetShardIterator
.
",
"simpleType" : "GetShardIteratorRequest",
"variableSetterType" : "GetShardIteratorRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetShardIteratorResult",
"documentation" : "Represents the output for GetShardIterator
.
"
},
"exceptions" : [ {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The requested resource could not be found. The stream might not be specified correctly, or it might not be in the ACTIVE
state if the operation requires it.
"
}, {
"exceptionName" : "InvalidArgumentException",
"documentation" : "A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.
"
}, {
"exceptionName" : "ProvisionedThroughputExceededException",
"documentation" : "The request rate for the stream is too high, or the requested data is too large for the available throughput. Reduce the frequency or size of your requests. For more information, see Streams Limits in the Amazon Kinesis Streams Developer Guide, and Error Retries and Exponential Backoff in AWS in the AWS General Reference.
"
} ],
"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"
},
"IncreaseStreamRetentionPeriod" : {
"documentation" : "Increases the Amazon Kinesis stream's retention period, which is the length of time data records are accessible after they are added to the stream. The maximum value of a stream's retention period is 168 hours (7 days).
Upon choosing a longer stream retention period, this operation will increase the time period records are accessible that have not yet expired. However, it will not make previous data that has expired (older than the stream's previous retention period) accessible after the operation has been called. For example, if a stream's retention period is set to 24 hours and is increased to 168 hours, any data that is older than 24 hours will remain inaccessible to consumer applications.
",
"operationName" : "IncreaseStreamRetentionPeriod",
"deprecated" : false,
"input" : {
"variableName" : "increaseStreamRetentionPeriodRequest",
"variableType" : "IncreaseStreamRetentionPeriodRequest",
"variableDeclarationType" : "IncreaseStreamRetentionPeriodRequest",
"documentation" : "Represents the input for IncreaseStreamRetentionPeriod.
",
"simpleType" : "IncreaseStreamRetentionPeriodRequest",
"variableSetterType" : "IncreaseStreamRetentionPeriodRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "IncreaseStreamRetentionPeriodResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ResourceInUseException",
"documentation" : "The resource is not available for this operation. For successful operation, the resource needs to be in the ACTIVE
state.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The requested resource could not be found. The stream might not be specified correctly, or it might not be in the ACTIVE
state if the operation requires it.
"
}, {
"exceptionName" : "LimitExceededException",
"documentation" : "The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed (5).
"
}, {
"exceptionName" : "InvalidArgumentException",
"documentation" : "A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "IncreaseStreamRetentionPeriodResult",
"asyncReturnType" : "IncreaseStreamRetentionPeriodResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "increaseStreamRetentionPeriod"
},
"ListStreams" : {
"documentation" : "Lists your Amazon Kinesis streams.
The number of streams may be too large to return from a single call to ListStreams
. You can limit the number of returned streams using the Limit
parameter. If you do not specify a value for the Limit
parameter, Amazon Kinesis uses the default limit, which is currently 10.
You can detect if there are more streams available to list by using the HasMoreStreams
flag from the returned output. If there are more streams available, you can request more streams by using the name of the last stream returned by the ListStreams
request in the ExclusiveStartStreamName
parameter in a subsequent request to ListStreams
. The group of stream names returned by the subsequent request is then added to the list. You can continue this process until all the stream names have been collected in the list.
ListStreams has a limit of 5 transactions per second per account.
",
"operationName" : "ListStreams",
"deprecated" : false,
"input" : {
"variableName" : "listStreamsRequest",
"variableType" : "ListStreamsRequest",
"variableDeclarationType" : "ListStreamsRequest",
"documentation" : "Represents the input for ListStreams
.
",
"simpleType" : "ListStreamsRequest",
"variableSetterType" : "ListStreamsRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ListStreamsResult",
"documentation" : "Represents the output for ListStreams
.
"
},
"exceptions" : [ {
"exceptionName" : "LimitExceededException",
"documentation" : "The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed (5).
"
} ],
"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"
},
"ListTagsForStream" : {
"documentation" : "Lists the tags for the specified Amazon Kinesis stream.
",
"operationName" : "ListTagsForStream",
"deprecated" : false,
"input" : {
"variableName" : "listTagsForStreamRequest",
"variableType" : "ListTagsForStreamRequest",
"variableDeclarationType" : "ListTagsForStreamRequest",
"documentation" : "Represents the input for ListTagsForStream
.
",
"simpleType" : "ListTagsForStreamRequest",
"variableSetterType" : "ListTagsForStreamRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ListTagsForStreamResult",
"documentation" : "Represents the output for ListTagsForStream
.
"
},
"exceptions" : [ {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The requested resource could not be found. The stream might not be specified correctly, or it might not be in the ACTIVE
state if the operation requires it.
"
}, {
"exceptionName" : "InvalidArgumentException",
"documentation" : "A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.
"
}, {
"exceptionName" : "LimitExceededException",
"documentation" : "The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed (5).
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "ListTagsForStreamResult",
"asyncReturnType" : "ListTagsForStreamResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "listTagsForStream"
},
"MergeShards" : {
"documentation" : "Merges two adjacent shards in an Amazon Kinesis stream and combines them into a single shard to reduce the stream's capacity to ingest and transport data. Two shards are considered adjacent if the union of the hash key ranges for the two shards form a contiguous set with no gaps. For example, if you have two shards, one with a hash key range of 276...381 and the other with a hash key range of 382...454, then you could merge these two shards into a single shard that would have a hash key range of 276...454. After the merge, the single child shard receives data for all hash key values covered by the two parent shards.
MergeShards
is called when there is a need to reduce the overall capacity of a stream because of excess capacity that is not being used. You must specify the shard to be merged and the adjacent shard for a stream. For more information about merging shards, see Merge Two Shards in the Amazon Kinesis Streams Developer Guide.
If the stream is in the ACTIVE
state, you can call MergeShards
. If a stream is in the CREATING
, UPDATING
, or DELETING
state, MergeShards
returns a ResourceInUseException
. If the specified stream does not exist, MergeShards
returns a ResourceNotFoundException
.
You can use DescribeStream to check the state of the stream, which is returned in StreamStatus
.
MergeShards
is an asynchronous operation. Upon receiving a MergeShards
request, Amazon Kinesis immediately returns a response and sets the StreamStatus
to UPDATING
. After the operation is completed, Amazon Kinesis sets the StreamStatus
to ACTIVE
. Read and write operations continue to work while the stream is in the UPDATING
state.
You use DescribeStream to determine the shard IDs that are specified in the MergeShards
request.
If you try to operate on too many streams in parallel using CreateStream, DeleteStream, MergeShards
or SplitShard, you will receive a LimitExceededException
.
MergeShards
has limit of 5 transactions per second per account.
",
"operationName" : "MergeShards",
"deprecated" : false,
"input" : {
"variableName" : "mergeShardsRequest",
"variableType" : "MergeShardsRequest",
"variableDeclarationType" : "MergeShardsRequest",
"documentation" : "Represents the input for MergeShards
.
",
"simpleType" : "MergeShardsRequest",
"variableSetterType" : "MergeShardsRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "MergeShardsResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The requested resource could not be found. The stream might not be specified correctly, or it might not be in the ACTIVE
state if the operation requires it.
"
}, {
"exceptionName" : "ResourceInUseException",
"documentation" : "The resource is not available for this operation. For successful operation, the resource needs to be in the ACTIVE
state.
"
}, {
"exceptionName" : "InvalidArgumentException",
"documentation" : "A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.
"
}, {
"exceptionName" : "LimitExceededException",
"documentation" : "The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed (5).
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "MergeShardsResult",
"asyncReturnType" : "MergeShardsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "mergeShards"
},
"PutRecord" : {
"documentation" : "Writes a single data record into an Amazon Kinesis stream. Call PutRecord
to send data into the stream for real-time ingestion and subsequent processing, one record at a time. Each shard can support writes up to 1,000 records per second, up to a maximum data write total of 1 MB per second.
You must specify the name of the stream that captures, stores, and transports the data; a partition key; and the data blob itself.
The data blob can be any type of data; for example, a segment from a log file, geographic/location data, website clickstream data, and so on.
The partition key is used by Amazon Kinesis to distribute data across shards. Amazon Kinesis segregates the data records that belong to a stream into multiple shards, using the partition key associated with each data record to determine which shard a given data record belongs to.
Partition keys are Unicode strings, with a maximum length limit of 256 characters for each key. An MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards using the hash key ranges of the shards. You can override hashing the partition key to determine the shard by explicitly specifying a hash value using the ExplicitHashKey
parameter. For more information, see Adding Data to a Stream in the Amazon Kinesis Streams Developer Guide.
PutRecord
returns the shard ID of where the data record was placed and the sequence number that was assigned to the data record.
Sequence numbers increase over time and are specific to a shard within a stream, not across all shards within a stream. To guarantee strictly increasing ordering, write serially to a shard and use the SequenceNumberForOrdering
parameter. For more information, see Adding Data to a Stream in the Amazon Kinesis Streams Developer Guide.
If a PutRecord
request cannot be processed because of insufficient provisioned throughput on the shard involved in the request, PutRecord
throws ProvisionedThroughputExceededException
.
Data records are accessible for only 24 hours from the time that they are added to a stream.
",
"operationName" : "PutRecord",
"deprecated" : false,
"input" : {
"variableName" : "putRecordRequest",
"variableType" : "PutRecordRequest",
"variableDeclarationType" : "PutRecordRequest",
"documentation" : "Represents the input for PutRecord
.
",
"simpleType" : "PutRecordRequest",
"variableSetterType" : "PutRecordRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "PutRecordResult",
"documentation" : "Represents the output for PutRecord
.
"
},
"exceptions" : [ {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The requested resource could not be found. The stream might not be specified correctly, or it might not be in the ACTIVE
state if the operation requires it.
"
}, {
"exceptionName" : "InvalidArgumentException",
"documentation" : "A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.
"
}, {
"exceptionName" : "ProvisionedThroughputExceededException",
"documentation" : "The request rate for the stream is too high, or the requested data is too large for the available throughput. Reduce the frequency or size of your requests. For more information, see Streams Limits in the Amazon Kinesis Streams Developer Guide, and Error Retries and Exponential Backoff in AWS in the AWS General Reference.
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "PutRecordResult",
"asyncReturnType" : "PutRecordResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "putRecord"
},
"PutRecords" : {
"documentation" : "Writes multiple data records into an Amazon Kinesis stream in a single call (also referred to as a PutRecords
request). Use this operation to send data into the stream for data ingestion and processing.
Each PutRecords
request can support up to 500 records. Each record in the request can be as large as 1 MB, up to a limit of 5 MB for the entire request, including partition keys. Each shard can support writes up to 1,000 records per second, up to a maximum data write total of 1 MB per second.
You must specify the name of the stream that captures, stores, and transports the data; and an array of request Records
, with each record in the array requiring a partition key and data blob. The record size limit applies to the total size of the partition key and data blob.
The data blob can be any type of data; for example, a segment from a log file, geographic/location data, website clickstream data, and so on.
The partition key is used by Amazon Kinesis as input to a hash function that maps the partition key and associated data to a specific shard. An MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream. For more information, see Adding Data to a Stream in the Amazon Kinesis Streams Developer Guide.
Each record in the Records
array may include an optional parameter, ExplicitHashKey
, which overrides the partition key to shard mapping. This parameter allows a data producer to determine explicitly the shard where the record is stored. For more information, see Adding Multiple Records with PutRecords in the Amazon Kinesis Streams Developer Guide.
The PutRecords
response includes an array of response Records
. Each record in the response array directly correlates with a record in the request array using natural ordering, from the top to the bottom of the request and response. The response Records
array always includes the same number of records as the request array.
The response Records
array includes both successfully and unsuccessfully processed records. Amazon Kinesis attempts to process all records in each PutRecords
request. A single record failure does not stop the processing of subsequent records.
A successfully-processed record includes ShardId
and SequenceNumber
values. The ShardId
parameter identifies the shard in the stream where the record is stored. The SequenceNumber
parameter is an identifier assigned to the put record, unique to all records in the stream.
An unsuccessfully-processed record includes ErrorCode
and ErrorMessage
values. ErrorCode
reflects the type of error and can be one of the following values: ProvisionedThroughputExceededException
or InternalFailure
. ErrorMessage
provides more detailed information about the ProvisionedThroughputExceededException
exception including the account ID, stream name, and shard ID of the record that was throttled. For more information about partially successful responses, see Adding Multiple Records with PutRecords in the Amazon Kinesis Streams Developer Guide.
By default, data records are accessible for only 24 hours from the time that they are added to an Amazon Kinesis stream. This retention period can be modified using the DecreaseStreamRetentionPeriod and IncreaseStreamRetentionPeriod operations.
",
"operationName" : "PutRecords",
"deprecated" : false,
"input" : {
"variableName" : "putRecordsRequest",
"variableType" : "PutRecordsRequest",
"variableDeclarationType" : "PutRecordsRequest",
"documentation" : "A PutRecords
request.
",
"simpleType" : "PutRecordsRequest",
"variableSetterType" : "PutRecordsRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "PutRecordsResult",
"documentation" : "PutRecords
results.
"
},
"exceptions" : [ {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The requested resource could not be found. The stream might not be specified correctly, or it might not be in the ACTIVE
state if the operation requires it.
"
}, {
"exceptionName" : "InvalidArgumentException",
"documentation" : "A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.
"
}, {
"exceptionName" : "ProvisionedThroughputExceededException",
"documentation" : "The request rate for the stream is too high, or the requested data is too large for the available throughput. Reduce the frequency or size of your requests. For more information, see Streams Limits in the Amazon Kinesis Streams Developer Guide, and Error Retries and Exponential Backoff in AWS in the AWS General Reference.
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "PutRecordsResult",
"asyncReturnType" : "PutRecordsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "putRecords"
},
"RemoveTagsFromStream" : {
"documentation" : "Removes tags from the specified Amazon Kinesis stream. Removed tags are deleted and cannot be recovered after this operation successfully completes.
If you specify a tag that does not exist, it is ignored.
",
"operationName" : "RemoveTagsFromStream",
"deprecated" : false,
"input" : {
"variableName" : "removeTagsFromStreamRequest",
"variableType" : "RemoveTagsFromStreamRequest",
"variableDeclarationType" : "RemoveTagsFromStreamRequest",
"documentation" : "Represents the input for RemoveTagsFromStream
.
",
"simpleType" : "RemoveTagsFromStreamRequest",
"variableSetterType" : "RemoveTagsFromStreamRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "RemoveTagsFromStreamResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The requested resource could not be found. The stream might not be specified correctly, or it might not be in the ACTIVE
state if the operation requires it.
"
}, {
"exceptionName" : "ResourceInUseException",
"documentation" : "The resource is not available for this operation. For successful operation, the resource needs to be in the ACTIVE
state.
"
}, {
"exceptionName" : "InvalidArgumentException",
"documentation" : "A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.
"
}, {
"exceptionName" : "LimitExceededException",
"documentation" : "The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed (5).
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "RemoveTagsFromStreamResult",
"asyncReturnType" : "RemoveTagsFromStreamResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "removeTagsFromStream"
},
"SplitShard" : {
"documentation" : "Splits a shard into two new shards in the Amazon Kinesis stream to increase the stream's capacity to ingest and transport data. SplitShard
is called when there is a need to increase the overall capacity of a stream because of an expected increase in the volume of data records being ingested.
You can also use SplitShard
when a shard appears to be approaching its maximum utilization; for example, the producers sending data into the specific shard are suddenly sending more than previously anticipated. You can also call SplitShard
to increase stream capacity, so that more Amazon Kinesis applications can simultaneously read data from the stream for real-time processing.
You must specify the shard to be split and the new hash key, which is the position in the shard where the shard gets split in two. In many cases, the new hash key might simply be the average of the beginning and ending hash key, but it can be any hash key value in the range being mapped into the shard. For more information about splitting shards, see Split a Shard in the Amazon Kinesis Streams Developer Guide.
You can use DescribeStream to determine the shard ID and hash key values for the ShardToSplit
and NewStartingHashKey
parameters that are specified in the SplitShard
request.
SplitShard
is an asynchronous operation. Upon receiving a SplitShard
request, Amazon Kinesis immediately returns a response and sets the stream status to UPDATING
. After the operation is completed, Amazon Kinesis sets the stream status to ACTIVE
. Read and write operations continue to work while the stream is in the UPDATING
state.
You can use DescribeStream
to check the status of the stream, which is returned in StreamStatus
. If the stream is in the ACTIVE
state, you can call SplitShard
. If a stream is in CREATING
or UPDATING
or DELETING
states, DescribeStream
returns a ResourceInUseException
.
If the specified stream does not exist, DescribeStream
returns a ResourceNotFoundException
. If you try to create more shards than are authorized for your account, you receive a LimitExceededException
.
For the default shard limit for an AWS account, see Streams Limits in the Amazon Kinesis Streams Developer Guide. If you need to increase this limit, contact AWS Support.
If you try to operate on too many streams simultaneously using CreateStream, DeleteStream, MergeShards, and/or SplitShard, you receive a LimitExceededException
.
SplitShard
has limit of 5 transactions per second per account.
",
"operationName" : "SplitShard",
"deprecated" : false,
"input" : {
"variableName" : "splitShardRequest",
"variableType" : "SplitShardRequest",
"variableDeclarationType" : "SplitShardRequest",
"documentation" : "Represents the input for SplitShard
.
",
"simpleType" : "SplitShardRequest",
"variableSetterType" : "SplitShardRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "SplitShardResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The requested resource could not be found. The stream might not be specified correctly, or it might not be in the ACTIVE
state if the operation requires it.
"
}, {
"exceptionName" : "ResourceInUseException",
"documentation" : "The resource is not available for this operation. For successful operation, the resource needs to be in the ACTIVE
state.
"
}, {
"exceptionName" : "InvalidArgumentException",
"documentation" : "A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.
"
}, {
"exceptionName" : "LimitExceededException",
"documentation" : "The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed (5).
"
} ],
"hasBlobMemberAsPayload" : false,
"syncReturnType" : "SplitShardResult",
"asyncReturnType" : "SplitShardResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"authenticated" : true,
"methodName" : "splitShard"
}
},
"shapes" : {
"EnhancedMetrics" : {
"c2jName" : "EnhancedMetrics",
"documentation" : "Represents enhanced metrics types.
",
"shapeName" : "EnhancedMetrics",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "List of shard-level metrics.
The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
",
"name" : "ShardLevelMetrics",
"c2jName" : "ShardLevelMetrics",
"c2jShape" : "MetricsNameList",
"variable" : {
"variableName" : "shardLevelMetrics",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "List of shard-level metrics.
The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "shardLevelMetrics",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ShardLevelMetrics",
"marshallLocationName" : "ShardLevelMetrics",
"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" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "MetricsName",
"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" : "MetricsName",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member \n@see MetricsName*/",
"getterDocumentation" : "/**\n@return \n@see MetricsName*/",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : "MetricsName",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**List of shard-level metrics.
The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
\n@param shardLevelMetrics List of shard-level metrics. The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.\n@see MetricsName*/",
"getterDocumentation" : "/**
List of shard-level metrics.
The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
\n@return List of shard-level metrics. The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.\n@see MetricsName*/",
"fluentSetterDocumentation" : "/**
List of shard-level metrics.
The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
\n@param shardLevelMetrics List of shard-level metrics. The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/",
"varargSetterDocumentation" : "/**
List of shard-level metrics.
The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setShardLevelMetrics(java.util.Collection)} or {@link #withShardLevelMetrics(java.util.Collection)} if you want to override the existing values.
\n@param shardLevelMetrics List of shard-level metrics. The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "enhancedMetrics",
"variableType" : "EnhancedMetrics",
"variableDeclarationType" : "EnhancedMetrics",
"documentation" : null,
"simpleType" : "EnhancedMetrics",
"variableSetterType" : "EnhancedMetrics"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ShardLevelMetrics" : {
"documentation" : "
List of shard-level metrics.
The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
",
"name" : "ShardLevelMetrics",
"c2jName" : "ShardLevelMetrics",
"c2jShape" : "MetricsNameList",
"variable" : {
"variableName" : "shardLevelMetrics",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "List of shard-level metrics.
The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "shardLevelMetrics",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ShardLevelMetrics",
"marshallLocationName" : "ShardLevelMetrics",
"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" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "MetricsName",
"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" : "MetricsName",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member \n@see MetricsName*/",
"getterDocumentation" : "/**\n@return \n@see MetricsName*/",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : "MetricsName",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**List of shard-level metrics.
The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
\n@param shardLevelMetrics List of shard-level metrics. The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.\n@see MetricsName*/",
"getterDocumentation" : "/**
List of shard-level metrics.
The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
\n@return List of shard-level metrics. The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.\n@see MetricsName*/",
"fluentSetterDocumentation" : "/**
List of shard-level metrics.
The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
\n@param shardLevelMetrics List of shard-level metrics. The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/",
"varargSetterDocumentation" : "/**
List of shard-level metrics.
The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setShardLevelMetrics(java.util.Collection)} or {@link #withShardLevelMetrics(java.util.Collection)} if you want to override the existing values.
\n@param shardLevelMetrics List of shard-level metrics. The following are the valid shard-level metrics. The value \"ALL
\" enhances every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/"
}
}
},
"IncreaseStreamRetentionPeriodRequest" : {
"c2jName" : "IncreaseStreamRetentionPeriodInput",
"documentation" : "
Represents the input for IncreaseStreamRetentionPeriod.
",
"shapeName" : "IncreaseStreamRetentionPeriodRequest",
"deprecated" : false,
"required" : [ "StreamName", "RetentionPeriodHours" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the stream to modify.
",
"name" : "StreamName",
"c2jName" : "StreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stream to modify.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamName",
"marshallLocationName" : "StreamName",
"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 the stream to modify.
\n@param streamName The name of the stream to modify.*/",
"getterDocumentation" : "/**The name of the stream to modify.
\n@return The name of the stream to modify.*/",
"fluentSetterDocumentation" : "/**The name of the stream to modify.
\n@param streamName The name of the stream to modify.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stream to modify.
\n@param streamName The name of the stream to modify.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The new retention period of the stream, in hours. Must be more than the current retention period.
",
"name" : "RetentionPeriodHours",
"c2jName" : "RetentionPeriodHours",
"c2jShape" : "RetentionPeriodHours",
"variable" : {
"variableName" : "retentionPeriodHours",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The new retention period of the stream, in hours. Must be more than the current retention period.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "retentionPeriodHours",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "RetentionPeriodHours",
"marshallLocationName" : "RetentionPeriodHours",
"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 new retention period of the stream, in hours. Must be more than the current retention period.
\n@param retentionPeriodHours The new retention period of the stream, in hours. Must be more than the current retention period.*/",
"getterDocumentation" : "/**The new retention period of the stream, in hours. Must be more than the current retention period.
\n@return The new retention period of the stream, in hours. Must be more than the current retention period.*/",
"fluentSetterDocumentation" : "/**The new retention period of the stream, in hours. Must be more than the current retention period.
\n@param retentionPeriodHours The new retention period of the stream, in hours. Must be more than the current retention period.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The new retention period of the stream, in hours. Must be more than the current retention period.
\n@param retentionPeriodHours The new retention period of the stream, in hours. Must be more than the current retention period.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "increaseStreamRetentionPeriodRequest",
"variableType" : "IncreaseStreamRetentionPeriodRequest",
"variableDeclarationType" : "IncreaseStreamRetentionPeriodRequest",
"documentation" : null,
"simpleType" : "IncreaseStreamRetentionPeriodRequest",
"variableSetterType" : "IncreaseStreamRetentionPeriodRequest"
},
"marshaller" : {
"action" : "IncreaseStreamRetentionPeriod",
"verb" : "POST",
"target" : "Kinesis_20131202.IncreaseStreamRetentionPeriod",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"StreamName" : {
"documentation" : "The name of the stream to modify.
",
"name" : "StreamName",
"c2jName" : "StreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stream to modify.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamName",
"marshallLocationName" : "StreamName",
"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 the stream to modify.
\n@param streamName The name of the stream to modify.*/",
"getterDocumentation" : "/**The name of the stream to modify.
\n@return The name of the stream to modify.*/",
"fluentSetterDocumentation" : "/**The name of the stream to modify.
\n@param streamName The name of the stream to modify.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stream to modify.
\n@param streamName The name of the stream to modify.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"RetentionPeriodHours" : {
"documentation" : "The new retention period of the stream, in hours. Must be more than the current retention period.
",
"name" : "RetentionPeriodHours",
"c2jName" : "RetentionPeriodHours",
"c2jShape" : "RetentionPeriodHours",
"variable" : {
"variableName" : "retentionPeriodHours",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The new retention period of the stream, in hours. Must be more than the current retention period.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "retentionPeriodHours",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "RetentionPeriodHours",
"marshallLocationName" : "RetentionPeriodHours",
"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 new retention period of the stream, in hours. Must be more than the current retention period.
\n@param retentionPeriodHours The new retention period of the stream, in hours. Must be more than the current retention period.*/",
"getterDocumentation" : "/**The new retention period of the stream, in hours. Must be more than the current retention period.
\n@return The new retention period of the stream, in hours. Must be more than the current retention period.*/",
"fluentSetterDocumentation" : "/**The new retention period of the stream, in hours. Must be more than the current retention period.
\n@param retentionPeriodHours The new retention period of the stream, in hours. Must be more than the current retention period.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The new retention period of the stream, in hours. Must be more than the current retention period.
\n@param retentionPeriodHours The new retention period of the stream, in hours. Must be more than the current retention period.\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" : "AT_SEQUENCE_NUMBER",
"value" : "AT_SEQUENCE_NUMBER"
}, {
"name" : "AFTER_SEQUENCE_NUMBER",
"value" : "AFTER_SEQUENCE_NUMBER"
}, {
"name" : "TRIM_HORIZON",
"value" : "TRIM_HORIZON"
}, {
"name" : "LATEST",
"value" : "LATEST"
}, {
"name" : "AT_TIMESTAMP",
"value" : "AT_TIMESTAMP"
} ],
"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 for GetRecords.
",
"shapeName" : "GetRecordsResult",
"deprecated" : false,
"required" : [ "Records" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The data records retrieved from the shard.
",
"name" : "Records",
"c2jName" : "Records",
"c2jShape" : "RecordList",
"variable" : {
"variableName" : "records",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "The data records retrieved from the shard.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "records",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"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" : "com.amazonaws.internal.SdkInternalList",
"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" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The data records retrieved from the shard.
\n@param records The data records retrieved from the shard.*/",
"getterDocumentation" : "/**The data records retrieved from the shard.
\n@return The data records retrieved from the shard.*/",
"fluentSetterDocumentation" : "/**The data records retrieved from the shard.
\n@param records The data records retrieved from the shard.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The data records retrieved from the shard.
\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 data records retrieved from the shard.\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 data 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 data 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 data 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 data 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 data 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 data 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 data 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 data 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 data 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 data 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.*/"
}, {
"documentation" : "The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.
",
"name" : "MillisBehindLatest",
"c2jName" : "MillisBehindLatest",
"c2jShape" : "MillisBehindLatest",
"variable" : {
"variableName" : "millisBehindLatest",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.
",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"setterModel" : {
"variableName" : "millisBehindLatest",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MillisBehindLatest",
"marshallLocationName" : "MillisBehindLatest",
"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 number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.
\n@param millisBehindLatest The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.*/",
"getterDocumentation" : "/**The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.
\n@return The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.*/",
"fluentSetterDocumentation" : "/**The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.
\n@param millisBehindLatest The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.
\n@param millisBehindLatest The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.\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" : {
"MillisBehindLatest" : {
"documentation" : "The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.
",
"name" : "MillisBehindLatest",
"c2jName" : "MillisBehindLatest",
"c2jShape" : "MillisBehindLatest",
"variable" : {
"variableName" : "millisBehindLatest",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.
",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"setterModel" : {
"variableName" : "millisBehindLatest",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MillisBehindLatest",
"marshallLocationName" : "MillisBehindLatest",
"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 number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.
\n@param millisBehindLatest The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.*/",
"getterDocumentation" : "/**The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.
\n@return The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.*/",
"fluentSetterDocumentation" : "/**The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.
\n@param millisBehindLatest The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.
\n@param millisBehindLatest The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"NextShardIterator" : {
"documentation" : "The next position in the shard from which to start sequentially reading data 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 data 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 data 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 data 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 data 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 data 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 data 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 data 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 data 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 data 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 data records retrieved from the shard.
",
"name" : "Records",
"c2jName" : "Records",
"c2jShape" : "RecordList",
"variable" : {
"variableName" : "records",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "The data records retrieved from the shard.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "records",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"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" : "com.amazonaws.internal.SdkInternalList",
"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" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The data records retrieved from the shard.
\n@param records The data records retrieved from the shard.*/",
"getterDocumentation" : "/**The data records retrieved from the shard.
\n@return The data records retrieved from the shard.*/",
"fluentSetterDocumentation" : "/**The data records retrieved from the shard.
\n@param records The data records retrieved from the shard.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The data records retrieved from the shard.
\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 data records retrieved from the shard.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListTagsForStreamResult" : {
"c2jName" : "ListTagsForStreamOutput",
"documentation" : "Represents the output for ListTagsForStream
.
",
"shapeName" : "ListTagsForStreamResult",
"deprecated" : false,
"required" : [ "Tags", "HasMoreTags" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.
",
"name" : "Tags",
"c2jName" : "Tags",
"c2jShape" : "TagList",
"variable" : {
"variableName" : "tags",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "tags",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Tags",
"marshallLocationName" : "Tags",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Tag",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Tag",
"variable" : {
"variableName" : "member",
"variableType" : "Tag",
"variableDeclarationType" : "Tag",
"documentation" : "",
"simpleType" : "Tag",
"variableSetterType" : "Tag"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Tag",
"variableDeclarationType" : "Tag",
"documentation" : "",
"simpleType" : "Tag",
"variableSetterType" : "Tag"
},
"getterModel" : {
"returnType" : "Tag",
"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" : "Tag",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.
\n@param tags A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.*/",
"getterDocumentation" : "/**A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.
\n@return A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.*/",
"fluentSetterDocumentation" : "/**A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.
\n@param tags A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the existing values.
\n@param tags A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.
",
"name" : "HasMoreTags",
"c2jName" : "HasMoreTags",
"c2jShape" : "BooleanObject",
"variable" : {
"variableName" : "hasMoreTags",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "hasMoreTags",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "HasMoreTags",
"marshallLocationName" : "HasMoreTags",
"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 set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.
\n@param hasMoreTags If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.*/",
"getterDocumentation" : "/**If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.
\n@return If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.*/",
"fluentSetterDocumentation" : "/**If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.
\n@param hasMoreTags If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.
\n@param hasMoreTags If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listTagsForStreamResult",
"variableType" : "ListTagsForStreamResult",
"variableDeclarationType" : "ListTagsForStreamResult",
"documentation" : null,
"simpleType" : "ListTagsForStreamResult",
"variableSetterType" : "ListTagsForStreamResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"HasMoreTags" : {
"documentation" : "If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.
",
"name" : "HasMoreTags",
"c2jName" : "HasMoreTags",
"c2jShape" : "BooleanObject",
"variable" : {
"variableName" : "hasMoreTags",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "hasMoreTags",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "HasMoreTags",
"marshallLocationName" : "HasMoreTags",
"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 set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.
\n@param hasMoreTags If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.*/",
"getterDocumentation" : "/**If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.
\n@return If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.*/",
"fluentSetterDocumentation" : "/**If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.
\n@param hasMoreTags If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.
\n@param hasMoreTags If set to true
, more tags are available. To request additional tags, set ExclusiveStartTagKey
to the key of the last tag returned.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Tags" : {
"documentation" : "A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.
",
"name" : "Tags",
"c2jName" : "Tags",
"c2jShape" : "TagList",
"variable" : {
"variableName" : "tags",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "tags",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Tags",
"marshallLocationName" : "Tags",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Tag",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Tag",
"variable" : {
"variableName" : "member",
"variableType" : "Tag",
"variableDeclarationType" : "Tag",
"documentation" : "",
"simpleType" : "Tag",
"variableSetterType" : "Tag"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Tag",
"variableDeclarationType" : "Tag",
"documentation" : "",
"simpleType" : "Tag",
"variableSetterType" : "Tag"
},
"getterModel" : {
"returnType" : "Tag",
"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" : "Tag",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.
\n@param tags A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.*/",
"getterDocumentation" : "/**A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.
\n@return A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.*/",
"fluentSetterDocumentation" : "/**A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.
\n@param tags A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the existing values.
\n@param tags A list of tags associated with StreamName
, starting with the first tag after ExclusiveStartTagKey
and up to the specified Limit
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"RemoveTagsFromStreamResult" : {
"c2jName" : "RemoveTagsFromStreamResult",
"documentation" : null,
"shapeName" : "RemoveTagsFromStreamResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "removeTagsFromStreamResult",
"variableType" : "RemoveTagsFromStreamResult",
"variableDeclarationType" : "RemoveTagsFromStreamResult",
"documentation" : null,
"simpleType" : "RemoveTagsFromStreamResult",
"variableSetterType" : "RemoveTagsFromStreamResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"HashKeyRange" : {
"c2jName" : "HashKeyRange",
"documentation" : "The range of possible hash key values for the shard, which is a set of ordered contiguous positive integers.
",
"shapeName" : "HashKeyRange",
"deprecated" : false,
"required" : [ "StartingHashKey", "EndingHashKey" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The starting hash key of the hash key range.
",
"name" : "StartingHashKey",
"c2jName" : "StartingHashKey",
"c2jShape" : "HashKey",
"variable" : {
"variableName" : "startingHashKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The starting hash key of the hash key range.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "startingHashKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StartingHashKey",
"marshallLocationName" : "StartingHashKey",
"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 starting hash key of the hash key range.
\n@param startingHashKey The starting hash key of the hash key range.*/",
"getterDocumentation" : "/**The starting hash key of the hash key range.
\n@return The starting hash key of the hash key range.*/",
"fluentSetterDocumentation" : "/**The starting hash key of the hash key range.
\n@param startingHashKey The starting hash key of the hash key range.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The starting hash key of the hash key range.
\n@param startingHashKey The starting hash key of the hash key range.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The ending hash key of the hash key range.
",
"name" : "EndingHashKey",
"c2jName" : "EndingHashKey",
"c2jShape" : "HashKey",
"variable" : {
"variableName" : "endingHashKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ending hash key of the hash key range.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "endingHashKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EndingHashKey",
"marshallLocationName" : "EndingHashKey",
"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 ending hash key of the hash key range.
\n@param endingHashKey The ending hash key of the hash key range.*/",
"getterDocumentation" : "/**The ending hash key of the hash key range.
\n@return The ending hash key of the hash key range.*/",
"fluentSetterDocumentation" : "/**The ending hash key of the hash key range.
\n@param endingHashKey The ending hash key of the hash key range.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ending hash key of the hash key range.
\n@param endingHashKey The ending hash key of the hash key range.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "hashKeyRange",
"variableType" : "HashKeyRange",
"variableDeclarationType" : "HashKeyRange",
"documentation" : null,
"simpleType" : "HashKeyRange",
"variableSetterType" : "HashKeyRange"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"StartingHashKey" : {
"documentation" : "The starting hash key of the hash key range.
",
"name" : "StartingHashKey",
"c2jName" : "StartingHashKey",
"c2jShape" : "HashKey",
"variable" : {
"variableName" : "startingHashKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The starting hash key of the hash key range.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "startingHashKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StartingHashKey",
"marshallLocationName" : "StartingHashKey",
"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 starting hash key of the hash key range.
\n@param startingHashKey The starting hash key of the hash key range.*/",
"getterDocumentation" : "/**The starting hash key of the hash key range.
\n@return The starting hash key of the hash key range.*/",
"fluentSetterDocumentation" : "/**The starting hash key of the hash key range.
\n@param startingHashKey The starting hash key of the hash key range.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The starting hash key of the hash key range.
\n@param startingHashKey The starting hash key of the hash key range.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"EndingHashKey" : {
"documentation" : "The ending hash key of the hash key range.
",
"name" : "EndingHashKey",
"c2jName" : "EndingHashKey",
"c2jShape" : "HashKey",
"variable" : {
"variableName" : "endingHashKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ending hash key of the hash key range.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "endingHashKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EndingHashKey",
"marshallLocationName" : "EndingHashKey",
"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 ending hash key of the hash key range.
\n@param endingHashKey The ending hash key of the hash key range.*/",
"getterDocumentation" : "/**The ending hash key of the hash key range.
\n@return The ending hash key of the hash key range.*/",
"fluentSetterDocumentation" : "/**The ending hash key of the hash key range.
\n@param endingHashKey The ending hash key of the hash key range.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ending hash key of the hash key range.
\n@param endingHashKey The ending hash key of the hash key range.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DecreaseStreamRetentionPeriodResult" : {
"c2jName" : "DecreaseStreamRetentionPeriodResult",
"documentation" : null,
"shapeName" : "DecreaseStreamRetentionPeriodResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "decreaseStreamRetentionPeriodResult",
"variableType" : "DecreaseStreamRetentionPeriodResult",
"variableDeclarationType" : "DecreaseStreamRetentionPeriodResult",
"documentation" : null,
"simpleType" : "DecreaseStreamRetentionPeriodResult",
"variableSetterType" : "DecreaseStreamRetentionPeriodResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"GetRecordsRequest" : {
"c2jName" : "GetRecordsInput",
"documentation" : "Represents the input for GetRecords.
",
"shapeName" : "GetRecordsRequest",
"deprecated" : false,
"required" : [ "ShardIterator" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.
",
"name" : "ShardIterator",
"c2jName" : "ShardIterator",
"c2jShape" : "ShardIterator",
"variable" : {
"variableName" : "shardIterator",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the 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 you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.
\n@param shardIterator The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.*/",
"getterDocumentation" : "/**The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.
\n@return The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.*/",
"fluentSetterDocumentation" : "/**The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.
\n@param shardIterator The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the 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 you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.
\n@param shardIterator The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the 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. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.
",
"name" : "Limit",
"c2jName" : "Limit",
"c2jShape" : "GetRecordsInputLimit",
"variable" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.
",
"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. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.
\n@param limit The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.*/",
"getterDocumentation" : "/**The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.
\n@return The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.*/",
"fluentSetterDocumentation" : "/**The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.
\n@param limit The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.
\n@param limit The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.\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" : "Kinesis_20131202.GetRecords",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ShardIterator" : {
"documentation" : "The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.
",
"name" : "ShardIterator",
"c2jName" : "ShardIterator",
"c2jShape" : "ShardIterator",
"variable" : {
"variableName" : "shardIterator",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the 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 you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.
\n@param shardIterator The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.*/",
"getterDocumentation" : "/**The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.
\n@return The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.*/",
"fluentSetterDocumentation" : "/**The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.
\n@param shardIterator The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the 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 you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.
\n@param shardIterator The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the 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. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.
",
"name" : "Limit",
"c2jName" : "Limit",
"c2jShape" : "GetRecordsInputLimit",
"variable" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.
",
"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. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.
\n@param limit The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.*/",
"getterDocumentation" : "/**The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.
\n@return The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.*/",
"fluentSetterDocumentation" : "/**The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.
\n@param limit The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.
\n@param limit The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"IncreaseStreamRetentionPeriodResult" : {
"c2jName" : "IncreaseStreamRetentionPeriodResult",
"documentation" : null,
"shapeName" : "IncreaseStreamRetentionPeriodResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "increaseStreamRetentionPeriodResult",
"variableType" : "IncreaseStreamRetentionPeriodResult",
"variableDeclarationType" : "IncreaseStreamRetentionPeriodResult",
"documentation" : null,
"simpleType" : "IncreaseStreamRetentionPeriodResult",
"variableSetterType" : "IncreaseStreamRetentionPeriodResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"PutRecordsResult" : {
"c2jName" : "PutRecordsOutput",
"documentation" : "PutRecords
results.
",
"shapeName" : "PutRecordsResult",
"deprecated" : false,
"required" : [ "Records" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The number of unsuccessfully processed records in a PutRecords
request.
",
"name" : "FailedRecordCount",
"c2jName" : "FailedRecordCount",
"c2jShape" : "PositiveIntegerObject",
"variable" : {
"variableName" : "failedRecordCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The number of unsuccessfully processed records in a PutRecords
request.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "failedRecordCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FailedRecordCount",
"marshallLocationName" : "FailedRecordCount",
"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 number of unsuccessfully processed records in a PutRecords
request.
\n@param failedRecordCount The number of unsuccessfully processed records in a PutRecords
request.*/",
"getterDocumentation" : "/**The number of unsuccessfully processed records in a PutRecords
request.
\n@return The number of unsuccessfully processed records in a PutRecords
request.*/",
"fluentSetterDocumentation" : "/**The number of unsuccessfully processed records in a PutRecords
request.
\n@param failedRecordCount The number of unsuccessfully processed records in a PutRecords
request.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The number of unsuccessfully processed records in a PutRecords
request.
\n@param failedRecordCount The number of unsuccessfully processed records in a PutRecords
request.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.
",
"name" : "Records",
"c2jName" : "Records",
"c2jShape" : "PutRecordsResultEntryList",
"variable" : {
"variableName" : "records",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "records",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"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" : "PutRecordsResultEntry",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "PutRecordsResultEntry",
"variable" : {
"variableName" : "member",
"variableType" : "PutRecordsResultEntry",
"variableDeclarationType" : "PutRecordsResultEntry",
"documentation" : "",
"simpleType" : "PutRecordsResultEntry",
"variableSetterType" : "PutRecordsResultEntry"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "PutRecordsResultEntry",
"variableDeclarationType" : "PutRecordsResultEntry",
"documentation" : "",
"simpleType" : "PutRecordsResultEntry",
"variableSetterType" : "PutRecordsResultEntry"
},
"getterModel" : {
"returnType" : "PutRecordsResultEntry",
"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" : "PutRecordsResultEntry",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.
\n@param records An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.*/",
"getterDocumentation" : "/**An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.
\n@return An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.*/",
"fluentSetterDocumentation" : "/**An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.
\n@param records An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.
\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 An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "putRecordsResult",
"variableType" : "PutRecordsResult",
"variableDeclarationType" : "PutRecordsResult",
"documentation" : null,
"simpleType" : "PutRecordsResult",
"variableSetterType" : "PutRecordsResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"FailedRecordCount" : {
"documentation" : "The number of unsuccessfully processed records in a PutRecords
request.
",
"name" : "FailedRecordCount",
"c2jName" : "FailedRecordCount",
"c2jShape" : "PositiveIntegerObject",
"variable" : {
"variableName" : "failedRecordCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The number of unsuccessfully processed records in a PutRecords
request.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "failedRecordCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FailedRecordCount",
"marshallLocationName" : "FailedRecordCount",
"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 number of unsuccessfully processed records in a PutRecords
request.
\n@param failedRecordCount The number of unsuccessfully processed records in a PutRecords
request.*/",
"getterDocumentation" : "/**The number of unsuccessfully processed records in a PutRecords
request.
\n@return The number of unsuccessfully processed records in a PutRecords
request.*/",
"fluentSetterDocumentation" : "/**The number of unsuccessfully processed records in a PutRecords
request.
\n@param failedRecordCount The number of unsuccessfully processed records in a PutRecords
request.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The number of unsuccessfully processed records in a PutRecords
request.
\n@param failedRecordCount The number of unsuccessfully processed records in a PutRecords
request.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Records" : {
"documentation" : "An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.
",
"name" : "Records",
"c2jName" : "Records",
"c2jShape" : "PutRecordsResultEntryList",
"variable" : {
"variableName" : "records",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "records",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"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" : "PutRecordsResultEntry",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "PutRecordsResultEntry",
"variable" : {
"variableName" : "member",
"variableType" : "PutRecordsResultEntry",
"variableDeclarationType" : "PutRecordsResultEntry",
"documentation" : "",
"simpleType" : "PutRecordsResultEntry",
"variableSetterType" : "PutRecordsResultEntry"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "PutRecordsResultEntry",
"variableDeclarationType" : "PutRecordsResultEntry",
"documentation" : "",
"simpleType" : "PutRecordsResultEntry",
"variableSetterType" : "PutRecordsResultEntry"
},
"getterModel" : {
"returnType" : "PutRecordsResultEntry",
"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" : "PutRecordsResultEntry",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.
\n@param records An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.*/",
"getterDocumentation" : "/**An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.
\n@return An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.*/",
"fluentSetterDocumentation" : "/**An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.
\n@param records An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.
\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 An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber
and ShardId
in the result. A record that fails to be added to a stream includes ErrorCode
and ErrorMessage
in the result.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvalidArgumentException" : {
"c2jName" : "InvalidArgumentException",
"documentation" : "A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.
",
"shapeName" : "InvalidArgumentException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ ],
"enums" : null,
"variable" : {
"variableName" : "invalidArgumentException",
"variableType" : "InvalidArgumentException",
"variableDeclarationType" : "InvalidArgumentException",
"documentation" : null,
"simpleType" : "InvalidArgumentException",
"variableSetterType" : "InvalidArgumentException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidArgumentException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"ResourceInUseException" : {
"c2jName" : "ResourceInUseException",
"documentation" : "The resource is not available for this operation. For successful operation, the resource needs to be in the ACTIVE
state.
",
"shapeName" : "ResourceInUseException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ ],
"enums" : null,
"variable" : {
"variableName" : "resourceInUseException",
"variableType" : "ResourceInUseException",
"variableDeclarationType" : "ResourceInUseException",
"documentation" : null,
"simpleType" : "ResourceInUseException",
"variableSetterType" : "ResourceInUseException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "ResourceInUseException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"GetShardIteratorResult" : {
"c2jName" : "GetShardIteratorOutput",
"documentation" : "Represents the output for GetShardIterator
.
",
"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 data records sequentially. A shard iterator specifies this position using the sequence number of a data 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 data records sequentially. A shard iterator specifies this position using the sequence number of a data 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 data records sequentially. A shard iterator specifies this position using the sequence number of a data record in a shard.
\n@param shardIterator The position in the shard from which to start reading data records sequentially. A shard iterator specifies this position using the sequence number of a data record in a shard.*/",
"getterDocumentation" : "/**The position in the shard from which to start reading data records sequentially. A shard iterator specifies this position using the sequence number of a data record in a shard.
\n@return The position in the shard from which to start reading data records sequentially. A shard iterator specifies this position using the sequence number of a data record in a shard.*/",
"fluentSetterDocumentation" : "/**The position in the shard from which to start reading data records sequentially. A shard iterator specifies this position using the sequence number of a data record in a shard.
\n@param shardIterator The position in the shard from which to start reading data records sequentially. A shard iterator specifies this position using the sequence number of a data 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 data records sequentially. A shard iterator specifies this position using the sequence number of a data record in a shard.
\n@param shardIterator The position in the shard from which to start reading data records sequentially. A shard iterator specifies this position using the sequence number of a data 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 data records sequentially. A shard iterator specifies this position using the sequence number of a data 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 data records sequentially. A shard iterator specifies this position using the sequence number of a data 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 data records sequentially. A shard iterator specifies this position using the sequence number of a data record in a shard.
\n@param shardIterator The position in the shard from which to start reading data records sequentially. A shard iterator specifies this position using the sequence number of a data record in a shard.*/",
"getterDocumentation" : "/**The position in the shard from which to start reading data records sequentially. A shard iterator specifies this position using the sequence number of a data record in a shard.
\n@return The position in the shard from which to start reading data records sequentially. A shard iterator specifies this position using the sequence number of a data record in a shard.*/",
"fluentSetterDocumentation" : "/**The position in the shard from which to start reading data records sequentially. A shard iterator specifies this position using the sequence number of a data record in a shard.
\n@param shardIterator The position in the shard from which to start reading data records sequentially. A shard iterator specifies this position using the sequence number of a data 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 data records sequentially. A shard iterator specifies this position using the sequence number of a data record in a shard.
\n@param shardIterator The position in the shard from which to start reading data records sequentially. A shard iterator specifies this position using the sequence number of a data record in a shard.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"AddTagsToStreamResult" : {
"c2jName" : "AddTagsToStreamResult",
"documentation" : null,
"shapeName" : "AddTagsToStreamResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "addTagsToStreamResult",
"variableType" : "AddTagsToStreamResult",
"variableDeclarationType" : "AddTagsToStreamResult",
"documentation" : null,
"simpleType" : "AddTagsToStreamResult",
"variableSetterType" : "AddTagsToStreamResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"EnableEnhancedMonitoringResult" : {
"c2jName" : "EnhancedMonitoringOutput",
"documentation" : "Represents the output for EnableEnhancedMonitoring and DisableEnhancedMonitoring.
",
"shapeName" : "EnableEnhancedMonitoringResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the Amazon Kinesis stream.
",
"name" : "StreamName",
"c2jName" : "StreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the Amazon Kinesis stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamName",
"marshallLocationName" : "StreamName",
"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 the Amazon Kinesis stream.
\n@param streamName The name of the Amazon Kinesis stream.*/",
"getterDocumentation" : "/**The name of the Amazon Kinesis stream.
\n@return The name of the Amazon Kinesis stream.*/",
"fluentSetterDocumentation" : "/**The name of the Amazon Kinesis stream.
\n@param streamName The name of the Amazon Kinesis stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the Amazon Kinesis stream.
\n@param streamName The name of the Amazon Kinesis stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Represents the current state of the metrics that are in the enhanced state before the operation.
",
"name" : "CurrentShardLevelMetrics",
"c2jName" : "CurrentShardLevelMetrics",
"c2jShape" : "MetricsNameList",
"variable" : {
"variableName" : "currentShardLevelMetrics",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "Represents the current state of the metrics that are in the enhanced state before the operation.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "currentShardLevelMetrics",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CurrentShardLevelMetrics",
"marshallLocationName" : "CurrentShardLevelMetrics",
"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" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "MetricsName",
"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" : "MetricsName",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member \n@see MetricsName*/",
"getterDocumentation" : "/**\n@return \n@see MetricsName*/",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : "MetricsName",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**Represents the current state of the metrics that are in the enhanced state before the operation.
\n@param currentShardLevelMetrics Represents the current state of the metrics that are in the enhanced state before the operation.\n@see MetricsName*/",
"getterDocumentation" : "/**Represents the current state of the metrics that are in the enhanced state before the operation.
\n@return Represents the current state of the metrics that are in the enhanced state before the operation.\n@see MetricsName*/",
"fluentSetterDocumentation" : "/**Represents the current state of the metrics that are in the enhanced state before the operation.
\n@param currentShardLevelMetrics Represents the current state of the metrics that are in the enhanced state before the operation.\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/",
"varargSetterDocumentation" : "/**Represents the current state of the metrics that are in the enhanced state before the operation.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setCurrentShardLevelMetrics(java.util.Collection)} or {@link #withCurrentShardLevelMetrics(java.util.Collection)} if you want to override the existing values.
\n@param currentShardLevelMetrics Represents the current state of the metrics that are in the enhanced state before the operation.\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/"
}, {
"documentation" : "Represents the list of all the metrics that would be in the enhanced state after the operation.
",
"name" : "DesiredShardLevelMetrics",
"c2jName" : "DesiredShardLevelMetrics",
"c2jShape" : "MetricsNameList",
"variable" : {
"variableName" : "desiredShardLevelMetrics",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "Represents the list of all the metrics that would be in the enhanced state after the operation.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "desiredShardLevelMetrics",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DesiredShardLevelMetrics",
"marshallLocationName" : "DesiredShardLevelMetrics",
"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" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "MetricsName",
"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" : "MetricsName",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member \n@see MetricsName*/",
"getterDocumentation" : "/**\n@return \n@see MetricsName*/",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : "MetricsName",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**Represents the list of all the metrics that would be in the enhanced state after the operation.
\n@param desiredShardLevelMetrics Represents the list of all the metrics that would be in the enhanced state after the operation.\n@see MetricsName*/",
"getterDocumentation" : "/**Represents the list of all the metrics that would be in the enhanced state after the operation.
\n@return Represents the list of all the metrics that would be in the enhanced state after the operation.\n@see MetricsName*/",
"fluentSetterDocumentation" : "/**Represents the list of all the metrics that would be in the enhanced state after the operation.
\n@param desiredShardLevelMetrics Represents the list of all the metrics that would be in the enhanced state after the operation.\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/",
"varargSetterDocumentation" : "/**Represents the list of all the metrics that would be in the enhanced state after the operation.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setDesiredShardLevelMetrics(java.util.Collection)} or {@link #withDesiredShardLevelMetrics(java.util.Collection)} if you want to override the existing values.
\n@param desiredShardLevelMetrics Represents the list of all the metrics that would be in the enhanced state after the operation.\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "enableEnhancedMonitoringResult",
"variableType" : "EnableEnhancedMonitoringResult",
"variableDeclarationType" : "EnableEnhancedMonitoringResult",
"documentation" : null,
"simpleType" : "EnableEnhancedMonitoringResult",
"variableSetterType" : "EnableEnhancedMonitoringResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"CurrentShardLevelMetrics" : {
"documentation" : "Represents the current state of the metrics that are in the enhanced state before the operation.
",
"name" : "CurrentShardLevelMetrics",
"c2jName" : "CurrentShardLevelMetrics",
"c2jShape" : "MetricsNameList",
"variable" : {
"variableName" : "currentShardLevelMetrics",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "Represents the current state of the metrics that are in the enhanced state before the operation.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "currentShardLevelMetrics",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CurrentShardLevelMetrics",
"marshallLocationName" : "CurrentShardLevelMetrics",
"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" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "MetricsName",
"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" : "MetricsName",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member \n@see MetricsName*/",
"getterDocumentation" : "/**\n@return \n@see MetricsName*/",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : "MetricsName",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**Represents the current state of the metrics that are in the enhanced state before the operation.
\n@param currentShardLevelMetrics Represents the current state of the metrics that are in the enhanced state before the operation.\n@see MetricsName*/",
"getterDocumentation" : "/**Represents the current state of the metrics that are in the enhanced state before the operation.
\n@return Represents the current state of the metrics that are in the enhanced state before the operation.\n@see MetricsName*/",
"fluentSetterDocumentation" : "/**Represents the current state of the metrics that are in the enhanced state before the operation.
\n@param currentShardLevelMetrics Represents the current state of the metrics that are in the enhanced state before the operation.\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/",
"varargSetterDocumentation" : "/**Represents the current state of the metrics that are in the enhanced state before the operation.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setCurrentShardLevelMetrics(java.util.Collection)} or {@link #withCurrentShardLevelMetrics(java.util.Collection)} if you want to override the existing values.
\n@param currentShardLevelMetrics Represents the current state of the metrics that are in the enhanced state before the operation.\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/"
},
"StreamName" : {
"documentation" : "The name of the Amazon Kinesis stream.
",
"name" : "StreamName",
"c2jName" : "StreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the Amazon Kinesis stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamName",
"marshallLocationName" : "StreamName",
"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 the Amazon Kinesis stream.
\n@param streamName The name of the Amazon Kinesis stream.*/",
"getterDocumentation" : "/**The name of the Amazon Kinesis stream.
\n@return The name of the Amazon Kinesis stream.*/",
"fluentSetterDocumentation" : "/**The name of the Amazon Kinesis stream.
\n@param streamName The name of the Amazon Kinesis stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the Amazon Kinesis stream.
\n@param streamName The name of the Amazon Kinesis stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"DesiredShardLevelMetrics" : {
"documentation" : "Represents the list of all the metrics that would be in the enhanced state after the operation.
",
"name" : "DesiredShardLevelMetrics",
"c2jName" : "DesiredShardLevelMetrics",
"c2jShape" : "MetricsNameList",
"variable" : {
"variableName" : "desiredShardLevelMetrics",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "Represents the list of all the metrics that would be in the enhanced state after the operation.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "desiredShardLevelMetrics",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DesiredShardLevelMetrics",
"marshallLocationName" : "DesiredShardLevelMetrics",
"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" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "MetricsName",
"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" : "MetricsName",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member \n@see MetricsName*/",
"getterDocumentation" : "/**\n@return \n@see MetricsName*/",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : "MetricsName",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**Represents the list of all the metrics that would be in the enhanced state after the operation.
\n@param desiredShardLevelMetrics Represents the list of all the metrics that would be in the enhanced state after the operation.\n@see MetricsName*/",
"getterDocumentation" : "/**Represents the list of all the metrics that would be in the enhanced state after the operation.
\n@return Represents the list of all the metrics that would be in the enhanced state after the operation.\n@see MetricsName*/",
"fluentSetterDocumentation" : "/**Represents the list of all the metrics that would be in the enhanced state after the operation.
\n@param desiredShardLevelMetrics Represents the list of all the metrics that would be in the enhanced state after the operation.\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/",
"varargSetterDocumentation" : "/**Represents the list of all the metrics that would be in the enhanced state after the operation.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setDesiredShardLevelMetrics(java.util.Collection)} or {@link #withDesiredShardLevelMetrics(java.util.Collection)} if you want to override the existing values.
\n@param desiredShardLevelMetrics Represents the list of all the metrics that would be in the enhanced state after the operation.\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/"
}
}
},
"ResourceNotFoundException" : {
"c2jName" : "ResourceNotFoundException",
"documentation" : "The requested resource could not be found. The stream might not be specified correctly, or it might not be in the ACTIVE
state if the operation requires it.
",
"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" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"MergeShardsResult" : {
"c2jName" : "MergeShardsResult",
"documentation" : null,
"shapeName" : "MergeShardsResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "mergeShardsResult",
"variableType" : "MergeShardsResult",
"variableDeclarationType" : "MergeShardsResult",
"documentation" : null,
"simpleType" : "MergeShardsResult",
"variableSetterType" : "MergeShardsResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"DeleteStreamResult" : {
"c2jName" : "DeleteStreamResult",
"documentation" : null,
"shapeName" : "DeleteStreamResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "deleteStreamResult",
"variableType" : "DeleteStreamResult",
"variableDeclarationType" : "DeleteStreamResult",
"documentation" : null,
"simpleType" : "DeleteStreamResult",
"variableSetterType" : "DeleteStreamResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"SplitShardResult" : {
"c2jName" : "SplitShardResult",
"documentation" : null,
"shapeName" : "SplitShardResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "splitShardResult",
"variableType" : "SplitShardResult",
"variableDeclarationType" : "SplitShardResult",
"documentation" : null,
"simpleType" : "SplitShardResult",
"variableSetterType" : "SplitShardResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"MetricsName" : {
"c2jName" : "MetricsName",
"documentation" : "",
"shapeName" : "MetricsName",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "IncomingBytes",
"value" : "IncomingBytes"
}, {
"name" : "IncomingRecords",
"value" : "IncomingRecords"
}, {
"name" : "OutgoingBytes",
"value" : "OutgoingBytes"
}, {
"name" : "OutgoingRecords",
"value" : "OutgoingRecords"
}, {
"name" : "WriteProvisionedThroughputExceeded",
"value" : "WriteProvisionedThroughputExceeded"
}, {
"name" : "ReadProvisionedThroughputExceeded",
"value" : "ReadProvisionedThroughputExceeded"
}, {
"name" : "IteratorAgeMilliseconds",
"value" : "IteratorAgeMilliseconds"
}, {
"name" : "ALL",
"value" : "ALL"
} ],
"variable" : {
"variableName" : "metricsName",
"variableType" : "MetricsName",
"variableDeclarationType" : "MetricsName",
"documentation" : null,
"simpleType" : "MetricsName",
"variableSetterType" : "MetricsName"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"ExpiredIteratorException" : {
"c2jName" : "ExpiredIteratorException",
"documentation" : "The provided iterator exceeds the maximum age allowed.
",
"shapeName" : "ExpiredIteratorException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ ],
"enums" : null,
"variable" : {
"variableName" : "expiredIteratorException",
"variableType" : "ExpiredIteratorException",
"variableDeclarationType" : "ExpiredIteratorException",
"documentation" : null,
"simpleType" : "ExpiredIteratorException",
"variableSetterType" : "ExpiredIteratorException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "ExpiredIteratorException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"PutRecordResult" : {
"c2jName" : "PutRecordOutput",
"documentation" : "Represents the output for PutRecord
.
",
"shapeName" : "PutRecordResult",
"deprecated" : false,
"required" : [ "ShardId", "SequenceNumber" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The shard ID of the shard where the data record was placed.
",
"name" : "ShardId",
"c2jName" : "ShardId",
"c2jShape" : "ShardId",
"variable" : {
"variableName" : "shardId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The shard ID of the shard where the data record was placed.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "shardId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ShardId",
"marshallLocationName" : "ShardId",
"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 shard where the data record was placed.
\n@param shardId The shard ID of the shard where the data record was placed.*/",
"getterDocumentation" : "/**The shard ID of the shard where the data record was placed.
\n@return The shard ID of the shard where the data record was placed.*/",
"fluentSetterDocumentation" : "/**The shard ID of the shard where the data record was placed.
\n@param shardId The shard ID of the shard where the data record was placed.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The shard ID of the shard where the data record was placed.
\n@param shardId The shard ID of the shard where the data record was placed.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.
",
"name" : "SequenceNumber",
"c2jName" : "SequenceNumber",
"c2jShape" : "SequenceNumber",
"variable" : {
"variableName" : "sequenceNumber",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.
",
"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 identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.
\n@param sequenceNumber The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.*/",
"getterDocumentation" : "/**The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.
\n@return The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.*/",
"fluentSetterDocumentation" : "/**The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.
\n@param sequenceNumber The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.
\n@param sequenceNumber The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "putRecordResult",
"variableType" : "PutRecordResult",
"variableDeclarationType" : "PutRecordResult",
"documentation" : null,
"simpleType" : "PutRecordResult",
"variableSetterType" : "PutRecordResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ShardId" : {
"documentation" : "The shard ID of the shard where the data record was placed.
",
"name" : "ShardId",
"c2jName" : "ShardId",
"c2jShape" : "ShardId",
"variable" : {
"variableName" : "shardId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The shard ID of the shard where the data record was placed.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "shardId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ShardId",
"marshallLocationName" : "ShardId",
"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 shard where the data record was placed.
\n@param shardId The shard ID of the shard where the data record was placed.*/",
"getterDocumentation" : "/**The shard ID of the shard where the data record was placed.
\n@return The shard ID of the shard where the data record was placed.*/",
"fluentSetterDocumentation" : "/**The shard ID of the shard where the data record was placed.
\n@param shardId The shard ID of the shard where the data record was placed.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The shard ID of the shard where the data record was placed.
\n@param shardId The shard ID of the shard where the data record was placed.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"SequenceNumber" : {
"documentation" : "The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.
",
"name" : "SequenceNumber",
"c2jName" : "SequenceNumber",
"c2jShape" : "SequenceNumber",
"variable" : {
"variableName" : "sequenceNumber",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.
",
"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 identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.
\n@param sequenceNumber The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.*/",
"getterDocumentation" : "/**The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.
\n@return The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.*/",
"fluentSetterDocumentation" : "/**The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.
\n@param sequenceNumber The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.
\n@param sequenceNumber The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DescribeStreamResult" : {
"c2jName" : "DescribeStreamOutput",
"documentation" : "Represents the output for DescribeStream
.
",
"shapeName" : "DescribeStreamResult",
"deprecated" : false,
"required" : [ "StreamDescription" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.
",
"name" : "StreamDescription",
"c2jName" : "StreamDescription",
"c2jShape" : "StreamDescription",
"variable" : {
"variableName" : "streamDescription",
"variableType" : "StreamDescription",
"variableDeclarationType" : "StreamDescription",
"documentation" : "The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.
",
"simpleType" : "StreamDescription",
"variableSetterType" : "StreamDescription"
},
"setterModel" : {
"variableName" : "streamDescription",
"variableType" : "StreamDescription",
"variableDeclarationType" : "StreamDescription",
"documentation" : "",
"simpleType" : "StreamDescription",
"variableSetterType" : "StreamDescription"
},
"getterModel" : {
"returnType" : "StreamDescription",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamDescription",
"marshallLocationName" : "StreamDescription",
"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 current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.
\n@param streamDescription The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.*/",
"getterDocumentation" : "/**The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.
\n@return The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.*/",
"fluentSetterDocumentation" : "/**The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.
\n@param streamDescription The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.
\n@param streamDescription The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "describeStreamResult",
"variableType" : "DescribeStreamResult",
"variableDeclarationType" : "DescribeStreamResult",
"documentation" : null,
"simpleType" : "DescribeStreamResult",
"variableSetterType" : "DescribeStreamResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"StreamDescription" : {
"documentation" : "The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.
",
"name" : "StreamDescription",
"c2jName" : "StreamDescription",
"c2jShape" : "StreamDescription",
"variable" : {
"variableName" : "streamDescription",
"variableType" : "StreamDescription",
"variableDeclarationType" : "StreamDescription",
"documentation" : "The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.
",
"simpleType" : "StreamDescription",
"variableSetterType" : "StreamDescription"
},
"setterModel" : {
"variableName" : "streamDescription",
"variableType" : "StreamDescription",
"variableDeclarationType" : "StreamDescription",
"documentation" : "",
"simpleType" : "StreamDescription",
"variableSetterType" : "StreamDescription"
},
"getterModel" : {
"returnType" : "StreamDescription",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamDescription",
"marshallLocationName" : "StreamDescription",
"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 current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.
\n@param streamDescription The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.*/",
"getterDocumentation" : "/**The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.
\n@return The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.*/",
"fluentSetterDocumentation" : "/**The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.
\n@param streamDescription The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.
\n@param streamDescription The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"EnableEnhancedMonitoringRequest" : {
"c2jName" : "EnableEnhancedMonitoringInput",
"documentation" : "Represents the input for EnableEnhancedMonitoring.
",
"shapeName" : "EnableEnhancedMonitoringRequest",
"deprecated" : false,
"required" : [ "StreamName", "ShardLevelMetrics" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the stream for which to enable enhanced monitoring.
",
"name" : "StreamName",
"c2jName" : "StreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stream for which to enable enhanced monitoring.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamName",
"marshallLocationName" : "StreamName",
"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 the stream for which to enable enhanced monitoring.
\n@param streamName The name of the stream for which to enable enhanced monitoring.*/",
"getterDocumentation" : "/**The name of the stream for which to enable enhanced monitoring.
\n@return The name of the stream for which to enable enhanced monitoring.*/",
"fluentSetterDocumentation" : "/**The name of the stream for which to enable enhanced monitoring.
\n@param streamName The name of the stream for which to enable enhanced monitoring.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stream for which to enable enhanced monitoring.
\n@param streamName The name of the stream for which to enable enhanced monitoring.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "List of shard-level metrics to enable.
The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
",
"name" : "ShardLevelMetrics",
"c2jName" : "ShardLevelMetrics",
"c2jShape" : "MetricsNameList",
"variable" : {
"variableName" : "shardLevelMetrics",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "List of shard-level metrics to enable.
The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "shardLevelMetrics",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ShardLevelMetrics",
"marshallLocationName" : "ShardLevelMetrics",
"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" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "MetricsName",
"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" : "MetricsName",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member \n@see MetricsName*/",
"getterDocumentation" : "/**\n@return \n@see MetricsName*/",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : "MetricsName",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**List of shard-level metrics to enable.
The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
\n@param shardLevelMetrics List of shard-level metrics to enable. The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.\n@see MetricsName*/",
"getterDocumentation" : "/**
List of shard-level metrics to enable.
The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
\n@return List of shard-level metrics to enable. The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.\n@see MetricsName*/",
"fluentSetterDocumentation" : "/**
List of shard-level metrics to enable.
The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
\n@param shardLevelMetrics List of shard-level metrics to enable. The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/",
"varargSetterDocumentation" : "/**
List of shard-level metrics to enable.
The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setShardLevelMetrics(java.util.Collection)} or {@link #withShardLevelMetrics(java.util.Collection)} if you want to override the existing values.
\n@param shardLevelMetrics List of shard-level metrics to enable. The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "enableEnhancedMonitoringRequest",
"variableType" : "EnableEnhancedMonitoringRequest",
"variableDeclarationType" : "EnableEnhancedMonitoringRequest",
"documentation" : null,
"simpleType" : "EnableEnhancedMonitoringRequest",
"variableSetterType" : "EnableEnhancedMonitoringRequest"
},
"marshaller" : {
"action" : "EnableEnhancedMonitoring",
"verb" : "POST",
"target" : "Kinesis_20131202.EnableEnhancedMonitoring",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ShardLevelMetrics" : {
"documentation" : "
List of shard-level metrics to enable.
The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
",
"name" : "ShardLevelMetrics",
"c2jName" : "ShardLevelMetrics",
"c2jShape" : "MetricsNameList",
"variable" : {
"variableName" : "shardLevelMetrics",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "List of shard-level metrics to enable.
The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "shardLevelMetrics",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ShardLevelMetrics",
"marshallLocationName" : "ShardLevelMetrics",
"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" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "MetricsName",
"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" : "MetricsName",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member \n@see MetricsName*/",
"getterDocumentation" : "/**\n@return \n@see MetricsName*/",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"simple" : true,
"map" : false,
"simpleType" : "String",
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : "MetricsName",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**List of shard-level metrics to enable.
The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
\n@param shardLevelMetrics List of shard-level metrics to enable. The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.\n@see MetricsName*/",
"getterDocumentation" : "/**
List of shard-level metrics to enable.
The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
\n@return List of shard-level metrics to enable. The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.\n@see MetricsName*/",
"fluentSetterDocumentation" : "/**
List of shard-level metrics to enable.
The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
\n@param shardLevelMetrics List of shard-level metrics to enable. The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/",
"varargSetterDocumentation" : "/**
List of shard-level metrics to enable.
The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setShardLevelMetrics(java.util.Collection)} or {@link #withShardLevelMetrics(java.util.Collection)} if you want to override the existing values.
\n@param shardLevelMetrics List of shard-level metrics to enable. The following are the valid shard-level metrics. The value \"ALL
\" enables every metric.
-
IncomingBytes
-
IncomingRecords
-
OutgoingBytes
-
OutgoingRecords
-
WriteProvisionedThroughputExceeded
-
ReadProvisionedThroughputExceeded
-
IteratorAgeMilliseconds
-
ALL
For more information, see Monitoring the Amazon Kinesis Streams Service with Amazon CloudWatch in the Amazon Kinesis Streams Developer Guide.\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricsName*/"
},
"StreamName" : {
"documentation" : "
The name of the stream for which to enable enhanced monitoring.
",
"name" : "StreamName",
"c2jName" : "StreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stream for which to enable enhanced monitoring.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamName",
"marshallLocationName" : "StreamName",
"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 the stream for which to enable enhanced monitoring.
\n@param streamName The name of the stream for which to enable enhanced monitoring.*/",
"getterDocumentation" : "/**The name of the stream for which to enable enhanced monitoring.
\n@return The name of the stream for which to enable enhanced monitoring.*/",
"fluentSetterDocumentation" : "/**The name of the stream for which to enable enhanced monitoring.
\n@param streamName The name of the stream for which to enable enhanced monitoring.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stream for which to enable enhanced monitoring.
\n@param streamName The name of the stream for which to enable enhanced monitoring.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"PutRecordsRequestEntry" : {
"c2jName" : "PutRecordsRequestEntry",
"documentation" : "Represents the output for PutRecords
.
",
"shapeName" : "PutRecordsRequestEntry",
"deprecated" : false,
"required" : [ "Data", "PartitionKey" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).
",
"name" : "Data",
"c2jName" : "Data",
"c2jShape" : "Data",
"variable" : {
"variableName" : "data",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).
",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"setterModel" : {
"variableName" : "data",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"getterModel" : {
"returnType" : "java.nio.ByteBuffer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Data",
"marshallLocationName" : "Data",
"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 data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).
\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 data The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).*/",
"getterDocumentation" : "/**The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).
\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 The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).*/",
"fluentSetterDocumentation" : "/**The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).
\n@param data The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).
\n@param data The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.
",
"name" : "ExplicitHashKey",
"c2jName" : "ExplicitHashKey",
"c2jShape" : "HashKey",
"variable" : {
"variableName" : "explicitHashKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "explicitHashKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ExplicitHashKey",
"marshallLocationName" : "ExplicitHashKey",
"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 hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.
\n@param explicitHashKey The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.*/",
"getterDocumentation" : "/**The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.
\n@return The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.*/",
"fluentSetterDocumentation" : "/**The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.
\n@param explicitHashKey The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.
\n@param explicitHashKey The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.
",
"name" : "PartitionKey",
"c2jName" : "PartitionKey",
"c2jShape" : "PartitionKey",
"variable" : {
"variableName" : "partitionKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "partitionKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "PartitionKey",
"marshallLocationName" : "PartitionKey",
"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" : "/**Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.
\n@param partitionKey Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.*/",
"getterDocumentation" : "/**Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.
\n@return Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.*/",
"fluentSetterDocumentation" : "/**Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.
\n@param partitionKey Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.
\n@param partitionKey Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "putRecordsRequestEntry",
"variableType" : "PutRecordsRequestEntry",
"variableDeclarationType" : "PutRecordsRequestEntry",
"documentation" : null,
"simpleType" : "PutRecordsRequestEntry",
"variableSetterType" : "PutRecordsRequestEntry"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ExplicitHashKey" : {
"documentation" : "The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.
",
"name" : "ExplicitHashKey",
"c2jName" : "ExplicitHashKey",
"c2jShape" : "HashKey",
"variable" : {
"variableName" : "explicitHashKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "explicitHashKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ExplicitHashKey",
"marshallLocationName" : "ExplicitHashKey",
"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 hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.
\n@param explicitHashKey The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.*/",
"getterDocumentation" : "/**The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.
\n@return The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.*/",
"fluentSetterDocumentation" : "/**The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.
\n@param explicitHashKey The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.
\n@param explicitHashKey The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"PartitionKey" : {
"documentation" : "Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.
",
"name" : "PartitionKey",
"c2jName" : "PartitionKey",
"c2jShape" : "PartitionKey",
"variable" : {
"variableName" : "partitionKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "partitionKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "PartitionKey",
"marshallLocationName" : "PartitionKey",
"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" : "/**Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.
\n@param partitionKey Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.*/",
"getterDocumentation" : "/**Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.
\n@return Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.*/",
"fluentSetterDocumentation" : "/**Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.
\n@param partitionKey Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.
\n@param partitionKey Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Data" : {
"documentation" : "The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).
",
"name" : "Data",
"c2jName" : "Data",
"c2jShape" : "Data",
"variable" : {
"variableName" : "data",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).
",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"setterModel" : {
"variableName" : "data",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"getterModel" : {
"returnType" : "java.nio.ByteBuffer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Data",
"marshallLocationName" : "Data",
"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 data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).
\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 data The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).*/",
"getterDocumentation" : "/**The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).
\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 The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).*/",
"fluentSetterDocumentation" : "/**The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).
\n@param data The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).
\n@param data The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MB).\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"StreamStatus" : {
"c2jName" : "StreamStatus",
"documentation" : "",
"shapeName" : "StreamStatus",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "CREATING",
"value" : "CREATING"
}, {
"name" : "DELETING",
"value" : "DELETING"
}, {
"name" : "ACTIVE",
"value" : "ACTIVE"
}, {
"name" : "UPDATING",
"value" : "UPDATING"
} ],
"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 for ListStreams
.
",
"shapeName" : "ListStreamsRequest",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The maximum number of streams to list.
",
"name" : "Limit",
"c2jName" : "Limit",
"c2jShape" : "ListStreamsInputLimit",
"variable" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of streams to list.
",
"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 list.
\n@param limit The maximum number of streams to list.*/",
"getterDocumentation" : "/**The maximum number of streams to list.
\n@return The maximum number of streams to list.*/",
"fluentSetterDocumentation" : "/**The maximum number of streams to list.
\n@param limit The maximum number of streams to list.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of streams to list.
\n@param limit The maximum number of streams to list.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The name of the stream to start the list with.
",
"name" : "ExclusiveStartStreamName",
"c2jName" : "ExclusiveStartStreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "exclusiveStartStreamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stream to start the list with.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "exclusiveStartStreamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ExclusiveStartStreamName",
"marshallLocationName" : "ExclusiveStartStreamName",
"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 the stream to start the list with.
\n@param exclusiveStartStreamName The name of the stream to start the list with.*/",
"getterDocumentation" : "/**The name of the stream to start the list with.
\n@return The name of the stream to start the list with.*/",
"fluentSetterDocumentation" : "/**The name of the stream to start the list with.
\n@param exclusiveStartStreamName The name of the stream to start the list with.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stream to start the list with.
\n@param exclusiveStartStreamName The name of the stream to start the list with.\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" : "Kinesis_20131202.ListStreams",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ExclusiveStartStreamName" : {
"documentation" : "The name of the stream to start the list with.
",
"name" : "ExclusiveStartStreamName",
"c2jName" : "ExclusiveStartStreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "exclusiveStartStreamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stream to start the list with.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "exclusiveStartStreamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ExclusiveStartStreamName",
"marshallLocationName" : "ExclusiveStartStreamName",
"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 the stream to start the list with.
\n@param exclusiveStartStreamName The name of the stream to start the list with.*/",
"getterDocumentation" : "/**The name of the stream to start the list with.
\n@return The name of the stream to start the list with.*/",
"fluentSetterDocumentation" : "/**The name of the stream to start the list with.
\n@param exclusiveStartStreamName The name of the stream to start the list with.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stream to start the list with.
\n@param exclusiveStartStreamName The name of the stream to start the list with.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Limit" : {
"documentation" : "The maximum number of streams to list.
",
"name" : "Limit",
"c2jName" : "Limit",
"c2jShape" : "ListStreamsInputLimit",
"variable" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of streams to list.
",
"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 list.
\n@param limit The maximum number of streams to list.*/",
"getterDocumentation" : "/**The maximum number of streams to list.
\n@return The maximum number of streams to list.*/",
"fluentSetterDocumentation" : "/**The maximum number of streams to list.
\n@param limit The maximum number of streams to list.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of streams to list.
\n@param limit The maximum number of streams to list.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DescribeStreamRequest" : {
"c2jName" : "DescribeStreamInput",
"documentation" : "Represents the input for DescribeStream
.
",
"shapeName" : "DescribeStreamRequest",
"deprecated" : false,
"required" : [ "StreamName" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the stream to describe.
",
"name" : "StreamName",
"c2jName" : "StreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stream to describe.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamName",
"marshallLocationName" : "StreamName",
"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 the stream to describe.
\n@param streamName The name of the stream to describe.*/",
"getterDocumentation" : "/**The name of the stream to describe.
\n@return The name of the stream to describe.*/",
"fluentSetterDocumentation" : "/**The name of the stream to describe.
\n@param streamName The name of the stream to describe.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stream to describe.
\n@param streamName The name of the stream to describe.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The maximum number of shards to return.
",
"name" : "Limit",
"c2jName" : "Limit",
"c2jShape" : "DescribeStreamInputLimit",
"variable" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of shards to return.
",
"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 shards to return.
\n@param limit The maximum number of shards to return.*/",
"getterDocumentation" : "/**The maximum number of shards to return.
\n@return The maximum number of shards to return.*/",
"fluentSetterDocumentation" : "/**The maximum number of shards to return.
\n@param limit The maximum number of shards to return.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of shards to return.
\n@param limit The maximum number of shards to return.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The shard ID of the shard to start with.
",
"name" : "ExclusiveStartShardId",
"c2jName" : "ExclusiveStartShardId",
"c2jShape" : "ShardId",
"variable" : {
"variableName" : "exclusiveStartShardId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The shard ID of the shard to start with.
",
"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 shard to start with.
\n@param exclusiveStartShardId The shard ID of the shard to start with.*/",
"getterDocumentation" : "/**The shard ID of the shard to start with.
\n@return The shard ID of the shard to start with.*/",
"fluentSetterDocumentation" : "/**The shard ID of the shard to start with.
\n@param exclusiveStartShardId The shard ID of the shard to start with.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The shard ID of the shard to start with.
\n@param exclusiveStartShardId The shard ID of the shard to start with.\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" : "Kinesis_20131202.DescribeStream",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"StreamName" : {
"documentation" : "The name of the stream to describe.
",
"name" : "StreamName",
"c2jName" : "StreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stream to describe.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamName",
"marshallLocationName" : "StreamName",
"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 the stream to describe.
\n@param streamName The name of the stream to describe.*/",
"getterDocumentation" : "/**The name of the stream to describe.
\n@return The name of the stream to describe.*/",
"fluentSetterDocumentation" : "/**The name of the stream to describe.
\n@param streamName The name of the stream to describe.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stream to describe.
\n@param streamName The name of the stream to describe.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ExclusiveStartShardId" : {
"documentation" : "The shard ID of the shard to start with.
",
"name" : "ExclusiveStartShardId",
"c2jName" : "ExclusiveStartShardId",
"c2jShape" : "ShardId",
"variable" : {
"variableName" : "exclusiveStartShardId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The shard ID of the shard to start with.
",
"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 shard to start with.
\n@param exclusiveStartShardId The shard ID of the shard to start with.*/",
"getterDocumentation" : "/**The shard ID of the shard to start with.
\n@return The shard ID of the shard to start with.*/",
"fluentSetterDocumentation" : "/**The shard ID of the shard to start with.
\n@param exclusiveStartShardId The shard ID of the shard to start with.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The shard ID of the shard to start with.
\n@param exclusiveStartShardId The shard ID of the shard to start with.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Limit" : {
"documentation" : "The maximum number of shards to return.
",
"name" : "Limit",
"c2jName" : "Limit",
"c2jShape" : "DescribeStreamInputLimit",
"variable" : {
"variableName" : "limit",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of shards to return.
",
"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 shards to return.
\n@param limit The maximum number of shards to return.*/",
"getterDocumentation" : "/**The maximum number of shards to return.
\n@return The maximum number of shards to return.*/",
"fluentSetterDocumentation" : "/**The maximum number of shards to return.
\n@param limit The maximum number of shards to return.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of shards to return.
\n@param limit The maximum number of shards to return.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"MergeShardsRequest" : {
"c2jName" : "MergeShardsInput",
"documentation" : "Represents the input for MergeShards
.
",
"shapeName" : "MergeShardsRequest",
"deprecated" : false,
"required" : [ "StreamName", "ShardToMerge", "AdjacentShardToMerge" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the stream for the merge.
",
"name" : "StreamName",
"c2jName" : "StreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stream for the merge.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamName",
"marshallLocationName" : "StreamName",
"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 the stream for the merge.
\n@param streamName The name of the stream for the merge.*/",
"getterDocumentation" : "/**The name of the stream for the merge.
\n@return The name of the stream for the merge.*/",
"fluentSetterDocumentation" : "/**The name of the stream for the merge.
\n@param streamName The name of the stream for the merge.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stream for the merge.
\n@param streamName The name of the stream for the merge.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The shard ID of the shard to combine with the adjacent shard for the merge.
",
"name" : "ShardToMerge",
"c2jName" : "ShardToMerge",
"c2jShape" : "ShardId",
"variable" : {
"variableName" : "shardToMerge",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The shard ID of the shard to combine with the adjacent shard for the merge.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "shardToMerge",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ShardToMerge",
"marshallLocationName" : "ShardToMerge",
"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 shard to combine with the adjacent shard for the merge.
\n@param shardToMerge The shard ID of the shard to combine with the adjacent shard for the merge.*/",
"getterDocumentation" : "/**The shard ID of the shard to combine with the adjacent shard for the merge.
\n@return The shard ID of the shard to combine with the adjacent shard for the merge.*/",
"fluentSetterDocumentation" : "/**The shard ID of the shard to combine with the adjacent shard for the merge.
\n@param shardToMerge The shard ID of the shard to combine with the adjacent shard for the merge.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The shard ID of the shard to combine with the adjacent shard for the merge.
\n@param shardToMerge The shard ID of the shard to combine with the adjacent shard for the merge.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The shard ID of the adjacent shard for the merge.
",
"name" : "AdjacentShardToMerge",
"c2jName" : "AdjacentShardToMerge",
"c2jShape" : "ShardId",
"variable" : {
"variableName" : "adjacentShardToMerge",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The shard ID of the adjacent shard for the merge.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "adjacentShardToMerge",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AdjacentShardToMerge",
"marshallLocationName" : "AdjacentShardToMerge",
"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 adjacent shard for the merge.
\n@param adjacentShardToMerge The shard ID of the adjacent shard for the merge.*/",
"getterDocumentation" : "/**The shard ID of the adjacent shard for the merge.
\n@return The shard ID of the adjacent shard for the merge.*/",
"fluentSetterDocumentation" : "/**The shard ID of the adjacent shard for the merge.
\n@param adjacentShardToMerge The shard ID of the adjacent shard for the merge.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The shard ID of the adjacent shard for the merge.
\n@param adjacentShardToMerge The shard ID of the adjacent shard for the merge.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "mergeShardsRequest",
"variableType" : "MergeShardsRequest",
"variableDeclarationType" : "MergeShardsRequest",
"documentation" : null,
"simpleType" : "MergeShardsRequest",
"variableSetterType" : "MergeShardsRequest"
},
"marshaller" : {
"action" : "MergeShards",
"verb" : "POST",
"target" : "Kinesis_20131202.MergeShards",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"StreamName" : {
"documentation" : "The name of the stream for the merge.
",
"name" : "StreamName",
"c2jName" : "StreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stream for the merge.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamName",
"marshallLocationName" : "StreamName",
"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 the stream for the merge.
\n@param streamName The name of the stream for the merge.*/",
"getterDocumentation" : "/**The name of the stream for the merge.
\n@return The name of the stream for the merge.*/",
"fluentSetterDocumentation" : "/**The name of the stream for the merge.
\n@param streamName The name of the stream for the merge.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stream for the merge.
\n@param streamName The name of the stream for the merge.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"AdjacentShardToMerge" : {
"documentation" : "The shard ID of the adjacent shard for the merge.
",
"name" : "AdjacentShardToMerge",
"c2jName" : "AdjacentShardToMerge",
"c2jShape" : "ShardId",
"variable" : {
"variableName" : "adjacentShardToMerge",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The shard ID of the adjacent shard for the merge.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "adjacentShardToMerge",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AdjacentShardToMerge",
"marshallLocationName" : "AdjacentShardToMerge",
"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 adjacent shard for the merge.
\n@param adjacentShardToMerge The shard ID of the adjacent shard for the merge.*/",
"getterDocumentation" : "/**The shard ID of the adjacent shard for the merge.
\n@return The shard ID of the adjacent shard for the merge.*/",
"fluentSetterDocumentation" : "/**The shard ID of the adjacent shard for the merge.
\n@param adjacentShardToMerge The shard ID of the adjacent shard for the merge.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The shard ID of the adjacent shard for the merge.
\n@param adjacentShardToMerge The shard ID of the adjacent shard for the merge.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ShardToMerge" : {
"documentation" : "The shard ID of the shard to combine with the adjacent shard for the merge.
",
"name" : "ShardToMerge",
"c2jName" : "ShardToMerge",
"c2jShape" : "ShardId",
"variable" : {
"variableName" : "shardToMerge",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The shard ID of the shard to combine with the adjacent shard for the merge.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "shardToMerge",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ShardToMerge",
"marshallLocationName" : "ShardToMerge",
"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 shard to combine with the adjacent shard for the merge.
\n@param shardToMerge The shard ID of the shard to combine with the adjacent shard for the merge.*/",
"getterDocumentation" : "/**The shard ID of the shard to combine with the adjacent shard for the merge.
\n@return The shard ID of the shard to combine with the adjacent shard for the merge.*/",
"fluentSetterDocumentation" : "/**The shard ID of the shard to combine with the adjacent shard for the merge.
\n@param shardToMerge The shard ID of the shard to combine with the adjacent shard for the merge.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The shard ID of the shard to combine with the adjacent shard for the merge.
\n@param shardToMerge The shard ID of the shard to combine with the adjacent shard for the merge.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"RemoveTagsFromStreamRequest" : {
"c2jName" : "RemoveTagsFromStreamInput",
"documentation" : "Represents the input for RemoveTagsFromStream
.
",
"shapeName" : "RemoveTagsFromStreamRequest",
"deprecated" : false,
"required" : [ "StreamName", "TagKeys" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the stream.
",
"name" : "StreamName",
"c2jName" : "StreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamName",
"marshallLocationName" : "StreamName",
"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 the stream.
\n@param streamName The name of the stream.*/",
"getterDocumentation" : "/**The name of the stream.
\n@return The name of the stream.*/",
"fluentSetterDocumentation" : "/**The name of the stream.
\n@param streamName The name of the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stream.
\n@param streamName The name of the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A list of tag keys. Each corresponding tag is removed from the stream.
",
"name" : "TagKeys",
"c2jName" : "TagKeys",
"c2jShape" : "TagKeyList",
"variable" : {
"variableName" : "tagKeys",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of tag keys. Each corresponding tag is removed from the stream.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "tagKeys",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "TagKeys",
"marshallLocationName" : "TagKeys",
"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" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "TagKey",
"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" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of tag keys. Each corresponding tag is removed from the stream.
\n@param tagKeys A list of tag keys. Each corresponding tag is removed from the stream.*/",
"getterDocumentation" : "/**A list of tag keys. Each corresponding tag is removed from the stream.
\n@return A list of tag keys. Each corresponding tag is removed from the stream.*/",
"fluentSetterDocumentation" : "/**A list of tag keys. Each corresponding tag is removed from the stream.
\n@param tagKeys A list of tag keys. Each corresponding tag is removed from the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of tag keys. Each corresponding tag is removed from the stream.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setTagKeys(java.util.Collection)} or {@link #withTagKeys(java.util.Collection)} if you want to override the existing values.
\n@param tagKeys A list of tag keys. Each corresponding tag is removed from the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "removeTagsFromStreamRequest",
"variableType" : "RemoveTagsFromStreamRequest",
"variableDeclarationType" : "RemoveTagsFromStreamRequest",
"documentation" : null,
"simpleType" : "RemoveTagsFromStreamRequest",
"variableSetterType" : "RemoveTagsFromStreamRequest"
},
"marshaller" : {
"action" : "RemoveTagsFromStream",
"verb" : "POST",
"target" : "Kinesis_20131202.RemoveTagsFromStream",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"StreamName" : {
"documentation" : "The name of the stream.
",
"name" : "StreamName",
"c2jName" : "StreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamName",
"marshallLocationName" : "StreamName",
"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 the stream.
\n@param streamName The name of the stream.*/",
"getterDocumentation" : "/**The name of the stream.
\n@return The name of the stream.*/",
"fluentSetterDocumentation" : "/**The name of the stream.
\n@param streamName The name of the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stream.
\n@param streamName The name of the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"TagKeys" : {
"documentation" : "A list of tag keys. Each corresponding tag is removed from the stream.
",
"name" : "TagKeys",
"c2jName" : "TagKeys",
"c2jShape" : "TagKeyList",
"variable" : {
"variableName" : "tagKeys",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of tag keys. Each corresponding tag is removed from the stream.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "tagKeys",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "TagKeys",
"marshallLocationName" : "TagKeys",
"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" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "TagKey",
"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" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of tag keys. Each corresponding tag is removed from the stream.
\n@param tagKeys A list of tag keys. Each corresponding tag is removed from the stream.*/",
"getterDocumentation" : "/**A list of tag keys. Each corresponding tag is removed from the stream.
\n@return A list of tag keys. Each corresponding tag is removed from the stream.*/",
"fluentSetterDocumentation" : "/**A list of tag keys. Each corresponding tag is removed from the stream.
\n@param tagKeys A list of tag keys. Each corresponding tag is removed from the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of tag keys. Each corresponding tag is removed from the stream.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setTagKeys(java.util.Collection)} or {@link #withTagKeys(java.util.Collection)} if you want to override the existing values.
\n@param tagKeys A list of tag keys. Each corresponding tag is removed from the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"CreateStreamResult" : {
"c2jName" : "CreateStreamResult",
"documentation" : null,
"shapeName" : "CreateStreamResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "createStreamResult",
"variableType" : "CreateStreamResult",
"variableDeclarationType" : "CreateStreamResult",
"documentation" : null,
"simpleType" : "CreateStreamResult",
"variableSetterType" : "CreateStreamResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"CreateStreamRequest" : {
"c2jName" : "CreateStreamInput",
"documentation" : "Represents the input for CreateStream
.
",
"shapeName" : "CreateStreamRequest",
"deprecated" : false,
"required" : [ "StreamName", "ShardCount" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.
",
"name" : "StreamName",
"c2jName" : "StreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamName",
"marshallLocationName" : "StreamName",
"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 name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.
\n@param streamName A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.*/",
"getterDocumentation" : "/**A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.
\n@return A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.*/",
"fluentSetterDocumentation" : "/**A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.
\n@param streamName A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.
\n@param streamName A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput.
DefaultShardLimit;
",
"name" : "ShardCount",
"c2jName" : "ShardCount",
"c2jShape" : "PositiveIntegerObject",
"variable" : {
"variableName" : "shardCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput.
DefaultShardLimit;
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "shardCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ShardCount",
"marshallLocationName" : "ShardCount",
"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 number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput.
DefaultShardLimit;
\n@param shardCount The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput. DefaultShardLimit;*/",
"getterDocumentation" : "/**
The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput.
DefaultShardLimit;
\n@return The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput. DefaultShardLimit;*/",
"fluentSetterDocumentation" : "/**
The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput.
DefaultShardLimit;
\n@param shardCount The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput. DefaultShardLimit;\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput.
DefaultShardLimit;
\n@param shardCount The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput. DefaultShardLimit;\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "createStreamRequest",
"variableType" : "CreateStreamRequest",
"variableDeclarationType" : "CreateStreamRequest",
"documentation" : null,
"simpleType" : "CreateStreamRequest",
"variableSetterType" : "CreateStreamRequest"
},
"marshaller" : {
"action" : "CreateStream",
"verb" : "POST",
"target" : "Kinesis_20131202.CreateStream",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"StreamName" : {
"documentation" : "
A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.
",
"name" : "StreamName",
"c2jName" : "StreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamName",
"marshallLocationName" : "StreamName",
"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 name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.
\n@param streamName A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.*/",
"getterDocumentation" : "/**A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.
\n@return A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.*/",
"fluentSetterDocumentation" : "/**A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.
\n@param streamName A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.
\n@param streamName A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ShardCount" : {
"documentation" : "The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput.
DefaultShardLimit;
",
"name" : "ShardCount",
"c2jName" : "ShardCount",
"c2jShape" : "PositiveIntegerObject",
"variable" : {
"variableName" : "shardCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput.
DefaultShardLimit;
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "shardCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ShardCount",
"marshallLocationName" : "ShardCount",
"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 number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput.
DefaultShardLimit;
\n@param shardCount The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput. DefaultShardLimit;*/",
"getterDocumentation" : "/**
The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput.
DefaultShardLimit;
\n@return The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput. DefaultShardLimit;*/",
"fluentSetterDocumentation" : "/**
The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput.
DefaultShardLimit;
\n@param shardCount The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput. DefaultShardLimit;\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput.
DefaultShardLimit;
\n@param shardCount The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput. DefaultShardLimit;\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DecreaseStreamRetentionPeriodRequest" : {
"c2jName" : "DecreaseStreamRetentionPeriodInput",
"documentation" : "
Represents the input for DecreaseStreamRetentionPeriod.
",
"shapeName" : "DecreaseStreamRetentionPeriodRequest",
"deprecated" : false,
"required" : [ "StreamName", "RetentionPeriodHours" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the stream to modify.
",
"name" : "StreamName",
"c2jName" : "StreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stream to modify.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamName",
"marshallLocationName" : "StreamName",
"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 the stream to modify.
\n@param streamName The name of the stream to modify.*/",
"getterDocumentation" : "/**The name of the stream to modify.
\n@return The name of the stream to modify.*/",
"fluentSetterDocumentation" : "/**The name of the stream to modify.
\n@param streamName The name of the stream to modify.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stream to modify.
\n@param streamName The name of the stream to modify.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The new retention period of the stream, in hours. Must be less than the current retention period.
",
"name" : "RetentionPeriodHours",
"c2jName" : "RetentionPeriodHours",
"c2jShape" : "RetentionPeriodHours",
"variable" : {
"variableName" : "retentionPeriodHours",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The new retention period of the stream, in hours. Must be less than the current retention period.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "retentionPeriodHours",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "RetentionPeriodHours",
"marshallLocationName" : "RetentionPeriodHours",
"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 new retention period of the stream, in hours. Must be less than the current retention period.
\n@param retentionPeriodHours The new retention period of the stream, in hours. Must be less than the current retention period.*/",
"getterDocumentation" : "/**The new retention period of the stream, in hours. Must be less than the current retention period.
\n@return The new retention period of the stream, in hours. Must be less than the current retention period.*/",
"fluentSetterDocumentation" : "/**The new retention period of the stream, in hours. Must be less than the current retention period.
\n@param retentionPeriodHours The new retention period of the stream, in hours. Must be less than the current retention period.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The new retention period of the stream, in hours. Must be less than the current retention period.
\n@param retentionPeriodHours The new retention period of the stream, in hours. Must be less than the current retention period.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "decreaseStreamRetentionPeriodRequest",
"variableType" : "DecreaseStreamRetentionPeriodRequest",
"variableDeclarationType" : "DecreaseStreamRetentionPeriodRequest",
"documentation" : null,
"simpleType" : "DecreaseStreamRetentionPeriodRequest",
"variableSetterType" : "DecreaseStreamRetentionPeriodRequest"
},
"marshaller" : {
"action" : "DecreaseStreamRetentionPeriod",
"verb" : "POST",
"target" : "Kinesis_20131202.DecreaseStreamRetentionPeriod",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"StreamName" : {
"documentation" : "The name of the stream to modify.
",
"name" : "StreamName",
"c2jName" : "StreamName",
"c2jShape" : "StreamName",
"variable" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stream to modify.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "streamName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamName",
"marshallLocationName" : "StreamName",
"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 the stream to modify.
\n@param streamName The name of the stream to modify.*/",
"getterDocumentation" : "/**The name of the stream to modify.
\n@return The name of the stream to modify.*/",
"fluentSetterDocumentation" : "/**The name of the stream to modify.
\n@param streamName The name of the stream to modify.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stream to modify.
\n@param streamName The name of the stream to modify.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"RetentionPeriodHours" : {
"documentation" : "The new retention period of the stream, in hours. Must be less than the current retention period.
",
"name" : "RetentionPeriodHours",
"c2jName" : "RetentionPeriodHours",
"c2jShape" : "RetentionPeriodHours",
"variable" : {
"variableName" : "retentionPeriodHours",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The new retention period of the stream, in hours. Must be less than the current retention period.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "retentionPeriodHours",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "RetentionPeriodHours",
"marshallLocationName" : "RetentionPeriodHours",
"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 new retention period of the stream, in hours. Must be less than the current retention period.
\n@param retentionPeriodHours The new retention period of the stream, in hours. Must be less than the current retention period.*/",
"getterDocumentation" : "/**The new retention period of the stream, in hours. Must be less than the current retention period.
\n@return The new retention period of the stream, in hours. Must be less than the current retention period.*/",
"fluentSetterDocumentation" : "/**The new retention period of the stream, in hours. Must be less than the current retention period.
\n@param retentionPeriodHours The new retention period of the stream, in hours. Must be less than the current retention period.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The new retention period of the stream, in hours. Must be less than the current retention period.
\n@param retentionPeriodHours The new retention period of the stream, in hours. Must be less than the current retention period.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListStreamsResult" : {
"c2jName" : "ListStreamsOutput",
"documentation" : "Represents the output for ListStreams
.
",
"shapeName" : "ListStreamsResult",
"deprecated" : false,
"required" : [ "StreamNames", "HasMoreStreams" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The names of the streams that are associated with the AWS account making the ListStreams
request.
",
"name" : "StreamNames",
"c2jName" : "StreamNames",
"c2jShape" : "StreamNameList",
"variable" : {
"variableName" : "streamNames",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "The names of the streams that are associated with the AWS account making the ListStreams
request.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "streamNames",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamNames",
"marshallLocationName" : "StreamNames",
"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" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "StreamName",
"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" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The names of the streams that are associated with the AWS account making the ListStreams
request.
\n@param streamNames The names of the streams that are associated with the AWS account making the ListStreams
request.*/",
"getterDocumentation" : "/**The names of the streams that are associated with the AWS account making the ListStreams
request.
\n@return The names of the streams that are associated with the AWS account making the ListStreams
request.*/",
"fluentSetterDocumentation" : "/**The names of the streams that are associated with the AWS account making the ListStreams
request.
\n@param streamNames The names of the streams that are associated with the AWS account making the ListStreams
request.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The names of the streams that are associated with the AWS account making the ListStreams
request.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setStreamNames(java.util.Collection)} or {@link #withStreamNames(java.util.Collection)} if you want to override the existing values.
\n@param streamNames The names of the streams that are associated with the AWS account making the ListStreams
request.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "If set to true
, there are more streams available to list.
",
"name" : "HasMoreStreams",
"c2jName" : "HasMoreStreams",
"c2jShape" : "BooleanObject",
"variable" : {
"variableName" : "hasMoreStreams",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "If set to true
, there are more streams available to list.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "hasMoreStreams",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "HasMoreStreams",
"marshallLocationName" : "HasMoreStreams",
"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 set to true
, there are more streams available to list.
\n@param hasMoreStreams If set to true
, there are more streams available to list.*/",
"getterDocumentation" : "/**If set to true
, there are more streams available to list.
\n@return If set to true
, there are more streams available to list.*/",
"fluentSetterDocumentation" : "/**If set to true
, there are more streams available to list.
\n@param hasMoreStreams If set to true
, there are more streams available to list.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**If set to true
, there are more streams available to list.
\n@param hasMoreStreams If set to true
, there are more streams available to list.\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" : {
"HasMoreStreams" : {
"documentation" : "If set to true
, there are more streams available to list.
",
"name" : "HasMoreStreams",
"c2jName" : "HasMoreStreams",
"c2jShape" : "BooleanObject",
"variable" : {
"variableName" : "hasMoreStreams",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "If set to true
, there are more streams available to list.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "hasMoreStreams",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "HasMoreStreams",
"marshallLocationName" : "HasMoreStreams",
"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 set to true
, there are more streams available to list.
\n@param hasMoreStreams If set to true
, there are more streams available to list.*/",
"getterDocumentation" : "/**If set to true
, there are more streams available to list.
\n@return If set to true
, there are more streams available to list.*/",
"fluentSetterDocumentation" : "/**If set to true
, there are more streams available to list.
\n@param hasMoreStreams If set to true
, there are more streams available to list.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**If set to true
, there are more streams available to list.
\n@param hasMoreStreams If set to true
, there are more streams available to list.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"StreamNames" : {
"documentation" : "The names of the streams that are associated with the AWS account making the ListStreams
request.
",
"name" : "StreamNames",
"c2jName" : "StreamNames",
"c2jShape" : "StreamNameList",
"variable" : {
"variableName" : "streamNames",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "The names of the streams that are associated with the AWS account making the ListStreams
request.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "streamNames",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StreamNames",
"marshallLocationName" : "StreamNames",
"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" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "StreamName",
"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" : "com.amazonaws.internal.SdkInternalList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The names of the streams that are associated with the AWS account making the