
models.sdb-2009-04-15-intermediate.json Maven / Gradle / Ivy
Show all versions of aws-java-sdk-simpledb Show documentation
{
"metadata" : {
"apiVersion" : "2009-04-15",
"protocol" : "query",
"checksumFormat" : null,
"documentation" : "Amazon SimpleDB is a web service providing the core database functions of data indexing and querying in the cloud. By offloading the time and effort associated with building and operating a web-scale database, SimpleDB provides developers the freedom to focus on application development. A traditional, clustered relational database requires a sizable upfront capital outlay, is complex to design, and often requires extensive and repetitive database administration. Amazon SimpleDB is dramatically simpler, requiring no schema, automatically indexing your data and providing a simple API for storage and access. This approach eliminates the administrative burden of data modeling, index maintenance, and performance tuning. Developers gain access to this functionality within Amazon's proven computing environment, are able to scale instantly, and pay only for what they use.
Visit http://aws.amazon.com/simpledb/ for more information.
",
"defaultEndpoint" : "sdb.amazonaws.com",
"defaultEndpointWithoutHttpProtocol" : "sdb.amazonaws.com",
"syncInterface" : "AmazonSimpleDB",
"syncClient" : "AmazonSimpleDBClient",
"asyncInterface" : "AmazonSimpleDBAsync",
"asyncClient" : "AmazonSimpleDBAsyncClient",
"packageName" : "com.amazonaws.services.simpledb",
"packagePath" : "com/amazonaws/services/simpledb",
"serviceAbbreviation" : null,
"serviceFullName" : "Amazon SimpleDB",
"hasApiWithStreamInput" : false,
"contentType" : null,
"jsonVersion" : null,
"endpointPrefix" : "sdb",
"signingName" : "sdb",
"jsonProtocol" : false,
"xmlProtocol" : true,
"cborProtocol" : false,
"unmarshallerContextClassName" : "StaxUnmarshallerContext",
"unmarshallerClassSuffix" : "StaxUnmarshaller",
"protocolDefaultExceptionUmarshallerImpl" : "StandardErrorUnmarshaller",
"syncClientBuilderClassName" : "AmazonSimpleDBClientBuilder",
"asyncClientBuilderClassName" : "AmazonSimpleDBAsyncClientBuilder",
"cucumberModuleInjectorClassName" : "AmazonSimpleDBModuleInjector",
"smokeTestsPackageName" : "com.amazonaws.services.simpledb.smoketests",
"serviceName" : "Amazon SimpleDB"
},
"operations" : {
"BatchDeleteAttributes" : {
"documentation" : " Performs multiple DeleteAttributes operations in a single call, which reduces round trips and latencies. This enables Amazon SimpleDB to optimize requests, which generally yields better throughput.
The following limitations are enforced for this operation:
- 1 MB request size
- 25 item limit per BatchDeleteAttributes operation
",
"operationName" : "BatchDeleteAttributes",
"deprecated" : false,
"input" : {
"variableName" : "batchDeleteAttributesRequest",
"variableType" : "BatchDeleteAttributesRequest",
"variableDeclarationType" : "BatchDeleteAttributesRequest",
"documentation" : "",
"variableSetterType" : "BatchDeleteAttributesRequest",
"simpleType" : "BatchDeleteAttributesRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "BatchDeleteAttributesResult",
"documentation" : null
},
"exceptions" : null,
"hasBlobMemberAsPayload" : false,
"methodName" : "batchDeleteAttributes",
"authenticated" : true,
"syncReturnType" : "BatchDeleteAttributesResult",
"asyncReturnType" : "BatchDeleteAttributesResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"BatchPutAttributes" : {
"documentation" : " The BatchPutAttributes
operation creates or replaces attributes within one or more items. By using this operation, the client can perform multiple PutAttribute operation with a single call. This helps yield savings in round trips and latencies, enabling Amazon SimpleDB to optimize requests and generally produce better throughput.
The client may specify the item name with the Item.X.ItemName
parameter. The client may specify new attributes using a combination of the Item.X.Attribute.Y.Name
and Item.X.Attribute.Y.Value
parameters. The client may specify the first attribute for the first item using the parameters Item.0.Attribute.0.Name
and Item.0.Attribute.0.Value
, and for the second attribute for the first item by the parameters Item.0.Attribute.1.Name
and Item.0.Attribute.1.Value
, and so on.
Attributes are uniquely identified within an item by their name/value combination. For example, a single item can have the attributes { \"first_name\", \"first_value\" }
and { \"first_name\", \"second_value\" }
. However, it cannot have two attribute instances where both the Item.X.Attribute.Y.Name
and Item.X.Attribute.Y.Value
are the same.
Optionally, the requester can supply the Replace
parameter for each individual value. Setting this value to true
will cause the new attribute values to replace the existing attribute values. For example, if an item I
has the attributes { 'a', '1' }, { 'b', '2'}
and { 'b', '3' }
and the requester does a BatchPutAttributes of {'I', 'b', '4' }
with the Replace parameter set to true, the final attributes of the item will be { 'a', '1' }
and { 'b', '4' }
, replacing the previous values of the 'b' attribute with the new value.
This operation is vulnerable to exceeding the maximum URL size when making a REST request using the HTTP GET method. This operation does not support conditions using Expected.X.Name
, Expected.X.Value
, or Expected.X.Exists
. You can execute multiple BatchPutAttributes
operations and other operations in parallel. However, large numbers of concurrent BatchPutAttributes
calls can result in Service Unavailable (503) responses.
The following limitations are enforced for this operation:
- 256 attribute name-value pairs per item
- 1 MB request size
- 1 billion attributes per domain
- 10 GB of total user data storage per domain
- 25 item limit per
BatchPutAttributes
operation
",
"operationName" : "BatchPutAttributes",
"deprecated" : false,
"input" : {
"variableName" : "batchPutAttributesRequest",
"variableType" : "BatchPutAttributesRequest",
"variableDeclarationType" : "BatchPutAttributesRequest",
"documentation" : "",
"variableSetterType" : "BatchPutAttributesRequest",
"simpleType" : "BatchPutAttributesRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "BatchPutAttributesResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "DuplicateItemNameException",
"documentation" : "The item name was specified more than once.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "The value for a parameter is invalid.
"
}, {
"exceptionName" : "MissingParameterException",
"documentation" : "The request must contain the specified missing parameter.
"
}, {
"exceptionName" : "NoSuchDomainException",
"documentation" : "The specified domain does not exist.
"
}, {
"exceptionName" : "NumberItemAttributesExceededException",
"documentation" : "Too many attributes in this item.
"
}, {
"exceptionName" : "NumberDomainAttributesExceededException",
"documentation" : "Too many attributes in this domain.
"
}, {
"exceptionName" : "NumberDomainBytesExceededException",
"documentation" : "Too many bytes in this domain.
"
}, {
"exceptionName" : "NumberSubmittedItemsExceededException",
"documentation" : "Too many items exist in a single call.
"
}, {
"exceptionName" : "NumberSubmittedAttributesExceededException",
"documentation" : "Too many attributes exist in a single call.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "batchPutAttributes",
"authenticated" : true,
"syncReturnType" : "BatchPutAttributesResult",
"asyncReturnType" : "BatchPutAttributesResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"CreateDomain" : {
"documentation" : " The CreateDomain
operation creates a new domain. The domain name should be unique among the domains associated with the Access Key ID provided in the request. The CreateDomain
operation may take 10 or more seconds to complete.
The client can create up to 100 domains per account.
If the client requires additional domains, go to http://aws.amazon.com/contact-us/simpledb-limit-request/.
",
"operationName" : "CreateDomain",
"deprecated" : false,
"input" : {
"variableName" : "createDomainRequest",
"variableType" : "CreateDomainRequest",
"variableDeclarationType" : "CreateDomainRequest",
"documentation" : "",
"variableSetterType" : "CreateDomainRequest",
"simpleType" : "CreateDomainRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "CreateDomainResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "The value for a parameter is invalid.
"
}, {
"exceptionName" : "MissingParameterException",
"documentation" : "The request must contain the specified missing parameter.
"
}, {
"exceptionName" : "NumberDomainsExceededException",
"documentation" : "Too many domains exist per this account.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "createDomain",
"authenticated" : true,
"syncReturnType" : "CreateDomainResult",
"asyncReturnType" : "CreateDomainResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"DeleteAttributes" : {
"documentation" : " Deletes one or more attributes associated with an item. If all attributes of the item are deleted, the item is deleted.
DeleteAttributes
is an idempotent operation; running it multiple times on the same item or attribute does not result in an error response.
Because Amazon SimpleDB makes multiple copies of item data and uses an eventual consistency update model, performing a GetAttributes or Select operation (read) immediately after a DeleteAttributes
or PutAttributes operation (write) might not return updated item data.
",
"operationName" : "DeleteAttributes",
"deprecated" : false,
"input" : {
"variableName" : "deleteAttributesRequest",
"variableType" : "DeleteAttributesRequest",
"variableDeclarationType" : "DeleteAttributesRequest",
"documentation" : "",
"variableSetterType" : "DeleteAttributesRequest",
"simpleType" : "DeleteAttributesRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DeleteAttributesResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "The value for a parameter is invalid.
"
}, {
"exceptionName" : "MissingParameterException",
"documentation" : "The request must contain the specified missing parameter.
"
}, {
"exceptionName" : "NoSuchDomainException",
"documentation" : "The specified domain does not exist.
"
}, {
"exceptionName" : "AttributeDoesNotExistException",
"documentation" : "The specified attribute does not exist.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "deleteAttributes",
"authenticated" : true,
"syncReturnType" : "DeleteAttributesResult",
"asyncReturnType" : "DeleteAttributesResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"DeleteDomain" : {
"documentation" : " The DeleteDomain
operation deletes a domain. Any items (and their attributes) in the domain are deleted as well. The DeleteDomain
operation might take 10 or more seconds to complete.
",
"operationName" : "DeleteDomain",
"deprecated" : false,
"input" : {
"variableName" : "deleteDomainRequest",
"variableType" : "DeleteDomainRequest",
"variableDeclarationType" : "DeleteDomainRequest",
"documentation" : "",
"variableSetterType" : "DeleteDomainRequest",
"simpleType" : "DeleteDomainRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DeleteDomainResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "MissingParameterException",
"documentation" : "The request must contain the specified missing parameter.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "deleteDomain",
"authenticated" : true,
"syncReturnType" : "DeleteDomainResult",
"asyncReturnType" : "DeleteDomainResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"DomainMetadata" : {
"documentation" : " Returns information about the domain, including when the domain was created, the number of items and attributes in the domain, and the size of the attribute names and values.
",
"operationName" : "DomainMetadata",
"deprecated" : false,
"input" : {
"variableName" : "domainMetadataRequest",
"variableType" : "DomainMetadataRequest",
"variableDeclarationType" : "DomainMetadataRequest",
"documentation" : "",
"variableSetterType" : "DomainMetadataRequest",
"simpleType" : "DomainMetadataRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DomainMetadataResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "MissingParameterException",
"documentation" : "The request must contain the specified missing parameter.
"
}, {
"exceptionName" : "NoSuchDomainException",
"documentation" : "The specified domain does not exist.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "domainMetadata",
"authenticated" : true,
"syncReturnType" : "DomainMetadataResult",
"asyncReturnType" : "DomainMetadataResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"GetAttributes" : {
"documentation" : " Returns all of the attributes associated with the specified item. Optionally, the attributes returned can be limited to one or more attributes by specifying an attribute name parameter.
If the item does not exist on the replica that was accessed for this operation, an empty set is returned. The system does not return an error as it cannot guarantee the item does not exist on other replicas.
",
"operationName" : "GetAttributes",
"deprecated" : false,
"input" : {
"variableName" : "getAttributesRequest",
"variableType" : "GetAttributesRequest",
"variableDeclarationType" : "GetAttributesRequest",
"documentation" : "",
"variableSetterType" : "GetAttributesRequest",
"simpleType" : "GetAttributesRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetAttributesResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "The value for a parameter is invalid.
"
}, {
"exceptionName" : "MissingParameterException",
"documentation" : "The request must contain the specified missing parameter.
"
}, {
"exceptionName" : "NoSuchDomainException",
"documentation" : "The specified domain does not exist.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "getAttributes",
"authenticated" : true,
"syncReturnType" : "GetAttributesResult",
"asyncReturnType" : "GetAttributesResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"ListDomains" : {
"documentation" : " The ListDomains
operation lists all domains associated with the Access Key ID. It returns domain names up to the limit set by MaxNumberOfDomains. A NextToken is returned if there are more than MaxNumberOfDomains
domains. Calling ListDomains
successive times with the NextToken
provided by the operation returns up to MaxNumberOfDomains
more domain names with each successive operation call.
",
"operationName" : "ListDomains",
"deprecated" : false,
"input" : {
"variableName" : "listDomainsRequest",
"variableType" : "ListDomainsRequest",
"variableDeclarationType" : "ListDomainsRequest",
"documentation" : "",
"variableSetterType" : "ListDomainsRequest",
"simpleType" : "ListDomainsRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ListDomainsResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "The value for a parameter is invalid.
"
}, {
"exceptionName" : "InvalidNextTokenException",
"documentation" : "The specified NextToken is not valid.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "listDomains",
"authenticated" : true,
"syncReturnType" : "ListDomainsResult",
"asyncReturnType" : "ListDomainsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"PutAttributes" : {
"documentation" : " The PutAttributes operation creates or replaces attributes in an item. The client may specify new attributes using a combination of the Attribute.X.Name
and Attribute.X.Value
parameters. The client specifies the first attribute by the parameters Attribute.0.Name
and Attribute.0.Value
, the second attribute by the parameters Attribute.1.Name
and Attribute.1.Value
, and so on.
Attributes are uniquely identified in an item by their name/value combination. For example, a single item can have the attributes { \"first_name\", \"first_value\" }
and { \"first_name\", second_value\" }
. However, it cannot have two attribute instances where both the Attribute.X.Name
and Attribute.X.Value
are the same.
Optionally, the requestor can supply the Replace
parameter for each individual attribute. Setting this value to true
causes the new attribute value to replace the existing attribute value(s). For example, if an item has the attributes { 'a', '1' }
, { 'b', '2'}
and { 'b', '3' }
and the requestor calls PutAttributes
using the attributes { 'b', '4' }
with the Replace
parameter set to true, the final attributes of the item are changed to { 'a', '1' }
and { 'b', '4' }
, which replaces the previous values of the 'b' attribute with the new value.
You cannot specify an empty string as an attribute name.
Because Amazon SimpleDB makes multiple copies of client data and uses an eventual consistency update model, an immediate GetAttributes or Select operation (read) immediately after a PutAttributes or DeleteAttributes operation (write) might not return the updated data.
The following limitations are enforced for this operation:
- 256 total attribute name-value pairs per item
- One billion attributes per domain
- 10 GB of total user data storage per domain
",
"operationName" : "PutAttributes",
"deprecated" : false,
"input" : {
"variableName" : "putAttributesRequest",
"variableType" : "PutAttributesRequest",
"variableDeclarationType" : "PutAttributesRequest",
"documentation" : "",
"variableSetterType" : "PutAttributesRequest",
"simpleType" : "PutAttributesRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "PutAttributesResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "The value for a parameter is invalid.
"
}, {
"exceptionName" : "MissingParameterException",
"documentation" : "The request must contain the specified missing parameter.
"
}, {
"exceptionName" : "NoSuchDomainException",
"documentation" : "The specified domain does not exist.
"
}, {
"exceptionName" : "NumberDomainAttributesExceededException",
"documentation" : "Too many attributes in this domain.
"
}, {
"exceptionName" : "NumberDomainBytesExceededException",
"documentation" : "Too many bytes in this domain.
"
}, {
"exceptionName" : "NumberItemAttributesExceededException",
"documentation" : "Too many attributes in this item.
"
}, {
"exceptionName" : "AttributeDoesNotExistException",
"documentation" : "The specified attribute does not exist.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "putAttributes",
"authenticated" : true,
"syncReturnType" : "PutAttributesResult",
"asyncReturnType" : "PutAttributesResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
},
"Select" : {
"documentation" : " The Select
operation returns a set of attributes for ItemNames
that match the select expression. Select
is similar to the standard SQL SELECT statement.
The total size of the response cannot exceed 1 MB in total size. Amazon SimpleDB automatically adjusts the number of items returned per page to enforce this limit. For example, if the client asks to retrieve 2500 items, but each individual item is 10 kB in size, the system returns 100 items and an appropriate NextToken
so the client can access the next page of results.
For information on how to construct select expressions, see Using Select to Create Amazon SimpleDB Queries in the Developer Guide.
",
"operationName" : "Select",
"deprecated" : false,
"input" : {
"variableName" : "selectRequest",
"variableType" : "SelectRequest",
"variableDeclarationType" : "SelectRequest",
"documentation" : "",
"variableSetterType" : "SelectRequest",
"simpleType" : "SelectRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "SelectResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "The value for a parameter is invalid.
"
}, {
"exceptionName" : "InvalidNextTokenException",
"documentation" : "The specified NextToken is not valid.
"
}, {
"exceptionName" : "InvalidNumberPredicatesException",
"documentation" : "Too many predicates exist in the query expression.
"
}, {
"exceptionName" : "InvalidNumberValueTestsException",
"documentation" : "Too many predicates exist in the query expression.
"
}, {
"exceptionName" : "InvalidQueryExpressionException",
"documentation" : "The specified query expression syntax is not valid.
"
}, {
"exceptionName" : "MissingParameterException",
"documentation" : "The request must contain the specified missing parameter.
"
}, {
"exceptionName" : "NoSuchDomainException",
"documentation" : "The specified domain does not exist.
"
}, {
"exceptionName" : "RequestTimeoutException",
"documentation" : "A timeout occurred when attempting to query the specified domain with specified query expression.
"
}, {
"exceptionName" : "TooManyRequestedAttributesException",
"documentation" : "Too many attributes requested.
"
} ],
"hasBlobMemberAsPayload" : false,
"methodName" : "select",
"authenticated" : true,
"syncReturnType" : "SelectResult",
"asyncReturnType" : "SelectResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler"
}
},
"shapes" : {
"NumberItemAttributesExceededException" : {
"c2jName" : "NumberItemAttributesExceeded",
"documentation" : "Too many attributes in this item.
",
"shapeName" : "NumberItemAttributesExceededException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "numberItemAttributesExceededException",
"variableType" : "NumberItemAttributesExceededException",
"variableDeclarationType" : "NumberItemAttributesExceededException",
"documentation" : null,
"variableSetterType" : "NumberItemAttributesExceededException",
"simpleType" : "NumberItemAttributesExceededException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "NumberItemAttributesExceeded",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"PutAttributesResult" : {
"c2jName" : "PutAttributesResult",
"documentation" : null,
"shapeName" : "PutAttributesResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "putAttributesResult",
"variableType" : "PutAttributesResult",
"variableDeclarationType" : "PutAttributesResult",
"documentation" : null,
"variableSetterType" : "PutAttributesResult",
"simpleType" : "PutAttributesResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"ListDomainsResult" : {
"c2jName" : "ListDomainsResult",
"documentation" : "",
"shapeName" : "ListDomainsResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A list of domain names that match the expression.",
"name" : "DomainNames",
"c2jName" : "DomainNames",
"c2jShape" : "DomainNameList",
"variable" : {
"variableName" : "domainNames",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of domain names that match the expression.",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "domainNames",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainNames",
"marshallLocationName" : "DomainNames",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : "DomainName",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "String",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainName",
"marshallLocationName" : "DomainName",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : true,
"map" : false,
"simpleType" : "String"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of domain names that match the expression.\n@param domainNames A list of domain names that match the expression.*/",
"getterDocumentation" : "/**A list of domain names that match the expression.\n@return A list of domain names that match the expression.*/",
"fluentSetterDocumentation" : "/**A list of domain names that match the expression.\n@param domainNames A list of domain names that match the expression.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of domain names that match the expression.\nNOTE: This method appends the values to the existing list (if any). Use {@link #setDomainNames(java.util.Collection)} or {@link #withDomainNames(java.util.Collection)} if you want to override the existing values.
\n@param domainNames A list of domain names that match the expression.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.",
"name" : "NextToken",
"c2jName" : "NextToken",
"c2jShape" : "String",
"variable" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextToken",
"marshallLocationName" : "NextToken",
"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" : "/**An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.\n@param nextToken An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.*/",
"getterDocumentation" : "/**An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.\n@return An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.*/",
"fluentSetterDocumentation" : "/**An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.\n@param nextToken An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.\n@param nextToken An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listDomainsResult",
"variableType" : "ListDomainsResult",
"variableDeclarationType" : "ListDomainsResult",
"documentation" : null,
"variableSetterType" : "ListDomainsResult",
"simpleType" : "ListDomainsResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : "ListDomainsResult",
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"NextToken" : {
"documentation" : "An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.",
"name" : "NextToken",
"c2jName" : "NextToken",
"c2jShape" : "String",
"variable" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextToken",
"marshallLocationName" : "NextToken",
"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" : "/**An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.\n@param nextToken An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.*/",
"getterDocumentation" : "/**An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.\n@return An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.*/",
"fluentSetterDocumentation" : "/**An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.\n@param nextToken An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.\n@param nextToken An opaque token indicating that there are more domains than the specified MaxNumberOfDomains
still available.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"DomainNames" : {
"documentation" : "A list of domain names that match the expression.",
"name" : "DomainNames",
"c2jName" : "DomainNames",
"c2jShape" : "DomainNameList",
"variable" : {
"variableName" : "domainNames",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of domain names that match the expression.",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "domainNames",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainNames",
"marshallLocationName" : "DomainNames",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : "DomainName",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "String",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainName",
"marshallLocationName" : "DomainName",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : true,
"map" : false,
"simpleType" : "String"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of domain names that match the expression.\n@param domainNames A list of domain names that match the expression.*/",
"getterDocumentation" : "/**A list of domain names that match the expression.\n@return A list of domain names that match the expression.*/",
"fluentSetterDocumentation" : "/**A list of domain names that match the expression.\n@param domainNames A list of domain names that match the expression.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of domain names that match the expression.\nNOTE: This method appends the values to the existing list (if any). Use {@link #setDomainNames(java.util.Collection)} or {@link #withDomainNames(java.util.Collection)} if you want to override the existing values.
\n@param domainNames A list of domain names that match the expression.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DeleteAttributesResult" : {
"c2jName" : "DeleteAttributesResult",
"documentation" : null,
"shapeName" : "DeleteAttributesResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "deleteAttributesResult",
"variableType" : "DeleteAttributesResult",
"variableDeclarationType" : "DeleteAttributesResult",
"documentation" : null,
"variableSetterType" : "DeleteAttributesResult",
"simpleType" : "DeleteAttributesResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"Attribute" : {
"c2jName" : "Attribute",
"documentation" : "",
"shapeName" : "Attribute",
"deprecated" : false,
"required" : [ "Name", "Value" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the attribute.",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "String",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the attribute.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"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 attribute.\n@param name The name of the attribute.*/",
"getterDocumentation" : "/**The name of the attribute.\n@return The name of the attribute.*/",
"fluentSetterDocumentation" : "/**The name of the attribute.\n@param name The name of the attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the attribute.\n@param name The name of the attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "",
"name" : "AlternateNameEncoding",
"c2jName" : "AlternateNameEncoding",
"c2jShape" : "String",
"variable" : {
"variableName" : "alternateNameEncoding",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "alternateNameEncoding",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name/@encoding",
"marshallLocationName" : "AlternateNameEncoding",
"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 alternateNameEncoding */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param alternateNameEncoding \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param alternateNameEncoding \n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The value of the attribute.",
"name" : "Value",
"c2jName" : "Value",
"c2jShape" : "String",
"variable" : {
"variableName" : "value",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The value of the attribute.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Value",
"marshallLocationName" : "Value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The value of the attribute.\n@param value The value of the attribute.*/",
"getterDocumentation" : "/**The value of the attribute.\n@return The value of the attribute.*/",
"fluentSetterDocumentation" : "/**The value of the attribute.\n@param value The value of the attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The value of the attribute.\n@param value The value of the attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "",
"name" : "AlternateValueEncoding",
"c2jName" : "AlternateValueEncoding",
"c2jShape" : "String",
"variable" : {
"variableName" : "alternateValueEncoding",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "alternateValueEncoding",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Value/@encoding",
"marshallLocationName" : "AlternateValueEncoding",
"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 alternateValueEncoding */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param alternateValueEncoding \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param alternateValueEncoding \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "attribute",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : null,
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"AlternateValueEncoding" : {
"documentation" : "",
"name" : "AlternateValueEncoding",
"c2jName" : "AlternateValueEncoding",
"c2jShape" : "String",
"variable" : {
"variableName" : "alternateValueEncoding",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "alternateValueEncoding",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Value/@encoding",
"marshallLocationName" : "AlternateValueEncoding",
"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 alternateValueEncoding */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param alternateValueEncoding \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param alternateValueEncoding \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"AlternateNameEncoding" : {
"documentation" : "",
"name" : "AlternateNameEncoding",
"c2jName" : "AlternateNameEncoding",
"c2jShape" : "String",
"variable" : {
"variableName" : "alternateNameEncoding",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "alternateNameEncoding",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name/@encoding",
"marshallLocationName" : "AlternateNameEncoding",
"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 alternateNameEncoding */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param alternateNameEncoding \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param alternateNameEncoding \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Value" : {
"documentation" : "The value of the attribute.",
"name" : "Value",
"c2jName" : "Value",
"c2jShape" : "String",
"variable" : {
"variableName" : "value",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The value of the attribute.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Value",
"marshallLocationName" : "Value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The value of the attribute.\n@param value The value of the attribute.*/",
"getterDocumentation" : "/**The value of the attribute.\n@return The value of the attribute.*/",
"fluentSetterDocumentation" : "/**The value of the attribute.\n@param value The value of the attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The value of the attribute.\n@param value The value of the attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Name" : {
"documentation" : "The name of the attribute.",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "String",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the attribute.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"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 attribute.\n@param name The name of the attribute.*/",
"getterDocumentation" : "/**The name of the attribute.\n@return The name of the attribute.*/",
"fluentSetterDocumentation" : "/**The name of the attribute.\n@param name The name of the attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the attribute.\n@param name The name of the attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"NumberSubmittedItemsExceededException" : {
"c2jName" : "NumberSubmittedItemsExceeded",
"documentation" : "Too many items exist in a single call.
",
"shapeName" : "NumberSubmittedItemsExceededException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "numberSubmittedItemsExceededException",
"variableType" : "NumberSubmittedItemsExceededException",
"variableDeclarationType" : "NumberSubmittedItemsExceededException",
"documentation" : null,
"variableSetterType" : "NumberSubmittedItemsExceededException",
"simpleType" : "NumberSubmittedItemsExceededException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "NumberSubmittedItemsExceeded",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvalidNumberPredicatesException" : {
"c2jName" : "InvalidNumberPredicates",
"documentation" : "Too many predicates exist in the query expression.
",
"shapeName" : "InvalidNumberPredicatesException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "invalidNumberPredicatesException",
"variableType" : "InvalidNumberPredicatesException",
"variableDeclarationType" : "InvalidNumberPredicatesException",
"documentation" : null,
"variableSetterType" : "InvalidNumberPredicatesException",
"simpleType" : "InvalidNumberPredicatesException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidNumberPredicates",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"CreateDomainResult" : {
"c2jName" : "CreateDomainResult",
"documentation" : null,
"shapeName" : "CreateDomainResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "createDomainResult",
"variableType" : "CreateDomainResult",
"variableDeclarationType" : "CreateDomainResult",
"documentation" : null,
"variableSetterType" : "CreateDomainResult",
"simpleType" : "CreateDomainResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"BatchDeleteAttributesResult" : {
"c2jName" : "BatchDeleteAttributesResult",
"documentation" : null,
"shapeName" : "BatchDeleteAttributesResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "batchDeleteAttributesResult",
"variableType" : "BatchDeleteAttributesResult",
"variableDeclarationType" : "BatchDeleteAttributesResult",
"documentation" : null,
"variableSetterType" : "BatchDeleteAttributesResult",
"simpleType" : "BatchDeleteAttributesResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"NumberDomainBytesExceededException" : {
"c2jName" : "NumberDomainBytesExceeded",
"documentation" : "Too many bytes in this domain.
",
"shapeName" : "NumberDomainBytesExceededException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "numberDomainBytesExceededException",
"variableType" : "NumberDomainBytesExceededException",
"variableDeclarationType" : "NumberDomainBytesExceededException",
"documentation" : null,
"variableSetterType" : "NumberDomainBytesExceededException",
"simpleType" : "NumberDomainBytesExceededException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "NumberDomainBytesExceeded",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"BatchDeleteAttributesRequest" : {
"c2jName" : "BatchDeleteAttributesRequest",
"documentation" : "",
"shapeName" : "BatchDeleteAttributesRequest",
"deprecated" : false,
"required" : [ "DomainName", "Items" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the domain in which the attributes are being deleted.",
"name" : "DomainName",
"c2jName" : "DomainName",
"c2jShape" : "String",
"variable" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the domain in which the attributes are being deleted.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainName",
"marshallLocationName" : "DomainName",
"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 domain in which the attributes are being deleted.\n@param domainName The name of the domain in which the attributes are being deleted.*/",
"getterDocumentation" : "/**The name of the domain in which the attributes are being deleted.\n@return The name of the domain in which the attributes are being deleted.*/",
"fluentSetterDocumentation" : "/**The name of the domain in which the attributes are being deleted.\n@param domainName The name of the domain in which the attributes are being deleted.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the domain in which the attributes are being deleted.\n@param domainName The name of the domain in which the attributes are being deleted.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A list of items on which to perform the operation.",
"name" : "Items",
"c2jName" : "Items",
"c2jShape" : "DeletableItemList",
"variable" : {
"variableName" : "items",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of items on which to perform the operation.",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "items",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Items",
"marshallLocationName" : "Items",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "DeletableItem",
"memberLocationName" : "Item",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "DeletableItem",
"variable" : {
"variableName" : "member",
"variableType" : "DeletableItem",
"variableDeclarationType" : "DeletableItem",
"documentation" : "",
"variableSetterType" : "DeletableItem",
"simpleType" : "DeletableItem"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "DeletableItem",
"variableDeclarationType" : "DeletableItem",
"documentation" : "",
"variableSetterType" : "DeletableItem",
"simpleType" : "DeletableItem"
},
"getterModel" : {
"returnType" : "DeletableItem",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Item",
"marshallLocationName" : "Item",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "DeletableItem"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of items on which to perform the operation.\n@param items A list of items on which to perform the operation.*/",
"getterDocumentation" : "/**A list of items on which to perform the operation.\n@return A list of items on which to perform the operation.*/",
"fluentSetterDocumentation" : "/**A list of items on which to perform the operation.\n@param items A list of items on which to perform the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of items on which to perform the operation.\nNOTE: This method appends the values to the existing list (if any). Use {@link #setItems(java.util.Collection)} or {@link #withItems(java.util.Collection)} if you want to override the existing values.
\n@param items A list of items on which to perform the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "batchDeleteAttributesRequest",
"variableType" : "BatchDeleteAttributesRequest",
"variableDeclarationType" : "BatchDeleteAttributesRequest",
"documentation" : null,
"variableSetterType" : "BatchDeleteAttributesRequest",
"simpleType" : "BatchDeleteAttributesRequest"
},
"marshaller" : {
"action" : "BatchDeleteAttributes",
"verb" : "POST",
"target" : null,
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"DomainName" : {
"documentation" : "The name of the domain in which the attributes are being deleted.",
"name" : "DomainName",
"c2jName" : "DomainName",
"c2jShape" : "String",
"variable" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the domain in which the attributes are being deleted.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainName",
"marshallLocationName" : "DomainName",
"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 domain in which the attributes are being deleted.\n@param domainName The name of the domain in which the attributes are being deleted.*/",
"getterDocumentation" : "/**The name of the domain in which the attributes are being deleted.\n@return The name of the domain in which the attributes are being deleted.*/",
"fluentSetterDocumentation" : "/**The name of the domain in which the attributes are being deleted.\n@param domainName The name of the domain in which the attributes are being deleted.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the domain in which the attributes are being deleted.\n@param domainName The name of the domain in which the attributes are being deleted.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Items" : {
"documentation" : "A list of items on which to perform the operation.",
"name" : "Items",
"c2jName" : "Items",
"c2jShape" : "DeletableItemList",
"variable" : {
"variableName" : "items",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of items on which to perform the operation.",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "items",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Items",
"marshallLocationName" : "Items",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "DeletableItem",
"memberLocationName" : "Item",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "DeletableItem",
"variable" : {
"variableName" : "member",
"variableType" : "DeletableItem",
"variableDeclarationType" : "DeletableItem",
"documentation" : "",
"variableSetterType" : "DeletableItem",
"simpleType" : "DeletableItem"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "DeletableItem",
"variableDeclarationType" : "DeletableItem",
"documentation" : "",
"variableSetterType" : "DeletableItem",
"simpleType" : "DeletableItem"
},
"getterModel" : {
"returnType" : "DeletableItem",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Item",
"marshallLocationName" : "Item",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "DeletableItem"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of items on which to perform the operation.\n@param items A list of items on which to perform the operation.*/",
"getterDocumentation" : "/**A list of items on which to perform the operation.\n@return A list of items on which to perform the operation.*/",
"fluentSetterDocumentation" : "/**A list of items on which to perform the operation.\n@param items A list of items on which to perform the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of items on which to perform the operation.\nNOTE: This method appends the values to the existing list (if any). Use {@link #setItems(java.util.Collection)} or {@link #withItems(java.util.Collection)} if you want to override the existing values.
\n@param items A list of items on which to perform the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"CreateDomainRequest" : {
"c2jName" : "CreateDomainRequest",
"documentation" : "",
"shapeName" : "CreateDomainRequest",
"deprecated" : false,
"required" : [ "DomainName" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.",
"name" : "DomainName",
"c2jName" : "DomainName",
"c2jShape" : "String",
"variable" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainName",
"marshallLocationName" : "DomainName",
"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 domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.\n@param domainName The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.*/",
"getterDocumentation" : "/**The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.\n@return The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.*/",
"fluentSetterDocumentation" : "/**The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.\n@param domainName The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.\n@param domainName The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "createDomainRequest",
"variableType" : "CreateDomainRequest",
"variableDeclarationType" : "CreateDomainRequest",
"documentation" : null,
"variableSetterType" : "CreateDomainRequest",
"simpleType" : "CreateDomainRequest"
},
"marshaller" : {
"action" : "CreateDomain",
"verb" : "POST",
"target" : null,
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"DomainName" : {
"documentation" : "The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.",
"name" : "DomainName",
"c2jName" : "DomainName",
"c2jShape" : "String",
"variable" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainName",
"marshallLocationName" : "DomainName",
"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 domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.\n@param domainName The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.*/",
"getterDocumentation" : "/**The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.\n@return The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.*/",
"fluentSetterDocumentation" : "/**The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.\n@param domainName The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.\n@param domainName The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"AttributeDoesNotExistException" : {
"c2jName" : "AttributeDoesNotExist",
"documentation" : "The specified attribute does not exist.
",
"shapeName" : "AttributeDoesNotExistException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "attributeDoesNotExistException",
"variableType" : "AttributeDoesNotExistException",
"variableDeclarationType" : "AttributeDoesNotExistException",
"documentation" : null,
"variableSetterType" : "AttributeDoesNotExistException",
"simpleType" : "AttributeDoesNotExistException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "AttributeDoesNotExist",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"NumberDomainsExceededException" : {
"c2jName" : "NumberDomainsExceeded",
"documentation" : "Too many domains exist per this account.
",
"shapeName" : "NumberDomainsExceededException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "numberDomainsExceededException",
"variableType" : "NumberDomainsExceededException",
"variableDeclarationType" : "NumberDomainsExceededException",
"documentation" : null,
"variableSetterType" : "NumberDomainsExceededException",
"simpleType" : "NumberDomainsExceededException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "NumberDomainsExceeded",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"NoSuchDomainException" : {
"c2jName" : "NoSuchDomain",
"documentation" : "The specified domain does not exist.
",
"shapeName" : "NoSuchDomainException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "noSuchDomainException",
"variableType" : "NoSuchDomainException",
"variableDeclarationType" : "NoSuchDomainException",
"documentation" : null,
"variableSetterType" : "NoSuchDomainException",
"simpleType" : "NoSuchDomainException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "NoSuchDomain",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ReplaceableAttribute" : {
"c2jName" : "ReplaceableAttribute",
"documentation" : "",
"shapeName" : "ReplaceableAttribute",
"deprecated" : false,
"required" : [ "Name", "Value" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the replaceable attribute.",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "String",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the replaceable attribute.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"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 replaceable attribute.\n@param name The name of the replaceable attribute.*/",
"getterDocumentation" : "/**The name of the replaceable attribute.\n@return The name of the replaceable attribute.*/",
"fluentSetterDocumentation" : "/**The name of the replaceable attribute.\n@param name The name of the replaceable attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the replaceable attribute.\n@param name The name of the replaceable attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The value of the replaceable attribute.",
"name" : "Value",
"c2jName" : "Value",
"c2jShape" : "String",
"variable" : {
"variableName" : "value",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The value of the replaceable attribute.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Value",
"marshallLocationName" : "Value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The value of the replaceable attribute.\n@param value The value of the replaceable attribute.*/",
"getterDocumentation" : "/**The value of the replaceable attribute.\n@return The value of the replaceable attribute.*/",
"fluentSetterDocumentation" : "/**The value of the replaceable attribute.\n@param value The value of the replaceable attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The value of the replaceable attribute.\n@param value The value of the replaceable attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.",
"name" : "Replace",
"c2jName" : "Replace",
"c2jShape" : "Boolean",
"variable" : {
"variableName" : "replace",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.",
"variableSetterType" : "Boolean",
"simpleType" : "Boolean"
},
"setterModel" : {
"variableName" : "replace",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"variableSetterType" : "Boolean",
"simpleType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Replace",
"marshallLocationName" : "Replace",
"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 flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.\n@param replace A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.*/",
"getterDocumentation" : "/**A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.\n@return A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.*/",
"fluentSetterDocumentation" : "/**A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.\n@param replace A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.\n@param replace A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "replaceableAttribute",
"variableType" : "ReplaceableAttribute",
"variableDeclarationType" : "ReplaceableAttribute",
"documentation" : null,
"variableSetterType" : "ReplaceableAttribute",
"simpleType" : "ReplaceableAttribute"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Replace" : {
"documentation" : "A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.",
"name" : "Replace",
"c2jName" : "Replace",
"c2jShape" : "Boolean",
"variable" : {
"variableName" : "replace",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.",
"variableSetterType" : "Boolean",
"simpleType" : "Boolean"
},
"setterModel" : {
"variableName" : "replace",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"variableSetterType" : "Boolean",
"simpleType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Replace",
"marshallLocationName" : "Replace",
"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 flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.\n@param replace A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.*/",
"getterDocumentation" : "/**A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.\n@return A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.*/",
"fluentSetterDocumentation" : "/**A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.\n@param replace A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.\n@param replace A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Value" : {
"documentation" : "The value of the replaceable attribute.",
"name" : "Value",
"c2jName" : "Value",
"c2jShape" : "String",
"variable" : {
"variableName" : "value",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The value of the replaceable attribute.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Value",
"marshallLocationName" : "Value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The value of the replaceable attribute.\n@param value The value of the replaceable attribute.*/",
"getterDocumentation" : "/**The value of the replaceable attribute.\n@return The value of the replaceable attribute.*/",
"fluentSetterDocumentation" : "/**The value of the replaceable attribute.\n@param value The value of the replaceable attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The value of the replaceable attribute.\n@param value The value of the replaceable attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Name" : {
"documentation" : "The name of the replaceable attribute.",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "String",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the replaceable attribute.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"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 replaceable attribute.\n@param name The name of the replaceable attribute.*/",
"getterDocumentation" : "/**The name of the replaceable attribute.\n@return The name of the replaceable attribute.*/",
"fluentSetterDocumentation" : "/**The name of the replaceable attribute.\n@param name The name of the replaceable attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the replaceable attribute.\n@param name The name of the replaceable attribute.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"Item" : {
"c2jName" : "Item",
"documentation" : "",
"shapeName" : "Item",
"deprecated" : false,
"required" : [ "Name", "Attributes" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the item.",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "String",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the item.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"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 item.\n@param name The name of the item.*/",
"getterDocumentation" : "/**The name of the item.\n@return The name of the item.*/",
"fluentSetterDocumentation" : "/**The name of the item.\n@param name The name of the item.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the item.\n@param name The name of the item.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "",
"name" : "AlternateNameEncoding",
"c2jName" : "AlternateNameEncoding",
"c2jShape" : "String",
"variable" : {
"variableName" : "alternateNameEncoding",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "alternateNameEncoding",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name/@encoding",
"marshallLocationName" : "AlternateNameEncoding",
"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 alternateNameEncoding */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param alternateNameEncoding \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param alternateNameEncoding \n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A list of attributes.",
"name" : "Attributes",
"c2jName" : "Attributes",
"c2jShape" : "AttributeList",
"variable" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of attributes.",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attributes",
"marshallLocationName" : "Attributes",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Attribute",
"memberLocationName" : "Attribute",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Attribute",
"variable" : {
"variableName" : "member",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : "",
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : "",
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"getterModel" : {
"returnType" : "Attribute",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attribute",
"marshallLocationName" : "Attribute",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "Attribute"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of attributes.\n@param attributes A list of attributes.*/",
"getterDocumentation" : "/**A list of attributes.\n@return A list of attributes.*/",
"fluentSetterDocumentation" : "/**A list of attributes.\n@param attributes A list of attributes.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of attributes.\nNOTE: This method appends the values to the existing list (if any). Use {@link #setAttributes(java.util.Collection)} or {@link #withAttributes(java.util.Collection)} if you want to override the existing values.
\n@param attributes A list of attributes.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "item",
"variableType" : "Item",
"variableDeclarationType" : "Item",
"documentation" : null,
"variableSetterType" : "Item",
"simpleType" : "Item"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"AlternateNameEncoding" : {
"documentation" : "",
"name" : "AlternateNameEncoding",
"c2jName" : "AlternateNameEncoding",
"c2jShape" : "String",
"variable" : {
"variableName" : "alternateNameEncoding",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "alternateNameEncoding",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name/@encoding",
"marshallLocationName" : "AlternateNameEncoding",
"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 alternateNameEncoding */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param alternateNameEncoding \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param alternateNameEncoding \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Attributes" : {
"documentation" : "A list of attributes.",
"name" : "Attributes",
"c2jName" : "Attributes",
"c2jShape" : "AttributeList",
"variable" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of attributes.",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attributes",
"marshallLocationName" : "Attributes",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Attribute",
"memberLocationName" : "Attribute",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Attribute",
"variable" : {
"variableName" : "member",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : "",
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : "",
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"getterModel" : {
"returnType" : "Attribute",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attribute",
"marshallLocationName" : "Attribute",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "Attribute"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of attributes.\n@param attributes A list of attributes.*/",
"getterDocumentation" : "/**A list of attributes.\n@return A list of attributes.*/",
"fluentSetterDocumentation" : "/**A list of attributes.\n@param attributes A list of attributes.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of attributes.\nNOTE: This method appends the values to the existing list (if any). Use {@link #setAttributes(java.util.Collection)} or {@link #withAttributes(java.util.Collection)} if you want to override the existing values.
\n@param attributes A list of attributes.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Name" : {
"documentation" : "The name of the item.",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "String",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the item.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"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 item.\n@param name The name of the item.*/",
"getterDocumentation" : "/**The name of the item.\n@return The name of the item.*/",
"fluentSetterDocumentation" : "/**The name of the item.\n@param name The name of the item.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the item.\n@param name The name of the item.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"RequestTimeoutException" : {
"c2jName" : "RequestTimeout",
"documentation" : "A timeout occurred when attempting to query the specified domain with specified query expression.
",
"shapeName" : "RequestTimeoutException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "requestTimeoutException",
"variableType" : "RequestTimeoutException",
"variableDeclarationType" : "RequestTimeoutException",
"documentation" : null,
"variableSetterType" : "RequestTimeoutException",
"simpleType" : "RequestTimeoutException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "RequestTimeout",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvalidParameterValueException" : {
"c2jName" : "InvalidParameterValue",
"documentation" : "The value for a parameter is invalid.
",
"shapeName" : "InvalidParameterValueException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "invalidParameterValueException",
"variableType" : "InvalidParameterValueException",
"variableDeclarationType" : "InvalidParameterValueException",
"documentation" : null,
"variableSetterType" : "InvalidParameterValueException",
"simpleType" : "InvalidParameterValueException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidParameterValue",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListDomainsRequest" : {
"c2jName" : "ListDomainsRequest",
"documentation" : "",
"shapeName" : "ListDomainsRequest",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.",
"name" : "MaxNumberOfDomains",
"c2jName" : "MaxNumberOfDomains",
"c2jShape" : "Integer",
"variable" : {
"variableName" : "maxNumberOfDomains",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"setterModel" : {
"variableName" : "maxNumberOfDomains",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MaxNumberOfDomains",
"marshallLocationName" : "MaxNumberOfDomains",
"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 domain names you want returned. The range is 1 to 100. The default setting is 100.\n@param maxNumberOfDomains The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.*/",
"getterDocumentation" : "/**The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.\n@return The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.*/",
"fluentSetterDocumentation" : "/**The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.\n@param maxNumberOfDomains The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.\n@param maxNumberOfDomains The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A string informing Amazon SimpleDB where to start the next list of domain names.",
"name" : "NextToken",
"c2jName" : "NextToken",
"c2jShape" : "String",
"variable" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A string informing Amazon SimpleDB where to start the next list of domain names.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextToken",
"marshallLocationName" : "NextToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string informing Amazon SimpleDB where to start the next list of domain names.\n@param nextToken A string informing Amazon SimpleDB where to start the next list of domain names.*/",
"getterDocumentation" : "/**A string informing Amazon SimpleDB where to start the next list of domain names.\n@return A string informing Amazon SimpleDB where to start the next list of domain names.*/",
"fluentSetterDocumentation" : "/**A string informing Amazon SimpleDB where to start the next list of domain names.\n@param nextToken A string informing Amazon SimpleDB where to start the next list of domain names.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A string informing Amazon SimpleDB where to start the next list of domain names.\n@param nextToken A string informing Amazon SimpleDB where to start the next list of domain names.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listDomainsRequest",
"variableType" : "ListDomainsRequest",
"variableDeclarationType" : "ListDomainsRequest",
"documentation" : null,
"variableSetterType" : "ListDomainsRequest",
"simpleType" : "ListDomainsRequest"
},
"marshaller" : {
"action" : "ListDomains",
"verb" : "POST",
"target" : null,
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"NextToken" : {
"documentation" : "A string informing Amazon SimpleDB where to start the next list of domain names.",
"name" : "NextToken",
"c2jName" : "NextToken",
"c2jShape" : "String",
"variable" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A string informing Amazon SimpleDB where to start the next list of domain names.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextToken",
"marshallLocationName" : "NextToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string informing Amazon SimpleDB where to start the next list of domain names.\n@param nextToken A string informing Amazon SimpleDB where to start the next list of domain names.*/",
"getterDocumentation" : "/**A string informing Amazon SimpleDB where to start the next list of domain names.\n@return A string informing Amazon SimpleDB where to start the next list of domain names.*/",
"fluentSetterDocumentation" : "/**A string informing Amazon SimpleDB where to start the next list of domain names.\n@param nextToken A string informing Amazon SimpleDB where to start the next list of domain names.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A string informing Amazon SimpleDB where to start the next list of domain names.\n@param nextToken A string informing Amazon SimpleDB where to start the next list of domain names.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"MaxNumberOfDomains" : {
"documentation" : "The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.",
"name" : "MaxNumberOfDomains",
"c2jName" : "MaxNumberOfDomains",
"c2jShape" : "Integer",
"variable" : {
"variableName" : "maxNumberOfDomains",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"setterModel" : {
"variableName" : "maxNumberOfDomains",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MaxNumberOfDomains",
"marshallLocationName" : "MaxNumberOfDomains",
"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 domain names you want returned. The range is 1 to 100. The default setting is 100.\n@param maxNumberOfDomains The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.*/",
"getterDocumentation" : "/**The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.\n@return The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.*/",
"fluentSetterDocumentation" : "/**The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.\n@param maxNumberOfDomains The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.\n@param maxNumberOfDomains The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DeleteAttributesRequest" : {
"c2jName" : "DeleteAttributesRequest",
"documentation" : "",
"shapeName" : "DeleteAttributesRequest",
"deprecated" : false,
"required" : [ "DomainName", "ItemName" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the domain in which to perform the operation.",
"name" : "DomainName",
"c2jName" : "DomainName",
"c2jShape" : "String",
"variable" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the domain in which to perform the operation.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainName",
"marshallLocationName" : "DomainName",
"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 domain in which to perform the operation.\n@param domainName The name of the domain in which to perform the operation.*/",
"getterDocumentation" : "/**The name of the domain in which to perform the operation.\n@return The name of the domain in which to perform the operation.*/",
"fluentSetterDocumentation" : "/**The name of the domain in which to perform the operation.\n@param domainName The name of the domain in which to perform the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the domain in which to perform the operation.\n@param domainName The name of the domain in which to perform the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.",
"name" : "ItemName",
"c2jName" : "ItemName",
"c2jShape" : "String",
"variable" : {
"variableName" : "itemName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "itemName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ItemName",
"marshallLocationName" : "ItemName",
"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 item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.\n@param itemName The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.*/",
"getterDocumentation" : "/**The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.\n@return The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.*/",
"fluentSetterDocumentation" : "/**The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.\n@param itemName The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.\n@param itemName The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.",
"name" : "Attributes",
"c2jName" : "Attributes",
"c2jShape" : "AttributeList",
"variable" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attributes",
"marshallLocationName" : "Attributes",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Attribute",
"memberLocationName" : "Attribute",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Attribute",
"variable" : {
"variableName" : "member",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : "",
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : "",
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"getterModel" : {
"returnType" : "Attribute",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attribute",
"marshallLocationName" : "Attribute",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "Attribute"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.\n@param attributes A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.*/",
"getterDocumentation" : "/**A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.\n@return A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.*/",
"fluentSetterDocumentation" : "/**A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.\n@param attributes A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.\nNOTE: This method appends the values to the existing list (if any). Use {@link #setAttributes(java.util.Collection)} or {@link #withAttributes(java.util.Collection)} if you want to override the existing values.
\n@param attributes A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.",
"name" : "Expected",
"c2jName" : "Expected",
"c2jShape" : "UpdateCondition",
"variable" : {
"variableName" : "expected",
"variableType" : "UpdateCondition",
"variableDeclarationType" : "UpdateCondition",
"documentation" : "The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.",
"variableSetterType" : "UpdateCondition",
"simpleType" : "UpdateCondition"
},
"setterModel" : {
"variableName" : "expected",
"variableType" : "UpdateCondition",
"variableDeclarationType" : "UpdateCondition",
"documentation" : "",
"variableSetterType" : "UpdateCondition",
"simpleType" : "UpdateCondition"
},
"getterModel" : {
"returnType" : "UpdateCondition",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Expected",
"marshallLocationName" : "Expected",
"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 update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.\n@param expected The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.*/",
"getterDocumentation" : "/**The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.\n@return The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.*/",
"fluentSetterDocumentation" : "/**The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.\n@param expected The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.\n@param expected The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "deleteAttributesRequest",
"variableType" : "DeleteAttributesRequest",
"variableDeclarationType" : "DeleteAttributesRequest",
"documentation" : null,
"variableSetterType" : "DeleteAttributesRequest",
"simpleType" : "DeleteAttributesRequest"
},
"marshaller" : {
"action" : "DeleteAttributes",
"verb" : "POST",
"target" : null,
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Expected" : {
"documentation" : "The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.",
"name" : "Expected",
"c2jName" : "Expected",
"c2jShape" : "UpdateCondition",
"variable" : {
"variableName" : "expected",
"variableType" : "UpdateCondition",
"variableDeclarationType" : "UpdateCondition",
"documentation" : "The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.",
"variableSetterType" : "UpdateCondition",
"simpleType" : "UpdateCondition"
},
"setterModel" : {
"variableName" : "expected",
"variableType" : "UpdateCondition",
"variableDeclarationType" : "UpdateCondition",
"documentation" : "",
"variableSetterType" : "UpdateCondition",
"simpleType" : "UpdateCondition"
},
"getterModel" : {
"returnType" : "UpdateCondition",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Expected",
"marshallLocationName" : "Expected",
"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 update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.\n@param expected The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.*/",
"getterDocumentation" : "/**The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.\n@return The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.*/",
"fluentSetterDocumentation" : "/**The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.\n@param expected The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.\n@param expected The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"DomainName" : {
"documentation" : "The name of the domain in which to perform the operation.",
"name" : "DomainName",
"c2jName" : "DomainName",
"c2jShape" : "String",
"variable" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the domain in which to perform the operation.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainName",
"marshallLocationName" : "DomainName",
"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 domain in which to perform the operation.\n@param domainName The name of the domain in which to perform the operation.*/",
"getterDocumentation" : "/**The name of the domain in which to perform the operation.\n@return The name of the domain in which to perform the operation.*/",
"fluentSetterDocumentation" : "/**The name of the domain in which to perform the operation.\n@param domainName The name of the domain in which to perform the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the domain in which to perform the operation.\n@param domainName The name of the domain in which to perform the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Attributes" : {
"documentation" : "A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.",
"name" : "Attributes",
"c2jName" : "Attributes",
"c2jShape" : "AttributeList",
"variable" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attributes",
"marshallLocationName" : "Attributes",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Attribute",
"memberLocationName" : "Attribute",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Attribute",
"variable" : {
"variableName" : "member",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : "",
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : "",
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"getterModel" : {
"returnType" : "Attribute",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attribute",
"marshallLocationName" : "Attribute",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "Attribute"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.\n@param attributes A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.*/",
"getterDocumentation" : "/**A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.\n@return A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.*/",
"fluentSetterDocumentation" : "/**A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.\n@param attributes A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.\nNOTE: This method appends the values to the existing list (if any). Use {@link #setAttributes(java.util.Collection)} or {@link #withAttributes(java.util.Collection)} if you want to override the existing values.
\n@param attributes A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ItemName" : {
"documentation" : "The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.",
"name" : "ItemName",
"c2jName" : "ItemName",
"c2jShape" : "String",
"variable" : {
"variableName" : "itemName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "itemName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ItemName",
"marshallLocationName" : "ItemName",
"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 item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.\n@param itemName The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.*/",
"getterDocumentation" : "/**The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.\n@return The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.*/",
"fluentSetterDocumentation" : "/**The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.\n@param itemName The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.\n@param itemName The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DuplicateItemNameException" : {
"c2jName" : "DuplicateItemName",
"documentation" : "The item name was specified more than once.
",
"shapeName" : "DuplicateItemNameException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "duplicateItemNameException",
"variableType" : "DuplicateItemNameException",
"variableDeclarationType" : "DuplicateItemNameException",
"documentation" : null,
"variableSetterType" : "DuplicateItemNameException",
"simpleType" : "DuplicateItemNameException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "DuplicateItemName",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"TooManyRequestedAttributesException" : {
"c2jName" : "TooManyRequestedAttributes",
"documentation" : "Too many attributes requested.
",
"shapeName" : "TooManyRequestedAttributesException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "tooManyRequestedAttributesException",
"variableType" : "TooManyRequestedAttributesException",
"variableDeclarationType" : "TooManyRequestedAttributesException",
"documentation" : null,
"variableSetterType" : "TooManyRequestedAttributesException",
"simpleType" : "TooManyRequestedAttributesException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "TooManyRequestedAttributes",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"NumberSubmittedAttributesExceededException" : {
"c2jName" : "NumberSubmittedAttributesExceeded",
"documentation" : "Too many attributes exist in a single call.
",
"shapeName" : "NumberSubmittedAttributesExceededException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "numberSubmittedAttributesExceededException",
"variableType" : "NumberSubmittedAttributesExceededException",
"variableDeclarationType" : "NumberSubmittedAttributesExceededException",
"documentation" : null,
"variableSetterType" : "NumberSubmittedAttributesExceededException",
"simpleType" : "NumberSubmittedAttributesExceededException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "NumberSubmittedAttributesExceeded",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"BatchPutAttributesResult" : {
"c2jName" : "BatchPutAttributesResult",
"documentation" : null,
"shapeName" : "BatchPutAttributesResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "batchPutAttributesResult",
"variableType" : "BatchPutAttributesResult",
"variableDeclarationType" : "BatchPutAttributesResult",
"documentation" : null,
"variableSetterType" : "BatchPutAttributesResult",
"simpleType" : "BatchPutAttributesResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"SelectRequest" : {
"c2jName" : "SelectRequest",
"documentation" : "",
"shapeName" : "SelectRequest",
"deprecated" : false,
"required" : [ "SelectExpression" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The expression used to query the domain.",
"name" : "SelectExpression",
"c2jName" : "SelectExpression",
"c2jShape" : "String",
"variable" : {
"variableName" : "selectExpression",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The expression used to query the domain.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "selectExpression",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SelectExpression",
"marshallLocationName" : "SelectExpression",
"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 expression used to query the domain.\n@param selectExpression The expression used to query the domain.*/",
"getterDocumentation" : "/**The expression used to query the domain.\n@return The expression used to query the domain.*/",
"fluentSetterDocumentation" : "/**The expression used to query the domain.\n@param selectExpression The expression used to query the domain.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The expression used to query the domain.\n@param selectExpression The expression used to query the domain.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A string informing Amazon SimpleDB where to start the next list of ItemNames
.",
"name" : "NextToken",
"c2jName" : "NextToken",
"c2jShape" : "String",
"variable" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A string informing Amazon SimpleDB where to start the next list of ItemNames
.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextToken",
"marshallLocationName" : "NextToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string informing Amazon SimpleDB where to start the next list of ItemNames
.\n@param nextToken A string informing Amazon SimpleDB where to start the next list of ItemNames
.*/",
"getterDocumentation" : "/**A string informing Amazon SimpleDB where to start the next list of ItemNames
.\n@return A string informing Amazon SimpleDB where to start the next list of ItemNames
.*/",
"fluentSetterDocumentation" : "/**A string informing Amazon SimpleDB where to start the next list of ItemNames
.\n@param nextToken A string informing Amazon SimpleDB where to start the next list of ItemNames
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A string informing Amazon SimpleDB where to start the next list of ItemNames
.\n@param nextToken A string informing Amazon SimpleDB where to start the next list of ItemNames
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.",
"name" : "ConsistentRead",
"c2jName" : "ConsistentRead",
"c2jShape" : "Boolean",
"variable" : {
"variableName" : "consistentRead",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.",
"variableSetterType" : "Boolean",
"simpleType" : "Boolean"
},
"setterModel" : {
"variableName" : "consistentRead",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"variableSetterType" : "Boolean",
"simpleType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ConsistentRead",
"marshallLocationName" : "ConsistentRead",
"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 whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.\n@param consistentRead Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.*/",
"getterDocumentation" : "/**Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.\n@return Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.*/",
"fluentSetterDocumentation" : "/**Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.\n@param consistentRead Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.\n@param consistentRead Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "selectRequest",
"variableType" : "SelectRequest",
"variableDeclarationType" : "SelectRequest",
"documentation" : null,
"variableSetterType" : "SelectRequest",
"simpleType" : "SelectRequest"
},
"marshaller" : {
"action" : "Select",
"verb" : "POST",
"target" : null,
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"NextToken" : {
"documentation" : "A string informing Amazon SimpleDB where to start the next list of ItemNames
.",
"name" : "NextToken",
"c2jName" : "NextToken",
"c2jShape" : "String",
"variable" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A string informing Amazon SimpleDB where to start the next list of ItemNames
.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextToken",
"marshallLocationName" : "NextToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string informing Amazon SimpleDB where to start the next list of ItemNames
.\n@param nextToken A string informing Amazon SimpleDB where to start the next list of ItemNames
.*/",
"getterDocumentation" : "/**A string informing Amazon SimpleDB where to start the next list of ItemNames
.\n@return A string informing Amazon SimpleDB where to start the next list of ItemNames
.*/",
"fluentSetterDocumentation" : "/**A string informing Amazon SimpleDB where to start the next list of ItemNames
.\n@param nextToken A string informing Amazon SimpleDB where to start the next list of ItemNames
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A string informing Amazon SimpleDB where to start the next list of ItemNames
.\n@param nextToken A string informing Amazon SimpleDB where to start the next list of ItemNames
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"SelectExpression" : {
"documentation" : "The expression used to query the domain.",
"name" : "SelectExpression",
"c2jName" : "SelectExpression",
"c2jShape" : "String",
"variable" : {
"variableName" : "selectExpression",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The expression used to query the domain.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "selectExpression",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SelectExpression",
"marshallLocationName" : "SelectExpression",
"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 expression used to query the domain.\n@param selectExpression The expression used to query the domain.*/",
"getterDocumentation" : "/**The expression used to query the domain.\n@return The expression used to query the domain.*/",
"fluentSetterDocumentation" : "/**The expression used to query the domain.\n@param selectExpression The expression used to query the domain.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The expression used to query the domain.\n@param selectExpression The expression used to query the domain.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ConsistentRead" : {
"documentation" : "Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.",
"name" : "ConsistentRead",
"c2jName" : "ConsistentRead",
"c2jShape" : "Boolean",
"variable" : {
"variableName" : "consistentRead",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.",
"variableSetterType" : "Boolean",
"simpleType" : "Boolean"
},
"setterModel" : {
"variableName" : "consistentRead",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"variableSetterType" : "Boolean",
"simpleType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ConsistentRead",
"marshallLocationName" : "ConsistentRead",
"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 whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.\n@param consistentRead Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.*/",
"getterDocumentation" : "/**Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.\n@return Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.*/",
"fluentSetterDocumentation" : "/**Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.\n@param consistentRead Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.\n@param consistentRead Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"UpdateCondition" : {
"c2jName" : "UpdateCondition",
"documentation" : " Specifies the conditions under which data should be updated. If an update condition is specified for a request, the data will only be updated if the condition is satisfied. For example, if an attribute with a specific name and value exists, or if a specific attribute doesn't exist.
",
"shapeName" : "UpdateCondition",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the attribute involved in the condition.
",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "String",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the attribute involved in the condition.
",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"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 attribute involved in the condition.
\n@param name The name of the attribute involved in the condition.*/",
"getterDocumentation" : "/**The name of the attribute involved in the condition.
\n@return The name of the attribute involved in the condition.*/",
"fluentSetterDocumentation" : "/**The name of the attribute involved in the condition.
\n@param name The name of the attribute involved in the condition.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the attribute involved in the condition.
\n@param name The name of the attribute involved in the condition.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.
",
"name" : "Value",
"c2jName" : "Value",
"c2jShape" : "String",
"variable" : {
"variableName" : "value",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.
",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Value",
"marshallLocationName" : "Value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.
\n@param value The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.*/",
"getterDocumentation" : "/**The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.
\n@return The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.*/",
"fluentSetterDocumentation" : "/**The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.
\n@param value The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.
\n@param value The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.
",
"name" : "Exists",
"c2jName" : "Exists",
"c2jShape" : "Boolean",
"variable" : {
"variableName" : "exists",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.
",
"variableSetterType" : "Boolean",
"simpleType" : "Boolean"
},
"setterModel" : {
"variableName" : "exists",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"variableSetterType" : "Boolean",
"simpleType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Exists",
"marshallLocationName" : "Exists",
"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 value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.
\n@param exists A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.*/",
"getterDocumentation" : "/**A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.
\n@return A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.*/",
"fluentSetterDocumentation" : "/**A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.
\n@param exists A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.
\n@param exists A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "updateCondition",
"variableType" : "UpdateCondition",
"variableDeclarationType" : "UpdateCondition",
"documentation" : null,
"variableSetterType" : "UpdateCondition",
"simpleType" : "UpdateCondition"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Exists" : {
"documentation" : "A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.
",
"name" : "Exists",
"c2jName" : "Exists",
"c2jShape" : "Boolean",
"variable" : {
"variableName" : "exists",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.
",
"variableSetterType" : "Boolean",
"simpleType" : "Boolean"
},
"setterModel" : {
"variableName" : "exists",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"variableSetterType" : "Boolean",
"simpleType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Exists",
"marshallLocationName" : "Exists",
"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 value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.
\n@param exists A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.*/",
"getterDocumentation" : "/**A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.
\n@return A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.*/",
"fluentSetterDocumentation" : "/**A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.
\n@param exists A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.
\n@param exists A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true
if the attribute must exist for the update condition to be satisfied. Specify false
if the attribute should not exist in order for the update condition to be satisfied.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Value" : {
"documentation" : "The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.
",
"name" : "Value",
"c2jName" : "Value",
"c2jShape" : "String",
"variable" : {
"variableName" : "value",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.
",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Value",
"marshallLocationName" : "Value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.
\n@param value The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.*/",
"getterDocumentation" : "/**The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.
\n@return The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.*/",
"fluentSetterDocumentation" : "/**The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.
\n@param value The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.
\n@param value The value of an attribute. This value can only be specified when the Exists
parameter is equal to true
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Name" : {
"documentation" : "The name of the attribute involved in the condition.
",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "String",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the attribute involved in the condition.
",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"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 attribute involved in the condition.
\n@param name The name of the attribute involved in the condition.*/",
"getterDocumentation" : "/**The name of the attribute involved in the condition.
\n@return The name of the attribute involved in the condition.*/",
"fluentSetterDocumentation" : "/**The name of the attribute involved in the condition.
\n@param name The name of the attribute involved in the condition.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the attribute involved in the condition.
\n@param name The name of the attribute involved in the condition.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DomainMetadataResult" : {
"c2jName" : "DomainMetadataResult",
"documentation" : "",
"shapeName" : "DomainMetadataResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The number of all items in the domain.",
"name" : "ItemCount",
"c2jName" : "ItemCount",
"c2jShape" : "Integer",
"variable" : {
"variableName" : "itemCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The number of all items in the domain.",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"setterModel" : {
"variableName" : "itemCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ItemCount",
"marshallLocationName" : "ItemCount",
"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 all items in the domain.\n@param itemCount The number of all items in the domain.*/",
"getterDocumentation" : "/**The number of all items in the domain.\n@return The number of all items in the domain.*/",
"fluentSetterDocumentation" : "/**The number of all items in the domain.\n@param itemCount The number of all items in the domain.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The number of all items in the domain.\n@param itemCount The number of all items in the domain.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The total size of all item names in the domain, in bytes.",
"name" : "ItemNamesSizeBytes",
"c2jName" : "ItemNamesSizeBytes",
"c2jShape" : "Long",
"variable" : {
"variableName" : "itemNamesSizeBytes",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The total size of all item names in the domain, in bytes.",
"variableSetterType" : "Long",
"simpleType" : "Long"
},
"setterModel" : {
"variableName" : "itemNamesSizeBytes",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"variableSetterType" : "Long",
"simpleType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ItemNamesSizeBytes",
"marshallLocationName" : "ItemNamesSizeBytes",
"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 total size of all item names in the domain, in bytes.\n@param itemNamesSizeBytes The total size of all item names in the domain, in bytes.*/",
"getterDocumentation" : "/**The total size of all item names in the domain, in bytes.\n@return The total size of all item names in the domain, in bytes.*/",
"fluentSetterDocumentation" : "/**The total size of all item names in the domain, in bytes.\n@param itemNamesSizeBytes The total size of all item names in the domain, in bytes.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The total size of all item names in the domain, in bytes.\n@param itemNamesSizeBytes The total size of all item names in the domain, in bytes.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The number of unique attribute names in the domain.",
"name" : "AttributeNameCount",
"c2jName" : "AttributeNameCount",
"c2jShape" : "Integer",
"variable" : {
"variableName" : "attributeNameCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The number of unique attribute names in the domain.",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"setterModel" : {
"variableName" : "attributeNameCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AttributeNameCount",
"marshallLocationName" : "AttributeNameCount",
"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 unique attribute names in the domain.\n@param attributeNameCount The number of unique attribute names in the domain.*/",
"getterDocumentation" : "/**The number of unique attribute names in the domain.\n@return The number of unique attribute names in the domain.*/",
"fluentSetterDocumentation" : "/**The number of unique attribute names in the domain.\n@param attributeNameCount The number of unique attribute names in the domain.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The number of unique attribute names in the domain.\n@param attributeNameCount The number of unique attribute names in the domain.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The total size of all unique attribute names in the domain, in bytes.",
"name" : "AttributeNamesSizeBytes",
"c2jName" : "AttributeNamesSizeBytes",
"c2jShape" : "Long",
"variable" : {
"variableName" : "attributeNamesSizeBytes",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The total size of all unique attribute names in the domain, in bytes.",
"variableSetterType" : "Long",
"simpleType" : "Long"
},
"setterModel" : {
"variableName" : "attributeNamesSizeBytes",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"variableSetterType" : "Long",
"simpleType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AttributeNamesSizeBytes",
"marshallLocationName" : "AttributeNamesSizeBytes",
"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 total size of all unique attribute names in the domain, in bytes.\n@param attributeNamesSizeBytes The total size of all unique attribute names in the domain, in bytes.*/",
"getterDocumentation" : "/**The total size of all unique attribute names in the domain, in bytes.\n@return The total size of all unique attribute names in the domain, in bytes.*/",
"fluentSetterDocumentation" : "/**The total size of all unique attribute names in the domain, in bytes.\n@param attributeNamesSizeBytes The total size of all unique attribute names in the domain, in bytes.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The total size of all unique attribute names in the domain, in bytes.\n@param attributeNamesSizeBytes The total size of all unique attribute names in the domain, in bytes.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The number of all attribute name/value pairs in the domain.",
"name" : "AttributeValueCount",
"c2jName" : "AttributeValueCount",
"c2jShape" : "Integer",
"variable" : {
"variableName" : "attributeValueCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The number of all attribute name/value pairs in the domain.",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"setterModel" : {
"variableName" : "attributeValueCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AttributeValueCount",
"marshallLocationName" : "AttributeValueCount",
"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 all attribute name/value pairs in the domain.\n@param attributeValueCount The number of all attribute name/value pairs in the domain.*/",
"getterDocumentation" : "/**The number of all attribute name/value pairs in the domain.\n@return The number of all attribute name/value pairs in the domain.*/",
"fluentSetterDocumentation" : "/**The number of all attribute name/value pairs in the domain.\n@param attributeValueCount The number of all attribute name/value pairs in the domain.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The number of all attribute name/value pairs in the domain.\n@param attributeValueCount The number of all attribute name/value pairs in the domain.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The total size of all attribute values in the domain, in bytes.",
"name" : "AttributeValuesSizeBytes",
"c2jName" : "AttributeValuesSizeBytes",
"c2jShape" : "Long",
"variable" : {
"variableName" : "attributeValuesSizeBytes",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The total size of all attribute values in the domain, in bytes.",
"variableSetterType" : "Long",
"simpleType" : "Long"
},
"setterModel" : {
"variableName" : "attributeValuesSizeBytes",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"variableSetterType" : "Long",
"simpleType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AttributeValuesSizeBytes",
"marshallLocationName" : "AttributeValuesSizeBytes",
"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 total size of all attribute values in the domain, in bytes.\n@param attributeValuesSizeBytes The total size of all attribute values in the domain, in bytes.*/",
"getterDocumentation" : "/**The total size of all attribute values in the domain, in bytes.\n@return The total size of all attribute values in the domain, in bytes.*/",
"fluentSetterDocumentation" : "/**The total size of all attribute values in the domain, in bytes.\n@param attributeValuesSizeBytes The total size of all attribute values in the domain, in bytes.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The total size of all attribute values in the domain, in bytes.\n@param attributeValuesSizeBytes The total size of all attribute values in the domain, in bytes.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The data and time when metadata was calculated, in Epoch (UNIX) seconds.",
"name" : "Timestamp",
"c2jName" : "Timestamp",
"c2jShape" : "Integer",
"variable" : {
"variableName" : "timestamp",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The data and time when metadata was calculated, in Epoch (UNIX) seconds.",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"setterModel" : {
"variableName" : "timestamp",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Timestamp",
"marshallLocationName" : "Timestamp",
"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 and time when metadata was calculated, in Epoch (UNIX) seconds.\n@param timestamp The data and time when metadata was calculated, in Epoch (UNIX) seconds.*/",
"getterDocumentation" : "/**The data and time when metadata was calculated, in Epoch (UNIX) seconds.\n@return The data and time when metadata was calculated, in Epoch (UNIX) seconds.*/",
"fluentSetterDocumentation" : "/**The data and time when metadata was calculated, in Epoch (UNIX) seconds.\n@param timestamp The data and time when metadata was calculated, in Epoch (UNIX) seconds.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The data and time when metadata was calculated, in Epoch (UNIX) seconds.\n@param timestamp The data and time when metadata was calculated, in Epoch (UNIX) seconds.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "domainMetadataResult",
"variableType" : "DomainMetadataResult",
"variableDeclarationType" : "DomainMetadataResult",
"documentation" : null,
"variableSetterType" : "DomainMetadataResult",
"simpleType" : "DomainMetadataResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : "DomainMetadataResult",
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"AttributeValueCount" : {
"documentation" : "The number of all attribute name/value pairs in the domain.",
"name" : "AttributeValueCount",
"c2jName" : "AttributeValueCount",
"c2jShape" : "Integer",
"variable" : {
"variableName" : "attributeValueCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The number of all attribute name/value pairs in the domain.",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"setterModel" : {
"variableName" : "attributeValueCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AttributeValueCount",
"marshallLocationName" : "AttributeValueCount",
"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 all attribute name/value pairs in the domain.\n@param attributeValueCount The number of all attribute name/value pairs in the domain.*/",
"getterDocumentation" : "/**The number of all attribute name/value pairs in the domain.\n@return The number of all attribute name/value pairs in the domain.*/",
"fluentSetterDocumentation" : "/**The number of all attribute name/value pairs in the domain.\n@param attributeValueCount The number of all attribute name/value pairs in the domain.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The number of all attribute name/value pairs in the domain.\n@param attributeValueCount The number of all attribute name/value pairs in the domain.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ItemNamesSizeBytes" : {
"documentation" : "The total size of all item names in the domain, in bytes.",
"name" : "ItemNamesSizeBytes",
"c2jName" : "ItemNamesSizeBytes",
"c2jShape" : "Long",
"variable" : {
"variableName" : "itemNamesSizeBytes",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The total size of all item names in the domain, in bytes.",
"variableSetterType" : "Long",
"simpleType" : "Long"
},
"setterModel" : {
"variableName" : "itemNamesSizeBytes",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"variableSetterType" : "Long",
"simpleType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ItemNamesSizeBytes",
"marshallLocationName" : "ItemNamesSizeBytes",
"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 total size of all item names in the domain, in bytes.\n@param itemNamesSizeBytes The total size of all item names in the domain, in bytes.*/",
"getterDocumentation" : "/**The total size of all item names in the domain, in bytes.\n@return The total size of all item names in the domain, in bytes.*/",
"fluentSetterDocumentation" : "/**The total size of all item names in the domain, in bytes.\n@param itemNamesSizeBytes The total size of all item names in the domain, in bytes.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The total size of all item names in the domain, in bytes.\n@param itemNamesSizeBytes The total size of all item names in the domain, in bytes.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"AttributeNameCount" : {
"documentation" : "The number of unique attribute names in the domain.",
"name" : "AttributeNameCount",
"c2jName" : "AttributeNameCount",
"c2jShape" : "Integer",
"variable" : {
"variableName" : "attributeNameCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The number of unique attribute names in the domain.",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"setterModel" : {
"variableName" : "attributeNameCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AttributeNameCount",
"marshallLocationName" : "AttributeNameCount",
"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 unique attribute names in the domain.\n@param attributeNameCount The number of unique attribute names in the domain.*/",
"getterDocumentation" : "/**The number of unique attribute names in the domain.\n@return The number of unique attribute names in the domain.*/",
"fluentSetterDocumentation" : "/**The number of unique attribute names in the domain.\n@param attributeNameCount The number of unique attribute names in the domain.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The number of unique attribute names in the domain.\n@param attributeNameCount The number of unique attribute names in the domain.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ItemCount" : {
"documentation" : "The number of all items in the domain.",
"name" : "ItemCount",
"c2jName" : "ItemCount",
"c2jShape" : "Integer",
"variable" : {
"variableName" : "itemCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The number of all items in the domain.",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"setterModel" : {
"variableName" : "itemCount",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ItemCount",
"marshallLocationName" : "ItemCount",
"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 all items in the domain.\n@param itemCount The number of all items in the domain.*/",
"getterDocumentation" : "/**The number of all items in the domain.\n@return The number of all items in the domain.*/",
"fluentSetterDocumentation" : "/**The number of all items in the domain.\n@param itemCount The number of all items in the domain.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The number of all items in the domain.\n@param itemCount The number of all items in the domain.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"AttributeNamesSizeBytes" : {
"documentation" : "The total size of all unique attribute names in the domain, in bytes.",
"name" : "AttributeNamesSizeBytes",
"c2jName" : "AttributeNamesSizeBytes",
"c2jShape" : "Long",
"variable" : {
"variableName" : "attributeNamesSizeBytes",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The total size of all unique attribute names in the domain, in bytes.",
"variableSetterType" : "Long",
"simpleType" : "Long"
},
"setterModel" : {
"variableName" : "attributeNamesSizeBytes",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"variableSetterType" : "Long",
"simpleType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AttributeNamesSizeBytes",
"marshallLocationName" : "AttributeNamesSizeBytes",
"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 total size of all unique attribute names in the domain, in bytes.\n@param attributeNamesSizeBytes The total size of all unique attribute names in the domain, in bytes.*/",
"getterDocumentation" : "/**The total size of all unique attribute names in the domain, in bytes.\n@return The total size of all unique attribute names in the domain, in bytes.*/",
"fluentSetterDocumentation" : "/**The total size of all unique attribute names in the domain, in bytes.\n@param attributeNamesSizeBytes The total size of all unique attribute names in the domain, in bytes.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The total size of all unique attribute names in the domain, in bytes.\n@param attributeNamesSizeBytes The total size of all unique attribute names in the domain, in bytes.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"AttributeValuesSizeBytes" : {
"documentation" : "The total size of all attribute values in the domain, in bytes.",
"name" : "AttributeValuesSizeBytes",
"c2jName" : "AttributeValuesSizeBytes",
"c2jShape" : "Long",
"variable" : {
"variableName" : "attributeValuesSizeBytes",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The total size of all attribute values in the domain, in bytes.",
"variableSetterType" : "Long",
"simpleType" : "Long"
},
"setterModel" : {
"variableName" : "attributeValuesSizeBytes",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"variableSetterType" : "Long",
"simpleType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AttributeValuesSizeBytes",
"marshallLocationName" : "AttributeValuesSizeBytes",
"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 total size of all attribute values in the domain, in bytes.\n@param attributeValuesSizeBytes The total size of all attribute values in the domain, in bytes.*/",
"getterDocumentation" : "/**The total size of all attribute values in the domain, in bytes.\n@return The total size of all attribute values in the domain, in bytes.*/",
"fluentSetterDocumentation" : "/**The total size of all attribute values in the domain, in bytes.\n@param attributeValuesSizeBytes The total size of all attribute values in the domain, in bytes.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The total size of all attribute values in the domain, in bytes.\n@param attributeValuesSizeBytes The total size of all attribute values in the domain, in bytes.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Timestamp" : {
"documentation" : "The data and time when metadata was calculated, in Epoch (UNIX) seconds.",
"name" : "Timestamp",
"c2jName" : "Timestamp",
"c2jShape" : "Integer",
"variable" : {
"variableName" : "timestamp",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The data and time when metadata was calculated, in Epoch (UNIX) seconds.",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"setterModel" : {
"variableName" : "timestamp",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"variableSetterType" : "Integer",
"simpleType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Timestamp",
"marshallLocationName" : "Timestamp",
"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 and time when metadata was calculated, in Epoch (UNIX) seconds.\n@param timestamp The data and time when metadata was calculated, in Epoch (UNIX) seconds.*/",
"getterDocumentation" : "/**The data and time when metadata was calculated, in Epoch (UNIX) seconds.\n@return The data and time when metadata was calculated, in Epoch (UNIX) seconds.*/",
"fluentSetterDocumentation" : "/**The data and time when metadata was calculated, in Epoch (UNIX) seconds.\n@param timestamp The data and time when metadata was calculated, in Epoch (UNIX) seconds.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The data and time when metadata was calculated, in Epoch (UNIX) seconds.\n@param timestamp The data and time when metadata was calculated, in Epoch (UNIX) seconds.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvalidQueryExpressionException" : {
"c2jName" : "InvalidQueryExpression",
"documentation" : "The specified query expression syntax is not valid.
",
"shapeName" : "InvalidQueryExpressionException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "invalidQueryExpressionException",
"variableType" : "InvalidQueryExpressionException",
"variableDeclarationType" : "InvalidQueryExpressionException",
"documentation" : null,
"variableSetterType" : "InvalidQueryExpressionException",
"simpleType" : "InvalidQueryExpressionException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidQueryExpression",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DeletableItem" : {
"c2jName" : "DeletableItem",
"documentation" : "",
"shapeName" : "DeletableItem",
"deprecated" : false,
"required" : [ "Name" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "String",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ItemName",
"marshallLocationName" : "ItemName",
"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 name */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param name \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param name \n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "",
"name" : "Attributes",
"c2jName" : "Attributes",
"c2jShape" : "AttributeList",
"variable" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attributes",
"marshallLocationName" : "Attributes",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Attribute",
"memberLocationName" : "Attribute",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Attribute",
"variable" : {
"variableName" : "member",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : "",
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : "",
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"getterModel" : {
"returnType" : "Attribute",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attribute",
"marshallLocationName" : "Attribute",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "Attribute"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**\n@param attributes */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param attributes \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\nNOTE: This method appends the values to the existing list (if any). Use {@link #setAttributes(java.util.Collection)} or {@link #withAttributes(java.util.Collection)} if you want to override the existing values.
\n@param attributes \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "deletableItem",
"variableType" : "DeletableItem",
"variableDeclarationType" : "DeletableItem",
"documentation" : null,
"variableSetterType" : "DeletableItem",
"simpleType" : "DeletableItem"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Attributes" : {
"documentation" : "",
"name" : "Attributes",
"c2jName" : "Attributes",
"c2jShape" : "AttributeList",
"variable" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attributes",
"marshallLocationName" : "Attributes",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Attribute",
"memberLocationName" : "Attribute",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Attribute",
"variable" : {
"variableName" : "member",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : "",
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : "",
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"getterModel" : {
"returnType" : "Attribute",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attribute",
"marshallLocationName" : "Attribute",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "Attribute"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**\n@param attributes */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param attributes \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\nNOTE: This method appends the values to the existing list (if any). Use {@link #setAttributes(java.util.Collection)} or {@link #withAttributes(java.util.Collection)} if you want to override the existing values.
\n@param attributes \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Name" : {
"documentation" : "",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "String",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ItemName",
"marshallLocationName" : "ItemName",
"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 name */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param name \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param name \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"BatchPutAttributesRequest" : {
"c2jName" : "BatchPutAttributesRequest",
"documentation" : "",
"shapeName" : "BatchPutAttributesRequest",
"deprecated" : false,
"required" : [ "DomainName", "Items" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the domain in which the attributes are being stored.",
"name" : "DomainName",
"c2jName" : "DomainName",
"c2jShape" : "String",
"variable" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the domain in which the attributes are being stored.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainName",
"marshallLocationName" : "DomainName",
"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 domain in which the attributes are being stored.\n@param domainName The name of the domain in which the attributes are being stored.*/",
"getterDocumentation" : "/**The name of the domain in which the attributes are being stored.\n@return The name of the domain in which the attributes are being stored.*/",
"fluentSetterDocumentation" : "/**The name of the domain in which the attributes are being stored.\n@param domainName The name of the domain in which the attributes are being stored.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the domain in which the attributes are being stored.\n@param domainName The name of the domain in which the attributes are being stored.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A list of items on which to perform the operation.",
"name" : "Items",
"c2jName" : "Items",
"c2jShape" : "ReplaceableItemList",
"variable" : {
"variableName" : "items",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of items on which to perform the operation.",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "items",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Items",
"marshallLocationName" : "Items",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "ReplaceableItem",
"memberLocationName" : "Item",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "ReplaceableItem",
"variable" : {
"variableName" : "member",
"variableType" : "ReplaceableItem",
"variableDeclarationType" : "ReplaceableItem",
"documentation" : "",
"variableSetterType" : "ReplaceableItem",
"simpleType" : "ReplaceableItem"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "ReplaceableItem",
"variableDeclarationType" : "ReplaceableItem",
"documentation" : "",
"variableSetterType" : "ReplaceableItem",
"simpleType" : "ReplaceableItem"
},
"getterModel" : {
"returnType" : "ReplaceableItem",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Item",
"marshallLocationName" : "Item",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "ReplaceableItem"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of items on which to perform the operation.\n@param items A list of items on which to perform the operation.*/",
"getterDocumentation" : "/**A list of items on which to perform the operation.\n@return A list of items on which to perform the operation.*/",
"fluentSetterDocumentation" : "/**A list of items on which to perform the operation.\n@param items A list of items on which to perform the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of items on which to perform the operation.\nNOTE: This method appends the values to the existing list (if any). Use {@link #setItems(java.util.Collection)} or {@link #withItems(java.util.Collection)} if you want to override the existing values.
\n@param items A list of items on which to perform the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "batchPutAttributesRequest",
"variableType" : "BatchPutAttributesRequest",
"variableDeclarationType" : "BatchPutAttributesRequest",
"documentation" : null,
"variableSetterType" : "BatchPutAttributesRequest",
"simpleType" : "BatchPutAttributesRequest"
},
"marshaller" : {
"action" : "BatchPutAttributes",
"verb" : "POST",
"target" : null,
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"DomainName" : {
"documentation" : "The name of the domain in which the attributes are being stored.",
"name" : "DomainName",
"c2jName" : "DomainName",
"c2jShape" : "String",
"variable" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the domain in which the attributes are being stored.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainName",
"marshallLocationName" : "DomainName",
"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 domain in which the attributes are being stored.\n@param domainName The name of the domain in which the attributes are being stored.*/",
"getterDocumentation" : "/**The name of the domain in which the attributes are being stored.\n@return The name of the domain in which the attributes are being stored.*/",
"fluentSetterDocumentation" : "/**The name of the domain in which the attributes are being stored.\n@param domainName The name of the domain in which the attributes are being stored.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the domain in which the attributes are being stored.\n@param domainName The name of the domain in which the attributes are being stored.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Items" : {
"documentation" : "A list of items on which to perform the operation.",
"name" : "Items",
"c2jName" : "Items",
"c2jShape" : "ReplaceableItemList",
"variable" : {
"variableName" : "items",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of items on which to perform the operation.",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "items",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Items",
"marshallLocationName" : "Items",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "ReplaceableItem",
"memberLocationName" : "Item",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "ReplaceableItem",
"variable" : {
"variableName" : "member",
"variableType" : "ReplaceableItem",
"variableDeclarationType" : "ReplaceableItem",
"documentation" : "",
"variableSetterType" : "ReplaceableItem",
"simpleType" : "ReplaceableItem"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "ReplaceableItem",
"variableDeclarationType" : "ReplaceableItem",
"documentation" : "",
"variableSetterType" : "ReplaceableItem",
"simpleType" : "ReplaceableItem"
},
"getterModel" : {
"returnType" : "ReplaceableItem",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Item",
"marshallLocationName" : "Item",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "ReplaceableItem"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of items on which to perform the operation.\n@param items A list of items on which to perform the operation.*/",
"getterDocumentation" : "/**A list of items on which to perform the operation.\n@return A list of items on which to perform the operation.*/",
"fluentSetterDocumentation" : "/**A list of items on which to perform the operation.\n@param items A list of items on which to perform the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of items on which to perform the operation.\nNOTE: This method appends the values to the existing list (if any). Use {@link #setItems(java.util.Collection)} or {@link #withItems(java.util.Collection)} if you want to override the existing values.
\n@param items A list of items on which to perform the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ReplaceableItem" : {
"c2jName" : "ReplaceableItem",
"documentation" : "",
"shapeName" : "ReplaceableItem",
"deprecated" : false,
"required" : [ "Name", "Attributes" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the replaceable item.",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "String",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the replaceable item.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ItemName",
"marshallLocationName" : "ItemName",
"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 replaceable item.\n@param name The name of the replaceable item.*/",
"getterDocumentation" : "/**The name of the replaceable item.\n@return The name of the replaceable item.*/",
"fluentSetterDocumentation" : "/**The name of the replaceable item.\n@param name The name of the replaceable item.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the replaceable item.\n@param name The name of the replaceable item.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The list of attributes for a replaceable item.",
"name" : "Attributes",
"c2jName" : "Attributes",
"c2jShape" : "ReplaceableAttributeList",
"variable" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "The list of attributes for a replaceable item.",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attributes",
"marshallLocationName" : "Attributes",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "ReplaceableAttribute",
"memberLocationName" : "Attribute",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "ReplaceableAttribute",
"variable" : {
"variableName" : "member",
"variableType" : "ReplaceableAttribute",
"variableDeclarationType" : "ReplaceableAttribute",
"documentation" : "",
"variableSetterType" : "ReplaceableAttribute",
"simpleType" : "ReplaceableAttribute"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "ReplaceableAttribute",
"variableDeclarationType" : "ReplaceableAttribute",
"documentation" : "",
"variableSetterType" : "ReplaceableAttribute",
"simpleType" : "ReplaceableAttribute"
},
"getterModel" : {
"returnType" : "ReplaceableAttribute",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attribute",
"marshallLocationName" : "Attribute",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "ReplaceableAttribute"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The list of attributes for a replaceable item.\n@param attributes The list of attributes for a replaceable item.*/",
"getterDocumentation" : "/**The list of attributes for a replaceable item.\n@return The list of attributes for a replaceable item.*/",
"fluentSetterDocumentation" : "/**The list of attributes for a replaceable item.\n@param attributes The list of attributes for a replaceable item.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The list of attributes for a replaceable item.\nNOTE: This method appends the values to the existing list (if any). Use {@link #setAttributes(java.util.Collection)} or {@link #withAttributes(java.util.Collection)} if you want to override the existing values.
\n@param attributes The list of attributes for a replaceable item.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "replaceableItem",
"variableType" : "ReplaceableItem",
"variableDeclarationType" : "ReplaceableItem",
"documentation" : null,
"variableSetterType" : "ReplaceableItem",
"simpleType" : "ReplaceableItem"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Attributes" : {
"documentation" : "The list of attributes for a replaceable item.",
"name" : "Attributes",
"c2jName" : "Attributes",
"c2jShape" : "ReplaceableAttributeList",
"variable" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "The list of attributes for a replaceable item.",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attributes",
"marshallLocationName" : "Attributes",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "ReplaceableAttribute",
"memberLocationName" : "Attribute",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "ReplaceableAttribute",
"variable" : {
"variableName" : "member",
"variableType" : "ReplaceableAttribute",
"variableDeclarationType" : "ReplaceableAttribute",
"documentation" : "",
"variableSetterType" : "ReplaceableAttribute",
"simpleType" : "ReplaceableAttribute"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "ReplaceableAttribute",
"variableDeclarationType" : "ReplaceableAttribute",
"documentation" : "",
"variableSetterType" : "ReplaceableAttribute",
"simpleType" : "ReplaceableAttribute"
},
"getterModel" : {
"returnType" : "ReplaceableAttribute",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attribute",
"marshallLocationName" : "Attribute",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "ReplaceableAttribute"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The list of attributes for a replaceable item.\n@param attributes The list of attributes for a replaceable item.*/",
"getterDocumentation" : "/**The list of attributes for a replaceable item.\n@return The list of attributes for a replaceable item.*/",
"fluentSetterDocumentation" : "/**The list of attributes for a replaceable item.\n@param attributes The list of attributes for a replaceable item.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The list of attributes for a replaceable item.\nNOTE: This method appends the values to the existing list (if any). Use {@link #setAttributes(java.util.Collection)} or {@link #withAttributes(java.util.Collection)} if you want to override the existing values.
\n@param attributes The list of attributes for a replaceable item.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Name" : {
"documentation" : "The name of the replaceable item.",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "String",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the replaceable item.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ItemName",
"marshallLocationName" : "ItemName",
"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 replaceable item.\n@param name The name of the replaceable item.*/",
"getterDocumentation" : "/**The name of the replaceable item.\n@return The name of the replaceable item.*/",
"fluentSetterDocumentation" : "/**The name of the replaceable item.\n@param name The name of the replaceable item.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the replaceable item.\n@param name The name of the replaceable item.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"GetAttributesResult" : {
"c2jName" : "GetAttributesResult",
"documentation" : "",
"shapeName" : "GetAttributesResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The list of attributes returned by the operation.",
"name" : "Attributes",
"c2jName" : "Attributes",
"c2jShape" : "AttributeList",
"variable" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "The list of attributes returned by the operation.",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attributes",
"marshallLocationName" : "Attributes",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Attribute",
"memberLocationName" : "Attribute",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Attribute",
"variable" : {
"variableName" : "member",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : "",
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : "",
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"getterModel" : {
"returnType" : "Attribute",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attribute",
"marshallLocationName" : "Attribute",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "Attribute"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The list of attributes returned by the operation.\n@param attributes The list of attributes returned by the operation.*/",
"getterDocumentation" : "/**The list of attributes returned by the operation.\n@return The list of attributes returned by the operation.*/",
"fluentSetterDocumentation" : "/**The list of attributes returned by the operation.\n@param attributes The list of attributes returned by the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The list of attributes returned by the operation.\nNOTE: This method appends the values to the existing list (if any). Use {@link #setAttributes(java.util.Collection)} or {@link #withAttributes(java.util.Collection)} if you want to override the existing values.
\n@param attributes The list of attributes returned by the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getAttributesResult",
"variableType" : "GetAttributesResult",
"variableDeclarationType" : "GetAttributesResult",
"documentation" : null,
"variableSetterType" : "GetAttributesResult",
"simpleType" : "GetAttributesResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : "GetAttributesResult",
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Attributes" : {
"documentation" : "The list of attributes returned by the operation.",
"name" : "Attributes",
"c2jName" : "Attributes",
"c2jShape" : "AttributeList",
"variable" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "The list of attributes returned by the operation.",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attributes",
"marshallLocationName" : "Attributes",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Attribute",
"memberLocationName" : "Attribute",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Attribute",
"variable" : {
"variableName" : "member",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : "",
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Attribute",
"variableDeclarationType" : "Attribute",
"documentation" : "",
"variableSetterType" : "Attribute",
"simpleType" : "Attribute"
},
"getterModel" : {
"returnType" : "Attribute",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attribute",
"marshallLocationName" : "Attribute",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "Attribute"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The list of attributes returned by the operation.\n@param attributes The list of attributes returned by the operation.*/",
"getterDocumentation" : "/**The list of attributes returned by the operation.\n@return The list of attributes returned by the operation.*/",
"fluentSetterDocumentation" : "/**The list of attributes returned by the operation.\n@param attributes The list of attributes returned by the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The list of attributes returned by the operation.\nNOTE: This method appends the values to the existing list (if any). Use {@link #setAttributes(java.util.Collection)} or {@link #withAttributes(java.util.Collection)} if you want to override the existing values.
\n@param attributes The list of attributes returned by the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DomainMetadataRequest" : {
"c2jName" : "DomainMetadataRequest",
"documentation" : "",
"shapeName" : "DomainMetadataRequest",
"deprecated" : false,
"required" : [ "DomainName" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the domain for which to display the metadata of.",
"name" : "DomainName",
"c2jName" : "DomainName",
"c2jShape" : "String",
"variable" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the domain for which to display the metadata of.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainName",
"marshallLocationName" : "DomainName",
"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 domain for which to display the metadata of.\n@param domainName The name of the domain for which to display the metadata of.*/",
"getterDocumentation" : "/**The name of the domain for which to display the metadata of.\n@return The name of the domain for which to display the metadata of.*/",
"fluentSetterDocumentation" : "/**The name of the domain for which to display the metadata of.\n@param domainName The name of the domain for which to display the metadata of.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the domain for which to display the metadata of.\n@param domainName The name of the domain for which to display the metadata of.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "domainMetadataRequest",
"variableType" : "DomainMetadataRequest",
"variableDeclarationType" : "DomainMetadataRequest",
"documentation" : null,
"variableSetterType" : "DomainMetadataRequest",
"simpleType" : "DomainMetadataRequest"
},
"marshaller" : {
"action" : "DomainMetadata",
"verb" : "POST",
"target" : null,
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"DomainName" : {
"documentation" : "The name of the domain for which to display the metadata of.",
"name" : "DomainName",
"c2jName" : "DomainName",
"c2jShape" : "String",
"variable" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the domain for which to display the metadata of.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainName",
"marshallLocationName" : "DomainName",
"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 domain for which to display the metadata of.\n@param domainName The name of the domain for which to display the metadata of.*/",
"getterDocumentation" : "/**The name of the domain for which to display the metadata of.\n@return The name of the domain for which to display the metadata of.*/",
"fluentSetterDocumentation" : "/**The name of the domain for which to display the metadata of.\n@param domainName The name of the domain for which to display the metadata of.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the domain for which to display the metadata of.\n@param domainName The name of the domain for which to display the metadata of.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"NumberDomainAttributesExceededException" : {
"c2jName" : "NumberDomainAttributesExceeded",
"documentation" : "Too many attributes in this domain.
",
"shapeName" : "NumberDomainAttributesExceededException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "numberDomainAttributesExceededException",
"variableType" : "NumberDomainAttributesExceededException",
"variableDeclarationType" : "NumberDomainAttributesExceededException",
"documentation" : null,
"variableSetterType" : "NumberDomainAttributesExceededException",
"simpleType" : "NumberDomainAttributesExceededException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "NumberDomainAttributesExceeded",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"SelectResult" : {
"c2jName" : "SelectResult",
"documentation" : "",
"shapeName" : "SelectResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A list of items that match the select expression.",
"name" : "Items",
"c2jName" : "Items",
"c2jShape" : "ItemList",
"variable" : {
"variableName" : "items",
"variableType" : "java.util.List- ",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList
- ",
"documentation" : "A list of items that match the select expression.",
"variableSetterType" : "java.util.Collection
- ",
"simpleType" : "List
- "
},
"setterModel" : {
"variableName" : "items",
"variableType" : "java.util.List
- ",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList
- ",
"documentation" : "",
"variableSetterType" : "java.util.Collection
- ",
"simpleType" : "List
- "
},
"getterModel" : {
"returnType" : "java.util.List
- ",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Items",
"marshallLocationName" : "Items",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Item",
"memberLocationName" : "Item",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Item",
"variable" : {
"variableName" : "member",
"variableType" : "Item",
"variableDeclarationType" : "Item",
"documentation" : "",
"variableSetterType" : "Item",
"simpleType" : "Item"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Item",
"variableDeclarationType" : "Item",
"documentation" : "",
"variableSetterType" : "Item",
"simpleType" : "Item"
},
"getterModel" : {
"returnType" : "Item",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Item",
"marshallLocationName" : "Item",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List
- ",
"templateImplType" : "com.amazonaws.internal.SdkInternalList
- ",
"simple" : false,
"map" : false,
"simpleType" : "Item"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of items that match the select expression.\n@param items A list of items that match the select expression.*/",
"getterDocumentation" : "/**A list of items that match the select expression.\n@return A list of items that match the select expression.*/",
"fluentSetterDocumentation" : "/**A list of items that match the select expression.\n@param items A list of items that match the select expression.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of items that match the select expression.\n
NOTE: This method appends the values to the existing list (if any). Use {@link #setItems(java.util.Collection)} or {@link #withItems(java.util.Collection)} if you want to override the existing values.
\n@param items A list of items that match the select expression.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.",
"name" : "NextToken",
"c2jName" : "NextToken",
"c2jShape" : "String",
"variable" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextToken",
"marshallLocationName" : "NextToken",
"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" : "/**An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.\n@param nextToken An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.*/",
"getterDocumentation" : "/**An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.\n@return An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.*/",
"fluentSetterDocumentation" : "/**An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.\n@param nextToken An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.\n@param nextToken An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "selectResult",
"variableType" : "SelectResult",
"variableDeclarationType" : "SelectResult",
"documentation" : null,
"variableSetterType" : "SelectResult",
"simpleType" : "SelectResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : "SelectResult",
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"NextToken" : {
"documentation" : "An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.",
"name" : "NextToken",
"c2jName" : "NextToken",
"c2jShape" : "String",
"variable" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextToken",
"marshallLocationName" : "NextToken",
"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" : "/**An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.\n@param nextToken An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.*/",
"getterDocumentation" : "/**An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.\n@return An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.*/",
"fluentSetterDocumentation" : "/**An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.\n@param nextToken An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.\n@param nextToken An opaque token indicating that more items than MaxNumberOfItems
were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Items" : {
"documentation" : "A list of items that match the select expression.",
"name" : "Items",
"c2jName" : "Items",
"c2jShape" : "ItemList",
"variable" : {
"variableName" : "items",
"variableType" : "java.util.List- ",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList
- ",
"documentation" : "A list of items that match the select expression.",
"variableSetterType" : "java.util.Collection
- ",
"simpleType" : "List
- "
},
"setterModel" : {
"variableName" : "items",
"variableType" : "java.util.List
- ",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList
- ",
"documentation" : "",
"variableSetterType" : "java.util.Collection
- ",
"simpleType" : "List
- "
},
"getterModel" : {
"returnType" : "java.util.List
- ",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Items",
"marshallLocationName" : "Items",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Item",
"memberLocationName" : "Item",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Item",
"variable" : {
"variableName" : "member",
"variableType" : "Item",
"variableDeclarationType" : "Item",
"documentation" : "",
"variableSetterType" : "Item",
"simpleType" : "Item"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Item",
"variableDeclarationType" : "Item",
"documentation" : "",
"variableSetterType" : "Item",
"simpleType" : "Item"
},
"getterModel" : {
"returnType" : "Item",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Item",
"marshallLocationName" : "Item",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List
- ",
"templateImplType" : "com.amazonaws.internal.SdkInternalList
- ",
"simple" : false,
"map" : false,
"simpleType" : "Item"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of items that match the select expression.\n@param items A list of items that match the select expression.*/",
"getterDocumentation" : "/**A list of items that match the select expression.\n@return A list of items that match the select expression.*/",
"fluentSetterDocumentation" : "/**A list of items that match the select expression.\n@param items A list of items that match the select expression.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of items that match the select expression.\n
NOTE: This method appends the values to the existing list (if any). Use {@link #setItems(java.util.Collection)} or {@link #withItems(java.util.Collection)} if you want to override the existing values.
\n@param items A list of items that match the select expression.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvalidNumberValueTestsException" : {
"c2jName" : "InvalidNumberValueTests",
"documentation" : "Too many predicates exist in the query expression.
",
"shapeName" : "InvalidNumberValueTestsException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "invalidNumberValueTestsException",
"variableType" : "InvalidNumberValueTestsException",
"variableDeclarationType" : "InvalidNumberValueTestsException",
"documentation" : null,
"variableSetterType" : "InvalidNumberValueTestsException",
"simpleType" : "InvalidNumberValueTestsException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidNumberValueTests",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DeleteDomainResult" : {
"c2jName" : "DeleteDomainResult",
"documentation" : null,
"shapeName" : "DeleteDomainResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "deleteDomainResult",
"variableType" : "DeleteDomainResult",
"variableDeclarationType" : "DeleteDomainResult",
"documentation" : null,
"variableSetterType" : "DeleteDomainResult",
"simpleType" : "DeleteDomainResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"DeleteDomainRequest" : {
"c2jName" : "DeleteDomainRequest",
"documentation" : "",
"shapeName" : "DeleteDomainRequest",
"deprecated" : false,
"required" : [ "DomainName" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the domain to delete.",
"name" : "DomainName",
"c2jName" : "DomainName",
"c2jShape" : "String",
"variable" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the domain to delete.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainName",
"marshallLocationName" : "DomainName",
"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 domain to delete.\n@param domainName The name of the domain to delete.*/",
"getterDocumentation" : "/**The name of the domain to delete.\n@return The name of the domain to delete.*/",
"fluentSetterDocumentation" : "/**The name of the domain to delete.\n@param domainName The name of the domain to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the domain to delete.\n@param domainName The name of the domain to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "deleteDomainRequest",
"variableType" : "DeleteDomainRequest",
"variableDeclarationType" : "DeleteDomainRequest",
"documentation" : null,
"variableSetterType" : "DeleteDomainRequest",
"simpleType" : "DeleteDomainRequest"
},
"marshaller" : {
"action" : "DeleteDomain",
"verb" : "POST",
"target" : null,
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"DomainName" : {
"documentation" : "The name of the domain to delete.",
"name" : "DomainName",
"c2jName" : "DomainName",
"c2jShape" : "String",
"variable" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the domain to delete.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainName",
"marshallLocationName" : "DomainName",
"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 domain to delete.\n@param domainName The name of the domain to delete.*/",
"getterDocumentation" : "/**The name of the domain to delete.\n@return The name of the domain to delete.*/",
"fluentSetterDocumentation" : "/**The name of the domain to delete.\n@param domainName The name of the domain to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the domain to delete.\n@param domainName The name of the domain to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvalidNextTokenException" : {
"c2jName" : "InvalidNextToken",
"documentation" : "The specified NextToken is not valid.
",
"shapeName" : "InvalidNextTokenException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "invalidNextTokenException",
"variableType" : "InvalidNextTokenException",
"variableDeclarationType" : "InvalidNextTokenException",
"documentation" : null,
"variableSetterType" : "InvalidNextTokenException",
"simpleType" : "InvalidNextTokenException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidNextToken",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"MissingParameterException" : {
"c2jName" : "MissingParameter",
"documentation" : "The request must contain the specified missing parameter.
",
"shapeName" : "MissingParameterException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "missingParameterException",
"variableType" : "MissingParameterException",
"variableDeclarationType" : "MissingParameterException",
"documentation" : null,
"variableSetterType" : "MissingParameterException",
"simpleType" : "MissingParameterException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "MissingParameter",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BoxUsage" : {
"documentation" : "",
"name" : "BoxUsage",
"c2jName" : "BoxUsage",
"c2jShape" : "Float",
"variable" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"setterModel" : {
"variableName" : "boxUsage",
"variableType" : "Float",
"variableDeclarationType" : "Float",
"documentation" : "",
"variableSetterType" : "Float",
"simpleType" : "Float"
},
"getterModel" : {
"returnType" : "Float",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BoxUsage",
"marshallLocationName" : "BoxUsage",
"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 boxUsage */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param boxUsage \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"PutAttributesRequest" : {
"c2jName" : "PutAttributesRequest",
"documentation" : "",
"shapeName" : "PutAttributesRequest",
"deprecated" : false,
"required" : [ "DomainName", "ItemName", "Attributes" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the domain in which to perform the operation.",
"name" : "DomainName",
"c2jName" : "DomainName",
"c2jShape" : "String",
"variable" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the domain in which to perform the operation.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainName",
"marshallLocationName" : "DomainName",
"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 domain in which to perform the operation.\n@param domainName The name of the domain in which to perform the operation.*/",
"getterDocumentation" : "/**The name of the domain in which to perform the operation.\n@return The name of the domain in which to perform the operation.*/",
"fluentSetterDocumentation" : "/**The name of the domain in which to perform the operation.\n@param domainName The name of the domain in which to perform the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the domain in which to perform the operation.\n@param domainName The name of the domain in which to perform the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The name of the item.",
"name" : "ItemName",
"c2jName" : "ItemName",
"c2jShape" : "String",
"variable" : {
"variableName" : "itemName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the item.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "itemName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ItemName",
"marshallLocationName" : "ItemName",
"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 item.\n@param itemName The name of the item.*/",
"getterDocumentation" : "/**The name of the item.\n@return The name of the item.*/",
"fluentSetterDocumentation" : "/**The name of the item.\n@param itemName The name of the item.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the item.\n@param itemName The name of the item.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The list of attributes.",
"name" : "Attributes",
"c2jName" : "Attributes",
"c2jShape" : "ReplaceableAttributeList",
"variable" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "The list of attributes.",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attributes",
"marshallLocationName" : "Attributes",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "ReplaceableAttribute",
"memberLocationName" : "Attribute",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "ReplaceableAttribute",
"variable" : {
"variableName" : "member",
"variableType" : "ReplaceableAttribute",
"variableDeclarationType" : "ReplaceableAttribute",
"documentation" : "",
"variableSetterType" : "ReplaceableAttribute",
"simpleType" : "ReplaceableAttribute"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "ReplaceableAttribute",
"variableDeclarationType" : "ReplaceableAttribute",
"documentation" : "",
"variableSetterType" : "ReplaceableAttribute",
"simpleType" : "ReplaceableAttribute"
},
"getterModel" : {
"returnType" : "ReplaceableAttribute",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attribute",
"marshallLocationName" : "Attribute",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "ReplaceableAttribute"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The list of attributes.\n@param attributes The list of attributes.*/",
"getterDocumentation" : "/**The list of attributes.\n@return The list of attributes.*/",
"fluentSetterDocumentation" : "/**The list of attributes.\n@param attributes The list of attributes.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The list of attributes.\nNOTE: This method appends the values to the existing list (if any). Use {@link #setAttributes(java.util.Collection)} or {@link #withAttributes(java.util.Collection)} if you want to override the existing values.
\n@param attributes The list of attributes.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.",
"name" : "Expected",
"c2jName" : "Expected",
"c2jShape" : "UpdateCondition",
"variable" : {
"variableName" : "expected",
"variableType" : "UpdateCondition",
"variableDeclarationType" : "UpdateCondition",
"documentation" : "The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.",
"variableSetterType" : "UpdateCondition",
"simpleType" : "UpdateCondition"
},
"setterModel" : {
"variableName" : "expected",
"variableType" : "UpdateCondition",
"variableDeclarationType" : "UpdateCondition",
"documentation" : "",
"variableSetterType" : "UpdateCondition",
"simpleType" : "UpdateCondition"
},
"getterModel" : {
"returnType" : "UpdateCondition",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Expected",
"marshallLocationName" : "Expected",
"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 update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.\n@param expected The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.*/",
"getterDocumentation" : "/**The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.\n@return The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.*/",
"fluentSetterDocumentation" : "/**The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.\n@param expected The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.\n@param expected The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "putAttributesRequest",
"variableType" : "PutAttributesRequest",
"variableDeclarationType" : "PutAttributesRequest",
"documentation" : null,
"variableSetterType" : "PutAttributesRequest",
"simpleType" : "PutAttributesRequest"
},
"marshaller" : {
"action" : "PutAttributes",
"verb" : "POST",
"target" : null,
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Expected" : {
"documentation" : "The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.",
"name" : "Expected",
"c2jName" : "Expected",
"c2jShape" : "UpdateCondition",
"variable" : {
"variableName" : "expected",
"variableType" : "UpdateCondition",
"variableDeclarationType" : "UpdateCondition",
"documentation" : "The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.",
"variableSetterType" : "UpdateCondition",
"simpleType" : "UpdateCondition"
},
"setterModel" : {
"variableName" : "expected",
"variableType" : "UpdateCondition",
"variableDeclarationType" : "UpdateCondition",
"documentation" : "",
"variableSetterType" : "UpdateCondition",
"simpleType" : "UpdateCondition"
},
"getterModel" : {
"returnType" : "UpdateCondition",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Expected",
"marshallLocationName" : "Expected",
"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 update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.\n@param expected The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.*/",
"getterDocumentation" : "/**The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.\n@return The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.*/",
"fluentSetterDocumentation" : "/**The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.\n@param expected The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.\n@param expected The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"DomainName" : {
"documentation" : "The name of the domain in which to perform the operation.",
"name" : "DomainName",
"c2jName" : "DomainName",
"c2jShape" : "String",
"variable" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the domain in which to perform the operation.",
"variableSetterType" : "String",
"simpleType" : "String"
},
"setterModel" : {
"variableName" : "domainName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"variableSetterType" : "String",
"simpleType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "DomainName",
"marshallLocationName" : "DomainName",
"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 domain in which to perform the operation.\n@param domainName The name of the domain in which to perform the operation.*/",
"getterDocumentation" : "/**The name of the domain in which to perform the operation.\n@return The name of the domain in which to perform the operation.*/",
"fluentSetterDocumentation" : "/**The name of the domain in which to perform the operation.\n@param domainName The name of the domain in which to perform the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the domain in which to perform the operation.\n@param domainName The name of the domain in which to perform the operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Attributes" : {
"documentation" : "The list of attributes.",
"name" : "Attributes",
"c2jName" : "Attributes",
"c2jShape" : "ReplaceableAttributeList",
"variable" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "The list of attributes.",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"setterModel" : {
"variableName" : "attributes",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"variableSetterType" : "java.util.Collection",
"simpleType" : "List"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attributes",
"marshallLocationName" : "Attributes",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : true,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "ReplaceableAttribute",
"memberLocationName" : "Attribute",
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "ReplaceableAttribute",
"variable" : {
"variableName" : "member",
"variableType" : "ReplaceableAttribute",
"variableDeclarationType" : "ReplaceableAttribute",
"documentation" : "",
"variableSetterType" : "ReplaceableAttribute",
"simpleType" : "ReplaceableAttribute"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "ReplaceableAttribute",
"variableDeclarationType" : "ReplaceableAttribute",
"documentation" : "",
"variableSetterType" : "ReplaceableAttribute",
"simpleType" : "ReplaceableAttribute"
},
"getterModel" : {
"returnType" : "ReplaceableAttribute",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Attribute",
"marshallLocationName" : "Attribute",
"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,
"marshallNonAutoConstructedEmptyLists" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "ReplaceableAttribute"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The list of attributes.\n@param attributes The list of attributes.*/",
"getterDocumentation" : "/**The list of attributes.\n@return The list of attributes.*/",
"fluentSetterDocumentation" : "/**The list of attributes.\n@param attributes The list of attributes.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The list of attributes.\n