All Downloads are FREE. Search and download functionalities are using the official Maven repository.

models.rds-data-2018-08-01-intermediate.json Maven / Gradle / Ivy

{
  "customizationConfig" : {
    "attachPayloadTraitToMember" : { },
    "blacklistedSimpleMethods" : [ ],
    "calculateCrc32FromCompressedData" : false,
    "convenienceTypeOverloads" : [ ],
    "customErrorCodeFieldName" : null,
    "customProtocolFactoryFqcn" : null,
    "customResponseMetadata" : null,
    "customRetryPolicy" : null,
    "customServiceMetadata" : null,
    "defaultSimpleMethodTestRegion" : null,
    "deprecatedOperations" : [ ],
    "deprecatedShapes" : [ ],
    "excludeClientCreateMethod" : false,
    "modelMarshallerDefaultValueSupplier" : { },
    "operationModifiers" : null,
    "paginationCustomization" : null,
    "renameShapes" : null,
    "sdkModeledExceptionBaseClassName" : null,
    "sdkRequestBaseClassName" : null,
    "sdkResponseBaseClassName" : null,
    "serviceSpecificClientConfigClass" : null,
    "serviceSpecificHttpConfig" : null,
    "shapeModifiers" : null,
    "shapeSubstitutions" : null,
    "shareModelConfig" : null,
    "skipSyncClientGeneration" : false,
    "useAutoConstructList" : true,
    "useAutoConstructMap" : true,
    "utilitiesMethod" : null,
    "verifiedSimpleMethods" : [ ]
  },
  "metadata" : {
    "apiVersion" : "2018-08-01",
    "asyncBuilder" : "DefaultRdsDataAsyncClientBuilder",
    "asyncBuilderInterface" : "RdsDataAsyncClientBuilder",
    "asyncClient" : "DefaultRdsDataAsyncClient",
    "asyncInterface" : "RdsDataAsyncClient",
    "authPolicyPackageName" : null,
    "authType" : "V4",
    "baseBuilder" : "DefaultRdsDataBaseClientBuilder",
    "baseBuilderInterface" : "RdsDataBaseClientBuilder",
    "baseExceptionName" : "RdsDataException",
    "baseRequestName" : "RdsDataRequest",
    "baseResponseName" : "RdsDataResponse",
    "cborProtocol" : false,
    "clientPackageName" : "rdsdata",
    "contentType" : null,
    "defaultEndpoint" : null,
    "defaultEndpointWithoutHttpProtocol" : null,
    "defaultRegion" : null,
    "descriptiveServiceName" : "AWS RDS DataService",
    "documentation" : "

Amazon RDS Data Service

Amazon RDS provides an HTTP endpoint to run SQL statements on an Amazon Aurora Serverless DB cluster. To run these statements, you work with the Data Service API.

For more information about the Data Service API, see Using the Data API for Aurora Serverless in the Amazon Aurora User Guide.

If you have questions or comments related to the Data API, send email to [email protected].

", "endpointPrefix" : "rds-data", "fullAuthPolicyPackageName" : "software.amazon.awssdk.services", "fullClientPackageName" : "software.amazon.awssdk.services.rdsdata", "fullModelPackageName" : "software.amazon.awssdk.services.rdsdata.model", "fullPaginatorsPackageName" : "software.amazon.awssdk.services.rdsdata.paginators", "fullRequestTransformPackageName" : "software.amazon.awssdk.services.rdsdata.transform", "fullTransformPackageName" : "software.amazon.awssdk.services.rdsdata.transform", "ionProtocol" : false, "jsonProtocol" : true, "jsonVersion" : "1.1", "modelPackageName" : "rdsdata.model", "paginatorsPackageName" : "rdsdata.paginators", "protocol" : "rest-json", "requestTransformPackageName" : "rdsdata.transform", "requiresApiKey" : false, "requiresIamSigners" : false, "rootPackageName" : "software.amazon.awssdk.services", "serviceId" : "RDS Data", "serviceName" : "RdsData", "signingName" : "rds-data", "syncBuilder" : "DefaultRdsDataClientBuilder", "syncBuilderInterface" : "RdsDataClientBuilder", "syncClient" : "DefaultRdsDataClient", "syncInterface" : "RdsDataClient", "transformPackageName" : "rdsdata.transform", "uid" : "rds-data-2018-08-01", "xmlProtocol" : false }, "operations" : { "BatchExecuteStatement" : { "authType" : "IAM", "authenticated" : true, "deprecated" : false, "documentation" : "

Runs a batch SQL statement over an array of data.

You can run bulk update and insert operations for multiple records using a DML statement with different parameter sets. Bulk operations can provide a significant performance improvement over individual insert and update operations.

If a call isn't part of a transaction because it doesn't include the transactionID parameter, changes that result from the call are committed automatically.

", "endpointDiscovery" : null, "endpointOperation" : false, "endpointTrait" : null, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

There is an error in the call or in a SQL statement.

", "httpStatusCode" : 400 }, { "exceptionName" : "StatementTimeoutException", "documentation" : "

The execution of the SQL statement timed out.

", "httpStatusCode" : 400 }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

An internal error occurred.

", "httpStatusCode" : 500 }, { "exceptionName" : "ForbiddenException", "documentation" : "

There are insufficient privileges to make the call.

", "httpStatusCode" : 403 }, { "exceptionName" : "ServiceUnavailableErrorException", "documentation" : "

The service specified by the resourceArn parameter is not available.

", "httpStatusCode" : 503 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "BatchExecuteStatementRequest", "variableName" : "batchExecuteStatementRequest", "variableType" : "BatchExecuteStatementRequest", "documentation" : "

The request parameters represent the input of a SQL statement over an array of data.

", "simpleType" : "BatchExecuteStatementRequest", "variableSetterType" : "BatchExecuteStatementRequest" }, "methodName" : "batchExecuteStatement", "operationName" : "BatchExecuteStatement", "paginated" : false, "returnType" : { "returnType" : "BatchExecuteStatementResponse", "documentation" : "

The response elements represent the output of a SQL statement over an array of data.

" }, "syncReturnType" : "BatchExecuteStatementResponse" }, "BeginTransaction" : { "authType" : "IAM", "authenticated" : true, "deprecated" : false, "documentation" : "

Starts a SQL transaction.

 <important> <p>A transaction can run for a maximum of 24 hours. A transaction is terminated and rolled back automatically after 24 hours.</p> <p>A transaction times out if no calls use its transaction ID in three minutes. If a transaction times out before it's committed, it's rolled back automatically.</p> <p>DDL statements inside a transaction cause an implicit commit. We recommend that you run each DDL statement in a separate <code>ExecuteStatement</code> call with <code>continueAfterTimeout</code> enabled.</p> </important> 
", "endpointDiscovery" : null, "endpointOperation" : false, "endpointTrait" : null, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

There is an error in the call or in a SQL statement.

", "httpStatusCode" : 400 }, { "exceptionName" : "StatementTimeoutException", "documentation" : "

The execution of the SQL statement timed out.

", "httpStatusCode" : 400 }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

An internal error occurred.

", "httpStatusCode" : 500 }, { "exceptionName" : "ForbiddenException", "documentation" : "

There are insufficient privileges to make the call.

", "httpStatusCode" : 403 }, { "exceptionName" : "ServiceUnavailableErrorException", "documentation" : "

The service specified by the resourceArn parameter is not available.

", "httpStatusCode" : 503 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "BeginTransactionRequest", "variableName" : "beginTransactionRequest", "variableType" : "BeginTransactionRequest", "documentation" : "

The request parameters represent the input of a request to start a SQL transaction.

", "simpleType" : "BeginTransactionRequest", "variableSetterType" : "BeginTransactionRequest" }, "methodName" : "beginTransaction", "operationName" : "BeginTransaction", "paginated" : false, "returnType" : { "returnType" : "BeginTransactionResponse", "documentation" : "

The response elements represent the output of a request to start a SQL transaction.

" }, "syncReturnType" : "BeginTransactionResponse" }, "CommitTransaction" : { "authType" : "IAM", "authenticated" : true, "deprecated" : false, "documentation" : "

Ends a SQL transaction started with the BeginTransaction operation and commits the changes.

", "endpointDiscovery" : null, "endpointOperation" : false, "endpointTrait" : null, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

There is an error in the call or in a SQL statement.

", "httpStatusCode" : 400 }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

An internal error occurred.

", "httpStatusCode" : 500 }, { "exceptionName" : "ForbiddenException", "documentation" : "

There are insufficient privileges to make the call.

", "httpStatusCode" : 403 }, { "exceptionName" : "ServiceUnavailableErrorException", "documentation" : "

The service specified by the resourceArn parameter is not available.

", "httpStatusCode" : 503 }, { "exceptionName" : "NotFoundException", "documentation" : "

The resourceArn, secretArn, or transactionId value can't be found.

", "httpStatusCode" : 404 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "CommitTransactionRequest", "variableName" : "commitTransactionRequest", "variableType" : "CommitTransactionRequest", "documentation" : "

The request parameters represent the input of a commit transaction request.

", "simpleType" : "CommitTransactionRequest", "variableSetterType" : "CommitTransactionRequest" }, "methodName" : "commitTransaction", "operationName" : "CommitTransaction", "paginated" : false, "returnType" : { "returnType" : "CommitTransactionResponse", "documentation" : "

The response elements represent the output of a commit transaction request.

" }, "syncReturnType" : "CommitTransactionResponse" }, "ExecuteSql" : { "authType" : "IAM", "authenticated" : true, "deprecated" : true, "documentation" : "

Runs one or more SQL statements.

This operation is deprecated. Use the BatchExecuteStatement or ExecuteStatement operation.

", "endpointDiscovery" : null, "endpointOperation" : false, "endpointTrait" : null, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

There is an error in the call or in a SQL statement.

", "httpStatusCode" : 400 }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

An internal error occurred.

", "httpStatusCode" : 500 }, { "exceptionName" : "ForbiddenException", "documentation" : "

There are insufficient privileges to make the call.

", "httpStatusCode" : 403 }, { "exceptionName" : "ServiceUnavailableErrorException", "documentation" : "

The service specified by the resourceArn parameter is not available.

", "httpStatusCode" : 503 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "ExecuteSqlRequest", "variableName" : "executeSqlRequest", "variableType" : "ExecuteSqlRequest", "documentation" : "

The request parameters represent the input of a request to run one or more SQL statements.

", "simpleType" : "ExecuteSqlRequest", "variableSetterType" : "ExecuteSqlRequest" }, "methodName" : "executeSql", "operationName" : "ExecuteSql", "paginated" : false, "returnType" : { "returnType" : "ExecuteSqlResponse", "documentation" : "

The response elements represent the output of a request to run one or more SQL statements.

" }, "syncReturnType" : "ExecuteSqlResponse" }, "ExecuteStatement" : { "authType" : "IAM", "authenticated" : true, "deprecated" : false, "documentation" : "

Runs a SQL statement against a database.

If a call isn't part of a transaction because it doesn't include the transactionID parameter, changes that result from the call are committed automatically.

The response size limit is 1 MB or 1,000 records. If the call returns more than 1 MB of response data or over 1,000 records, the call is terminated.

", "endpointDiscovery" : null, "endpointOperation" : false, "endpointTrait" : null, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

There is an error in the call or in a SQL statement.

", "httpStatusCode" : 400 }, { "exceptionName" : "StatementTimeoutException", "documentation" : "

The execution of the SQL statement timed out.

", "httpStatusCode" : 400 }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

An internal error occurred.

", "httpStatusCode" : 500 }, { "exceptionName" : "ForbiddenException", "documentation" : "

There are insufficient privileges to make the call.

", "httpStatusCode" : 403 }, { "exceptionName" : "ServiceUnavailableErrorException", "documentation" : "

The service specified by the resourceArn parameter is not available.

", "httpStatusCode" : 503 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "ExecuteStatementRequest", "variableName" : "executeStatementRequest", "variableType" : "ExecuteStatementRequest", "documentation" : "

The request parameters represent the input of a request to run a SQL statement against a database.

", "simpleType" : "ExecuteStatementRequest", "variableSetterType" : "ExecuteStatementRequest" }, "methodName" : "executeStatement", "operationName" : "ExecuteStatement", "paginated" : false, "returnType" : { "returnType" : "ExecuteStatementResponse", "documentation" : "

The response elements represent the output of a request to run a SQL statement against a database.

" }, "syncReturnType" : "ExecuteStatementResponse" }, "RollbackTransaction" : { "authType" : "IAM", "authenticated" : true, "deprecated" : false, "documentation" : "

Performs a rollback of a transaction. Rolling back a transaction cancels its changes.

", "endpointDiscovery" : null, "endpointOperation" : false, "endpointTrait" : null, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

There is an error in the call or in a SQL statement.

", "httpStatusCode" : 400 }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

An internal error occurred.

", "httpStatusCode" : 500 }, { "exceptionName" : "ForbiddenException", "documentation" : "

There are insufficient privileges to make the call.

", "httpStatusCode" : 403 }, { "exceptionName" : "ServiceUnavailableErrorException", "documentation" : "

The service specified by the resourceArn parameter is not available.

", "httpStatusCode" : 503 }, { "exceptionName" : "NotFoundException", "documentation" : "

The resourceArn, secretArn, or transactionId value can't be found.

", "httpStatusCode" : 404 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "RollbackTransactionRequest", "variableName" : "rollbackTransactionRequest", "variableType" : "RollbackTransactionRequest", "documentation" : "

The request parameters represent the input of a request to perform a rollback of a transaction.

", "simpleType" : "RollbackTransactionRequest", "variableSetterType" : "RollbackTransactionRequest" }, "methodName" : "rollbackTransaction", "operationName" : "RollbackTransaction", "paginated" : false, "returnType" : { "returnType" : "RollbackTransactionResponse", "documentation" : "

The response elements represent the output of a request to perform a rollback of a transaction.

" }, "syncReturnType" : "RollbackTransactionResponse" } }, "shapes" : { "ArrayValue" : { "c2jName" : "ArrayValue", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

Contains an array.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getArrayValues", "beanStyleSetterMethodName" : "setArrayValues", "c2jName" : "arrayValues", "c2jShape" : "ArrayOfArray", "defaultConsumerFluentSetterDocumentation" : "

An array of arrays.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #arrayValues(List)}.\n@param arrayValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #arrayValues(List)", "deprecated" : false, "documentation" : "

An array of arrays.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "arrayValues", "fluentSetterDocumentation" : "

An array of arrays.

\n@param arrayValues An array of arrays.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "arrayValues", "getterDocumentation" : "

An array of arrays.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of arrays.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "arrayValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "arrayValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "ArrayValue", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link ArrayValue.Builder} avoiding the need to create one manually via {@link ArrayValue#builder()}.\n\nWhen the {@link Consumer} completes, {@link ArrayValue.Builder#build()} is called immediately and its result is passed to {@link #member(ArrayValue)}.\n@param member a consumer that will call methods on {@link ArrayValue.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(ArrayValue)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "ArrayValue", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ArrayValue", "variableName" : "member", "variableType" : "ArrayValue", "documentation" : null, "simpleType" : "ArrayValue", "variableSetterType" : "ArrayValue" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ArrayValue", "variableName" : "member", "variableType" : "ArrayValue", "documentation" : "", "simpleType" : "ArrayValue", "variableSetterType" : "ArrayValue" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ArrayValue", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "ArrayValue", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "ArrayValues", "sensitive" : false, "setterDocumentation" : "

An array of arrays.

\n@param arrayValues An array of arrays.", "setterMethodName" : "setArrayValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "arrayValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "arrayValues", "variableType" : "java.util.List", "documentation" : "

An array of arrays.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getBooleanValues", "beanStyleSetterMethodName" : "setBooleanValues", "c2jName" : "booleanValues", "c2jShape" : "BooleanArray", "defaultConsumerFluentSetterDocumentation" : "

An array of Boolean values.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #booleanValues(List)}.\n@param booleanValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #booleanValues(List)", "deprecated" : false, "documentation" : "

An array of Boolean values.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "booleanValues", "fluentSetterDocumentation" : "

An array of Boolean values.

\n@param booleanValues An array of Boolean values.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "booleanValues", "getterDocumentation" : "

An array of Boolean values.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of Boolean values.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "booleanValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "booleanValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "BoxedBoolean", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #member(Boolean)}.\n@param member a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Boolean)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "member", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "member", "variableType" : "Boolean", "documentation" : "", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Boolean", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : true, "simpleType" : "Boolean", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "BooleanValues", "sensitive" : false, "setterDocumentation" : "

An array of Boolean values.

\n@param booleanValues An array of Boolean values.", "setterMethodName" : "setBooleanValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "booleanValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "booleanValues", "variableType" : "java.util.List", "documentation" : "

An array of Boolean values.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getDoubleValues", "beanStyleSetterMethodName" : "setDoubleValues", "c2jName" : "doubleValues", "c2jShape" : "DoubleArray", "defaultConsumerFluentSetterDocumentation" : "

An array of integers.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #doubleValues(List)}.\n@param doubleValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #doubleValues(List)", "deprecated" : false, "documentation" : "

An array of integers.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "doubleValues", "fluentSetterDocumentation" : "

An array of integers.

\n@param doubleValues An array of integers.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "doubleValues", "getterDocumentation" : "

An array of integers.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of integers.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "doubleValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "doubleValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "BoxedDouble", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Double.Builder} avoiding the need to create one manually via {@link Double#builder()}.\n\nWhen the {@link Consumer} completes, {@link Double.Builder#build()} is called immediately and its result is passed to {@link #member(Double)}.\n@param member a consumer that will call methods on {@link Double.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Double)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Double", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "DOUBLE", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Double", "variableName" : "member", "variableType" : "Double", "documentation" : null, "simpleType" : "Double", "variableSetterType" : "Double" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Double", "variableName" : "member", "variableType" : "Double", "documentation" : "", "simpleType" : "Double", "variableSetterType" : "Double" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Double", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : true, "simpleType" : "Double", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "DoubleValues", "sensitive" : false, "setterDocumentation" : "

An array of integers.

\n@param doubleValues An array of integers.", "setterMethodName" : "setDoubleValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "doubleValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "doubleValues", "variableType" : "java.util.List", "documentation" : "

An array of integers.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getLongValues", "beanStyleSetterMethodName" : "setLongValues", "c2jName" : "longValues", "c2jShape" : "LongArray", "defaultConsumerFluentSetterDocumentation" : "

An array of floating point numbers.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #longValues(List)}.\n@param longValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #longValues(List)", "deprecated" : false, "documentation" : "

An array of floating point numbers.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "longValues", "fluentSetterDocumentation" : "

An array of floating point numbers.

\n@param longValues An array of floating point numbers.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "longValues", "getterDocumentation" : "

An array of floating point numbers.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of floating point numbers.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "longValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "longValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "BoxedLong", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #member(Long)}.\n@param member a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Long)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "member", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "member", "variableType" : "Long", "documentation" : "", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Long", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : true, "simpleType" : "Long", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "LongValues", "sensitive" : false, "setterDocumentation" : "

An array of floating point numbers.

\n@param longValues An array of floating point numbers.", "setterMethodName" : "setLongValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "longValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "longValues", "variableType" : "java.util.List", "documentation" : "

An array of floating point numbers.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getStringValues", "beanStyleSetterMethodName" : "setStringValues", "c2jName" : "stringValues", "c2jShape" : "StringArray", "defaultConsumerFluentSetterDocumentation" : "

An array of strings.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #stringValues(List)}.\n@param stringValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #stringValues(List)", "deprecated" : false, "documentation" : "

An array of strings.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "stringValues", "fluentSetterDocumentation" : "

An array of strings.

\n@param stringValues An array of strings.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "stringValues", "getterDocumentation" : "

An array of strings.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of strings.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "stringValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "stringValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #member(String)}.\n@param member a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(String)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "StringValues", "sensitive" : false, "setterDocumentation" : "

An array of strings.

\n@param stringValues An array of strings.", "setterMethodName" : "setStringValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "stringValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "stringValues", "variableType" : "java.util.List", "documentation" : "

An array of strings.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ArrayValues" : { "beanStyleGetterMethodName" : "getArrayValues", "beanStyleSetterMethodName" : "setArrayValues", "c2jName" : "arrayValues", "c2jShape" : "ArrayOfArray", "defaultConsumerFluentSetterDocumentation" : "

An array of arrays.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #arrayValues(List)}.\n@param arrayValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #arrayValues(List)", "deprecated" : false, "documentation" : "

An array of arrays.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "arrayValues", "fluentSetterDocumentation" : "

An array of arrays.

\n@param arrayValues An array of arrays.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "arrayValues", "getterDocumentation" : "

An array of arrays.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of arrays.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "arrayValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "arrayValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "ArrayValue", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link ArrayValue.Builder} avoiding the need to create one manually via {@link ArrayValue#builder()}.\n\nWhen the {@link Consumer} completes, {@link ArrayValue.Builder#build()} is called immediately and its result is passed to {@link #member(ArrayValue)}.\n@param member a consumer that will call methods on {@link ArrayValue.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(ArrayValue)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "ArrayValue", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ArrayValue", "variableName" : "member", "variableType" : "ArrayValue", "documentation" : null, "simpleType" : "ArrayValue", "variableSetterType" : "ArrayValue" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ArrayValue", "variableName" : "member", "variableType" : "ArrayValue", "documentation" : "", "simpleType" : "ArrayValue", "variableSetterType" : "ArrayValue" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ArrayValue", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "ArrayValue", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "ArrayValues", "sensitive" : false, "setterDocumentation" : "

An array of arrays.

\n@param arrayValues An array of arrays.", "setterMethodName" : "setArrayValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "arrayValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "arrayValues", "variableType" : "java.util.List", "documentation" : "

An array of arrays.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "BooleanValues" : { "beanStyleGetterMethodName" : "getBooleanValues", "beanStyleSetterMethodName" : "setBooleanValues", "c2jName" : "booleanValues", "c2jShape" : "BooleanArray", "defaultConsumerFluentSetterDocumentation" : "

An array of Boolean values.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #booleanValues(List)}.\n@param booleanValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #booleanValues(List)", "deprecated" : false, "documentation" : "

An array of Boolean values.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "booleanValues", "fluentSetterDocumentation" : "

An array of Boolean values.

\n@param booleanValues An array of Boolean values.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "booleanValues", "getterDocumentation" : "

An array of Boolean values.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of Boolean values.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "booleanValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "booleanValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "BoxedBoolean", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #member(Boolean)}.\n@param member a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Boolean)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "member", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "member", "variableType" : "Boolean", "documentation" : "", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Boolean", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : true, "simpleType" : "Boolean", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "BooleanValues", "sensitive" : false, "setterDocumentation" : "

An array of Boolean values.

\n@param booleanValues An array of Boolean values.", "setterMethodName" : "setBooleanValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "booleanValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "booleanValues", "variableType" : "java.util.List", "documentation" : "

An array of Boolean values.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "DoubleValues" : { "beanStyleGetterMethodName" : "getDoubleValues", "beanStyleSetterMethodName" : "setDoubleValues", "c2jName" : "doubleValues", "c2jShape" : "DoubleArray", "defaultConsumerFluentSetterDocumentation" : "

An array of integers.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #doubleValues(List)}.\n@param doubleValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #doubleValues(List)", "deprecated" : false, "documentation" : "

An array of integers.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "doubleValues", "fluentSetterDocumentation" : "

An array of integers.

\n@param doubleValues An array of integers.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "doubleValues", "getterDocumentation" : "

An array of integers.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of integers.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "doubleValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "doubleValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "BoxedDouble", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Double.Builder} avoiding the need to create one manually via {@link Double#builder()}.\n\nWhen the {@link Consumer} completes, {@link Double.Builder#build()} is called immediately and its result is passed to {@link #member(Double)}.\n@param member a consumer that will call methods on {@link Double.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Double)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Double", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "DOUBLE", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Double", "variableName" : "member", "variableType" : "Double", "documentation" : null, "simpleType" : "Double", "variableSetterType" : "Double" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Double", "variableName" : "member", "variableType" : "Double", "documentation" : "", "simpleType" : "Double", "variableSetterType" : "Double" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Double", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : true, "simpleType" : "Double", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "DoubleValues", "sensitive" : false, "setterDocumentation" : "

An array of integers.

\n@param doubleValues An array of integers.", "setterMethodName" : "setDoubleValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "doubleValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "doubleValues", "variableType" : "java.util.List", "documentation" : "

An array of integers.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "LongValues" : { "beanStyleGetterMethodName" : "getLongValues", "beanStyleSetterMethodName" : "setLongValues", "c2jName" : "longValues", "c2jShape" : "LongArray", "defaultConsumerFluentSetterDocumentation" : "

An array of floating point numbers.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #longValues(List)}.\n@param longValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #longValues(List)", "deprecated" : false, "documentation" : "

An array of floating point numbers.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "longValues", "fluentSetterDocumentation" : "

An array of floating point numbers.

\n@param longValues An array of floating point numbers.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "longValues", "getterDocumentation" : "

An array of floating point numbers.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of floating point numbers.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "longValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "longValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "BoxedLong", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #member(Long)}.\n@param member a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Long)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "member", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "member", "variableType" : "Long", "documentation" : "", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Long", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : true, "simpleType" : "Long", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "LongValues", "sensitive" : false, "setterDocumentation" : "

An array of floating point numbers.

\n@param longValues An array of floating point numbers.", "setterMethodName" : "setLongValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "longValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "longValues", "variableType" : "java.util.List", "documentation" : "

An array of floating point numbers.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "StringValues" : { "beanStyleGetterMethodName" : "getStringValues", "beanStyleSetterMethodName" : "setStringValues", "c2jName" : "stringValues", "c2jShape" : "StringArray", "defaultConsumerFluentSetterDocumentation" : "

An array of strings.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #stringValues(List)}.\n@param stringValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #stringValues(List)", "deprecated" : false, "documentation" : "

An array of strings.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "stringValues", "fluentSetterDocumentation" : "

An array of strings.

\n@param stringValues An array of strings.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "stringValues", "getterDocumentation" : "

An array of strings.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of strings.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "stringValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "stringValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #member(String)}.\n@param member a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(String)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "StringValues", "sensitive" : false, "setterDocumentation" : "

An array of strings.

\n@param stringValues An array of strings.", "setterMethodName" : "setStringValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "stringValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "stringValues", "variableType" : "java.util.List", "documentation" : "

An array of strings.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getArrayValues", "beanStyleSetterMethodName" : "setArrayValues", "c2jName" : "arrayValues", "c2jShape" : "ArrayOfArray", "defaultConsumerFluentSetterDocumentation" : "

An array of arrays.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #arrayValues(List)}.\n@param arrayValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #arrayValues(List)", "deprecated" : false, "documentation" : "

An array of arrays.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "arrayValues", "fluentSetterDocumentation" : "

An array of arrays.

\n@param arrayValues An array of arrays.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "arrayValues", "getterDocumentation" : "

An array of arrays.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of arrays.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "arrayValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "arrayValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "ArrayValue", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link ArrayValue.Builder} avoiding the need to create one manually via {@link ArrayValue#builder()}.\n\nWhen the {@link Consumer} completes, {@link ArrayValue.Builder#build()} is called immediately and its result is passed to {@link #member(ArrayValue)}.\n@param member a consumer that will call methods on {@link ArrayValue.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(ArrayValue)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "ArrayValue", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ArrayValue", "variableName" : "member", "variableType" : "ArrayValue", "documentation" : null, "simpleType" : "ArrayValue", "variableSetterType" : "ArrayValue" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ArrayValue", "variableName" : "member", "variableType" : "ArrayValue", "documentation" : "", "simpleType" : "ArrayValue", "variableSetterType" : "ArrayValue" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ArrayValue", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "ArrayValue", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "ArrayValues", "sensitive" : false, "setterDocumentation" : "

An array of arrays.

\n@param arrayValues An array of arrays.", "setterMethodName" : "setArrayValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "arrayValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "arrayValues", "variableType" : "java.util.List", "documentation" : "

An array of arrays.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getBooleanValues", "beanStyleSetterMethodName" : "setBooleanValues", "c2jName" : "booleanValues", "c2jShape" : "BooleanArray", "defaultConsumerFluentSetterDocumentation" : "

An array of Boolean values.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #booleanValues(List)}.\n@param booleanValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #booleanValues(List)", "deprecated" : false, "documentation" : "

An array of Boolean values.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "booleanValues", "fluentSetterDocumentation" : "

An array of Boolean values.

\n@param booleanValues An array of Boolean values.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "booleanValues", "getterDocumentation" : "

An array of Boolean values.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of Boolean values.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "booleanValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "booleanValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "BoxedBoolean", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #member(Boolean)}.\n@param member a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Boolean)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "member", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "member", "variableType" : "Boolean", "documentation" : "", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Boolean", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : true, "simpleType" : "Boolean", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "BooleanValues", "sensitive" : false, "setterDocumentation" : "

An array of Boolean values.

\n@param booleanValues An array of Boolean values.", "setterMethodName" : "setBooleanValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "booleanValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "booleanValues", "variableType" : "java.util.List", "documentation" : "

An array of Boolean values.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getDoubleValues", "beanStyleSetterMethodName" : "setDoubleValues", "c2jName" : "doubleValues", "c2jShape" : "DoubleArray", "defaultConsumerFluentSetterDocumentation" : "

An array of integers.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #doubleValues(List)}.\n@param doubleValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #doubleValues(List)", "deprecated" : false, "documentation" : "

An array of integers.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "doubleValues", "fluentSetterDocumentation" : "

An array of integers.

\n@param doubleValues An array of integers.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "doubleValues", "getterDocumentation" : "

An array of integers.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of integers.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "doubleValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "doubleValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "BoxedDouble", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Double.Builder} avoiding the need to create one manually via {@link Double#builder()}.\n\nWhen the {@link Consumer} completes, {@link Double.Builder#build()} is called immediately and its result is passed to {@link #member(Double)}.\n@param member a consumer that will call methods on {@link Double.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Double)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Double", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "DOUBLE", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Double", "variableName" : "member", "variableType" : "Double", "documentation" : null, "simpleType" : "Double", "variableSetterType" : "Double" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Double", "variableName" : "member", "variableType" : "Double", "documentation" : "", "simpleType" : "Double", "variableSetterType" : "Double" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Double", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : true, "simpleType" : "Double", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "DoubleValues", "sensitive" : false, "setterDocumentation" : "

An array of integers.

\n@param doubleValues An array of integers.", "setterMethodName" : "setDoubleValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "doubleValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "doubleValues", "variableType" : "java.util.List", "documentation" : "

An array of integers.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getLongValues", "beanStyleSetterMethodName" : "setLongValues", "c2jName" : "longValues", "c2jShape" : "LongArray", "defaultConsumerFluentSetterDocumentation" : "

An array of floating point numbers.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #longValues(List)}.\n@param longValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #longValues(List)", "deprecated" : false, "documentation" : "

An array of floating point numbers.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "longValues", "fluentSetterDocumentation" : "

An array of floating point numbers.

\n@param longValues An array of floating point numbers.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "longValues", "getterDocumentation" : "

An array of floating point numbers.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of floating point numbers.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "longValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "longValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "BoxedLong", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #member(Long)}.\n@param member a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Long)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "member", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "member", "variableType" : "Long", "documentation" : "", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Long", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : true, "simpleType" : "Long", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "LongValues", "sensitive" : false, "setterDocumentation" : "

An array of floating point numbers.

\n@param longValues An array of floating point numbers.", "setterMethodName" : "setLongValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "longValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "longValues", "variableType" : "java.util.List", "documentation" : "

An array of floating point numbers.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getStringValues", "beanStyleSetterMethodName" : "setStringValues", "c2jName" : "stringValues", "c2jShape" : "StringArray", "defaultConsumerFluentSetterDocumentation" : "

An array of strings.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #stringValues(List)}.\n@param stringValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #stringValues(List)", "deprecated" : false, "documentation" : "

An array of strings.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "stringValues", "fluentSetterDocumentation" : "

An array of strings.

\n@param stringValues An array of strings.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "stringValues", "getterDocumentation" : "

An array of strings.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of strings.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "stringValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "stringValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #member(String)}.\n@param member a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(String)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "StringValues", "sensitive" : false, "setterDocumentation" : "

An array of strings.

\n@param stringValues An array of strings.", "setterMethodName" : "setStringValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "stringValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "stringValues", "variableType" : "java.util.List", "documentation" : "

An array of strings.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "ArrayValue", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "ArrayValue", "variableName" : "arrayValue", "variableType" : "ArrayValue", "documentation" : null, "simpleType" : "ArrayValue", "variableSetterType" : "ArrayValue" }, "wrapper" : false, "xmlNamespace" : null }, "BadRequestException" : { "c2jName" : "BadRequestException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

There is an error in the call or in a SQL statement.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : "BadRequestException", "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : 400, "marshaller" : null, "members" : [ ], "membersAsMap" : { }, "nonStreamingMembers" : [ ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "BadRequestException", "simpleMethod" : false, "unmarshaller" : null, "variable" : { "variableDeclarationType" : "BadRequestException", "variableName" : "badRequestException", "variableType" : "BadRequestException", "documentation" : null, "simpleType" : "BadRequestException", "variableSetterType" : "BadRequestException" }, "wrapper" : false, "xmlNamespace" : null }, "BatchExecuteStatementRequest" : { "c2jName" : "BatchExecuteStatementRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The request parameters represent the input of a SQL statement over an array of data.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : { "action" : "BatchExecuteStatement", "locationName" : null, "requestUri" : "/BatchExecute", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "beanStyleGetterMethodName" : "getDatabase", "beanStyleSetterMethodName" : "setDatabase", "c2jName" : "database", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #database(String)}.\n@param database a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #database(String)", "deprecated" : false, "documentation" : "

The name of the database.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "database", "fluentSetterDocumentation" : "

The name of the database.

\n@param database The name of the database.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "database", "getterDocumentation" : "

The name of the database.

\n@return The name of the database.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "database", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "database", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Database", "sensitive" : false, "setterDocumentation" : "

The name of the database.

\n@param database The name of the database.", "setterMethodName" : "setDatabase", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : "

The name of the database.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getParameterSets", "beanStyleSetterMethodName" : "setParameterSets", "c2jName" : "parameterSets", "c2jShape" : "SqlParameterSets", "defaultConsumerFluentSetterDocumentation" : "

The parameter set for the batch operation.

\nThis is a convenience that creates an instance of the {@link List>.Builder} avoiding the need to create one manually via {@link List>#builder()}.\n\nWhen the {@link Consumer} completes, {@link List>.Builder#build()} is called immediately and its result is passed to {@link #parameterSets(List>)}.\n@param parameterSets a consumer that will call methods on {@link List>.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #parameterSets(List>)", "deprecated" : false, "documentation" : "

The parameter set for the batch operation.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "parameterSets", "fluentSetterDocumentation" : "

The parameter set for the batch operation.

\n@param parameterSets The parameter set for the batch operation.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "parameterSets", "getterDocumentation" : "

The parameter set for the batch operation.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The parameter set for the batch operation.", "getterModel" : { "returnType" : "java.util.List>", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "parameterSets", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "parameterSets", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "SqlParametersList", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #member(List)}.\n@param member a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(List)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "SqlParameter", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link SqlParameter.Builder} avoiding the need to create one manually via {@link SqlParameter#builder()}.\n\nWhen the {@link Consumer} completes, {@link SqlParameter.Builder#build()} is called immediately and its result is passed to {@link #member(SqlParameter)}.\n@param member a consumer that will call methods on {@link SqlParameter.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(SqlParameter)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "SqlParameter", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "SqlParameter", "variableName" : "member", "variableType" : "SqlParameter", "documentation" : null, "simpleType" : "SqlParameter", "variableSetterType" : "SqlParameter" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "SqlParameter", "variableName" : "member", "variableType" : "SqlParameter", "documentation" : "", "simpleType" : "SqlParameter", "variableSetterType" : "SqlParameter" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "SqlParameter", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "SqlParameter", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "member", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "member", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "java.util.List", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "List", "templateImplType" : "java.util.ArrayList>", "templateType" : "java.util.List>" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "ParameterSets", "sensitive" : false, "setterDocumentation" : "

The parameter set for the batch operation.

\n@param parameterSets The parameter set for the batch operation.", "setterMethodName" : "setParameterSets", "setterModel" : { "variableDeclarationType" : "java.util.List>", "variableName" : "parameterSets", "variableType" : "java.util.List>", "documentation" : null, "simpleType" : "List>", "variableSetterType" : "java.util.Collection>" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List>", "variableName" : "parameterSets", "variableType" : "java.util.List>", "documentation" : "

The parameter set for the batch operation.

", "simpleType" : "List>", "variableSetterType" : "java.util.Collection>" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getResourceArn", "beanStyleSetterMethodName" : "setResourceArn", "c2jName" : "resourceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceArn(String)}.\n@param resourceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resourceArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resourceArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@return The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resourceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resourceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "ResourceArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "setterMethodName" : "setResourceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSchema", "beanStyleSetterMethodName" : "setSchema", "c2jName" : "schema", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database schema.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #schema(String)}.\n@param schema a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #schema(String)", "deprecated" : false, "documentation" : "

The name of the database schema.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "schema", "fluentSetterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "schema", "getterDocumentation" : "

The name of the database schema.

\n@return The name of the database schema.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "schema", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "schema", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Schema", "sensitive" : false, "setterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.", "setterMethodName" : "setSchema", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : "

The name of the database schema.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSecretArn", "beanStyleSetterMethodName" : "setSecretArn", "c2jName" : "secretArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #secretArn(String)}.\n@param secretArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #secretArn(String)", "deprecated" : false, "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "secretArn", "fluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "secretArn", "getterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@return The name or ARN of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "secretArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "secretArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SecretArn", "sensitive" : false, "setterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.", "setterMethodName" : "setSecretArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSql", "beanStyleSetterMethodName" : "setSql", "c2jName" : "sql", "c2jShape" : "SqlStatement", "defaultConsumerFluentSetterDocumentation" : "

The SQL statement to run.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #sql(String)}.\n@param sql a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #sql(String)", "deprecated" : false, "documentation" : "

The SQL statement to run.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "sql", "fluentSetterDocumentation" : "

The SQL statement to run.

\n@param sql The SQL statement to run.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "sql", "getterDocumentation" : "

The SQL statement to run.

\n@return The SQL statement to run.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "sql", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "sql", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Sql", "sensitive" : false, "setterDocumentation" : "

The SQL statement to run.

\n@param sql The SQL statement to run.", "setterMethodName" : "setSql", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "sql", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "sql", "variableType" : "String", "documentation" : "

The SQL statement to run.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getTransactionId", "beanStyleSetterMethodName" : "setTransactionId", "c2jName" : "transactionId", "c2jShape" : "Id", "defaultConsumerFluentSetterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionId(String)}.\n@param transactionId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionId(String)", "deprecated" : false, "documentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionId", "fluentSetterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@param transactionId The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionId", "getterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@return The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionId", "sensitive" : false, "setterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@param transactionId The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.", "setterMethodName" : "setTransactionId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "Database" : { "beanStyleGetterMethodName" : "getDatabase", "beanStyleSetterMethodName" : "setDatabase", "c2jName" : "database", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #database(String)}.\n@param database a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #database(String)", "deprecated" : false, "documentation" : "

The name of the database.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "database", "fluentSetterDocumentation" : "

The name of the database.

\n@param database The name of the database.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "database", "getterDocumentation" : "

The name of the database.

\n@return The name of the database.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "database", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "database", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Database", "sensitive" : false, "setterDocumentation" : "

The name of the database.

\n@param database The name of the database.", "setterMethodName" : "setDatabase", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : "

The name of the database.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "ParameterSets" : { "beanStyleGetterMethodName" : "getParameterSets", "beanStyleSetterMethodName" : "setParameterSets", "c2jName" : "parameterSets", "c2jShape" : "SqlParameterSets", "defaultConsumerFluentSetterDocumentation" : "

The parameter set for the batch operation.

\nThis is a convenience that creates an instance of the {@link List>.Builder} avoiding the need to create one manually via {@link List>#builder()}.\n\nWhen the {@link Consumer} completes, {@link List>.Builder#build()} is called immediately and its result is passed to {@link #parameterSets(List>)}.\n@param parameterSets a consumer that will call methods on {@link List>.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #parameterSets(List>)", "deprecated" : false, "documentation" : "

The parameter set for the batch operation.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "parameterSets", "fluentSetterDocumentation" : "

The parameter set for the batch operation.

\n@param parameterSets The parameter set for the batch operation.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "parameterSets", "getterDocumentation" : "

The parameter set for the batch operation.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The parameter set for the batch operation.", "getterModel" : { "returnType" : "java.util.List>", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "parameterSets", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "parameterSets", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "SqlParametersList", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #member(List)}.\n@param member a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(List)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "SqlParameter", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link SqlParameter.Builder} avoiding the need to create one manually via {@link SqlParameter#builder()}.\n\nWhen the {@link Consumer} completes, {@link SqlParameter.Builder#build()} is called immediately and its result is passed to {@link #member(SqlParameter)}.\n@param member a consumer that will call methods on {@link SqlParameter.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(SqlParameter)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "SqlParameter", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "SqlParameter", "variableName" : "member", "variableType" : "SqlParameter", "documentation" : null, "simpleType" : "SqlParameter", "variableSetterType" : "SqlParameter" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "SqlParameter", "variableName" : "member", "variableType" : "SqlParameter", "documentation" : "", "simpleType" : "SqlParameter", "variableSetterType" : "SqlParameter" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "SqlParameter", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "SqlParameter", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "member", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "member", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "java.util.List", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "List", "templateImplType" : "java.util.ArrayList>", "templateType" : "java.util.List>" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "ParameterSets", "sensitive" : false, "setterDocumentation" : "

The parameter set for the batch operation.

\n@param parameterSets The parameter set for the batch operation.", "setterMethodName" : "setParameterSets", "setterModel" : { "variableDeclarationType" : "java.util.List>", "variableName" : "parameterSets", "variableType" : "java.util.List>", "documentation" : null, "simpleType" : "List>", "variableSetterType" : "java.util.Collection>" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List>", "variableName" : "parameterSets", "variableType" : "java.util.List>", "documentation" : "

The parameter set for the batch operation.

", "simpleType" : "List>", "variableSetterType" : "java.util.Collection>" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "ResourceArn" : { "beanStyleGetterMethodName" : "getResourceArn", "beanStyleSetterMethodName" : "setResourceArn", "c2jName" : "resourceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceArn(String)}.\n@param resourceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resourceArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resourceArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@return The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resourceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resourceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "ResourceArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "setterMethodName" : "setResourceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Schema" : { "beanStyleGetterMethodName" : "getSchema", "beanStyleSetterMethodName" : "setSchema", "c2jName" : "schema", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database schema.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #schema(String)}.\n@param schema a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #schema(String)", "deprecated" : false, "documentation" : "

The name of the database schema.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "schema", "fluentSetterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "schema", "getterDocumentation" : "

The name of the database schema.

\n@return The name of the database schema.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "schema", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "schema", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Schema", "sensitive" : false, "setterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.", "setterMethodName" : "setSchema", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : "

The name of the database schema.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "SecretArn" : { "beanStyleGetterMethodName" : "getSecretArn", "beanStyleSetterMethodName" : "setSecretArn", "c2jName" : "secretArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #secretArn(String)}.\n@param secretArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #secretArn(String)", "deprecated" : false, "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "secretArn", "fluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "secretArn", "getterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@return The name or ARN of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "secretArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "secretArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SecretArn", "sensitive" : false, "setterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.", "setterMethodName" : "setSecretArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Sql" : { "beanStyleGetterMethodName" : "getSql", "beanStyleSetterMethodName" : "setSql", "c2jName" : "sql", "c2jShape" : "SqlStatement", "defaultConsumerFluentSetterDocumentation" : "

The SQL statement to run.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #sql(String)}.\n@param sql a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #sql(String)", "deprecated" : false, "documentation" : "

The SQL statement to run.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "sql", "fluentSetterDocumentation" : "

The SQL statement to run.

\n@param sql The SQL statement to run.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "sql", "getterDocumentation" : "

The SQL statement to run.

\n@return The SQL statement to run.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "sql", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "sql", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Sql", "sensitive" : false, "setterDocumentation" : "

The SQL statement to run.

\n@param sql The SQL statement to run.", "setterMethodName" : "setSql", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "sql", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "sql", "variableType" : "String", "documentation" : "

The SQL statement to run.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "TransactionId" : { "beanStyleGetterMethodName" : "getTransactionId", "beanStyleSetterMethodName" : "setTransactionId", "c2jName" : "transactionId", "c2jShape" : "Id", "defaultConsumerFluentSetterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionId(String)}.\n@param transactionId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionId(String)", "deprecated" : false, "documentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionId", "fluentSetterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@param transactionId The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionId", "getterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@return The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionId", "sensitive" : false, "setterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@param transactionId The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.", "setterMethodName" : "setTransactionId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getDatabase", "beanStyleSetterMethodName" : "setDatabase", "c2jName" : "database", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #database(String)}.\n@param database a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #database(String)", "deprecated" : false, "documentation" : "

The name of the database.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "database", "fluentSetterDocumentation" : "

The name of the database.

\n@param database The name of the database.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "database", "getterDocumentation" : "

The name of the database.

\n@return The name of the database.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "database", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "database", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Database", "sensitive" : false, "setterDocumentation" : "

The name of the database.

\n@param database The name of the database.", "setterMethodName" : "setDatabase", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : "

The name of the database.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getParameterSets", "beanStyleSetterMethodName" : "setParameterSets", "c2jName" : "parameterSets", "c2jShape" : "SqlParameterSets", "defaultConsumerFluentSetterDocumentation" : "

The parameter set for the batch operation.

\nThis is a convenience that creates an instance of the {@link List>.Builder} avoiding the need to create one manually via {@link List>#builder()}.\n\nWhen the {@link Consumer} completes, {@link List>.Builder#build()} is called immediately and its result is passed to {@link #parameterSets(List>)}.\n@param parameterSets a consumer that will call methods on {@link List>.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #parameterSets(List>)", "deprecated" : false, "documentation" : "

The parameter set for the batch operation.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "parameterSets", "fluentSetterDocumentation" : "

The parameter set for the batch operation.

\n@param parameterSets The parameter set for the batch operation.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "parameterSets", "getterDocumentation" : "

The parameter set for the batch operation.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The parameter set for the batch operation.", "getterModel" : { "returnType" : "java.util.List>", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "parameterSets", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "parameterSets", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "SqlParametersList", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #member(List)}.\n@param member a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(List)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "SqlParameter", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link SqlParameter.Builder} avoiding the need to create one manually via {@link SqlParameter#builder()}.\n\nWhen the {@link Consumer} completes, {@link SqlParameter.Builder#build()} is called immediately and its result is passed to {@link #member(SqlParameter)}.\n@param member a consumer that will call methods on {@link SqlParameter.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(SqlParameter)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "SqlParameter", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "SqlParameter", "variableName" : "member", "variableType" : "SqlParameter", "documentation" : null, "simpleType" : "SqlParameter", "variableSetterType" : "SqlParameter" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "SqlParameter", "variableName" : "member", "variableType" : "SqlParameter", "documentation" : "", "simpleType" : "SqlParameter", "variableSetterType" : "SqlParameter" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "SqlParameter", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "SqlParameter", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "member", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "member", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "java.util.List", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "List", "templateImplType" : "java.util.ArrayList>", "templateType" : "java.util.List>" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "ParameterSets", "sensitive" : false, "setterDocumentation" : "

The parameter set for the batch operation.

\n@param parameterSets The parameter set for the batch operation.", "setterMethodName" : "setParameterSets", "setterModel" : { "variableDeclarationType" : "java.util.List>", "variableName" : "parameterSets", "variableType" : "java.util.List>", "documentation" : null, "simpleType" : "List>", "variableSetterType" : "java.util.Collection>" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List>", "variableName" : "parameterSets", "variableType" : "java.util.List>", "documentation" : "

The parameter set for the batch operation.

", "simpleType" : "List>", "variableSetterType" : "java.util.Collection>" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getResourceArn", "beanStyleSetterMethodName" : "setResourceArn", "c2jName" : "resourceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceArn(String)}.\n@param resourceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resourceArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resourceArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@return The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resourceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resourceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "ResourceArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "setterMethodName" : "setResourceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSchema", "beanStyleSetterMethodName" : "setSchema", "c2jName" : "schema", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database schema.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #schema(String)}.\n@param schema a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #schema(String)", "deprecated" : false, "documentation" : "

The name of the database schema.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "schema", "fluentSetterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "schema", "getterDocumentation" : "

The name of the database schema.

\n@return The name of the database schema.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "schema", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "schema", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Schema", "sensitive" : false, "setterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.", "setterMethodName" : "setSchema", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : "

The name of the database schema.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSecretArn", "beanStyleSetterMethodName" : "setSecretArn", "c2jName" : "secretArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #secretArn(String)}.\n@param secretArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #secretArn(String)", "deprecated" : false, "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "secretArn", "fluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "secretArn", "getterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@return The name or ARN of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "secretArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "secretArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SecretArn", "sensitive" : false, "setterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.", "setterMethodName" : "setSecretArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSql", "beanStyleSetterMethodName" : "setSql", "c2jName" : "sql", "c2jShape" : "SqlStatement", "defaultConsumerFluentSetterDocumentation" : "

The SQL statement to run.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #sql(String)}.\n@param sql a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #sql(String)", "deprecated" : false, "documentation" : "

The SQL statement to run.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "sql", "fluentSetterDocumentation" : "

The SQL statement to run.

\n@param sql The SQL statement to run.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "sql", "getterDocumentation" : "

The SQL statement to run.

\n@return The SQL statement to run.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "sql", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "sql", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Sql", "sensitive" : false, "setterDocumentation" : "

The SQL statement to run.

\n@param sql The SQL statement to run.", "setterMethodName" : "setSql", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "sql", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "sql", "variableType" : "String", "documentation" : "

The SQL statement to run.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getTransactionId", "beanStyleSetterMethodName" : "setTransactionId", "c2jName" : "transactionId", "c2jShape" : "Id", "defaultConsumerFluentSetterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionId(String)}.\n@param transactionId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionId(String)", "deprecated" : false, "documentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionId", "fluentSetterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@param transactionId The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionId", "getterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@return The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionId", "sensitive" : false, "setterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@param transactionId The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.", "setterMethodName" : "setTransactionId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "resourceArn", "secretArn", "sql" ], "shapeName" : "BatchExecuteStatementRequest", "simpleMethod" : false, "unmarshaller" : null, "variable" : { "variableDeclarationType" : "BatchExecuteStatementRequest", "variableName" : "batchExecuteStatementRequest", "variableType" : "BatchExecuteStatementRequest", "documentation" : null, "simpleType" : "BatchExecuteStatementRequest", "variableSetterType" : "BatchExecuteStatementRequest" }, "wrapper" : false, "xmlNamespace" : null }, "BatchExecuteStatementResponse" : { "c2jName" : "BatchExecuteStatementResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The response elements represent the output of a SQL statement over an array of data.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getUpdateResults", "beanStyleSetterMethodName" : "setUpdateResults", "c2jName" : "updateResults", "c2jShape" : "UpdateResults", "defaultConsumerFluentSetterDocumentation" : "

The execution results of each batch entry.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #updateResults(List)}.\n@param updateResults a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #updateResults(List)", "deprecated" : false, "documentation" : "

The execution results of each batch entry.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "updateResults", "fluentSetterDocumentation" : "

The execution results of each batch entry.

\n@param updateResults The execution results of each batch entry.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "updateResults", "getterDocumentation" : "

The execution results of each batch entry.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The execution results of each batch entry.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "updateResults", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "updateResults", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "UpdateResult", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link UpdateResult.Builder} avoiding the need to create one manually via {@link UpdateResult#builder()}.\n\nWhen the {@link Consumer} completes, {@link UpdateResult.Builder#build()} is called immediately and its result is passed to {@link #member(UpdateResult)}.\n@param member a consumer that will call methods on {@link UpdateResult.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(UpdateResult)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "UpdateResult", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "UpdateResult", "variableName" : "member", "variableType" : "UpdateResult", "documentation" : null, "simpleType" : "UpdateResult", "variableSetterType" : "UpdateResult" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "UpdateResult", "variableName" : "member", "variableType" : "UpdateResult", "documentation" : "", "simpleType" : "UpdateResult", "variableSetterType" : "UpdateResult" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "UpdateResult", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "UpdateResult", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "UpdateResults", "sensitive" : false, "setterDocumentation" : "

The execution results of each batch entry.

\n@param updateResults The execution results of each batch entry.", "setterMethodName" : "setUpdateResults", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "updateResults", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "updateResults", "variableType" : "java.util.List", "documentation" : "

The execution results of each batch entry.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "UpdateResults" : { "beanStyleGetterMethodName" : "getUpdateResults", "beanStyleSetterMethodName" : "setUpdateResults", "c2jName" : "updateResults", "c2jShape" : "UpdateResults", "defaultConsumerFluentSetterDocumentation" : "

The execution results of each batch entry.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #updateResults(List)}.\n@param updateResults a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #updateResults(List)", "deprecated" : false, "documentation" : "

The execution results of each batch entry.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "updateResults", "fluentSetterDocumentation" : "

The execution results of each batch entry.

\n@param updateResults The execution results of each batch entry.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "updateResults", "getterDocumentation" : "

The execution results of each batch entry.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The execution results of each batch entry.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "updateResults", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "updateResults", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "UpdateResult", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link UpdateResult.Builder} avoiding the need to create one manually via {@link UpdateResult#builder()}.\n\nWhen the {@link Consumer} completes, {@link UpdateResult.Builder#build()} is called immediately and its result is passed to {@link #member(UpdateResult)}.\n@param member a consumer that will call methods on {@link UpdateResult.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(UpdateResult)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "UpdateResult", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "UpdateResult", "variableName" : "member", "variableType" : "UpdateResult", "documentation" : null, "simpleType" : "UpdateResult", "variableSetterType" : "UpdateResult" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "UpdateResult", "variableName" : "member", "variableType" : "UpdateResult", "documentation" : "", "simpleType" : "UpdateResult", "variableSetterType" : "UpdateResult" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "UpdateResult", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "UpdateResult", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "UpdateResults", "sensitive" : false, "setterDocumentation" : "

The execution results of each batch entry.

\n@param updateResults The execution results of each batch entry.", "setterMethodName" : "setUpdateResults", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "updateResults", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "updateResults", "variableType" : "java.util.List", "documentation" : "

The execution results of each batch entry.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getUpdateResults", "beanStyleSetterMethodName" : "setUpdateResults", "c2jName" : "updateResults", "c2jShape" : "UpdateResults", "defaultConsumerFluentSetterDocumentation" : "

The execution results of each batch entry.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #updateResults(List)}.\n@param updateResults a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #updateResults(List)", "deprecated" : false, "documentation" : "

The execution results of each batch entry.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "updateResults", "fluentSetterDocumentation" : "

The execution results of each batch entry.

\n@param updateResults The execution results of each batch entry.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "updateResults", "getterDocumentation" : "

The execution results of each batch entry.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The execution results of each batch entry.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "updateResults", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "updateResults", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "UpdateResult", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link UpdateResult.Builder} avoiding the need to create one manually via {@link UpdateResult#builder()}.\n\nWhen the {@link Consumer} completes, {@link UpdateResult.Builder#build()} is called immediately and its result is passed to {@link #member(UpdateResult)}.\n@param member a consumer that will call methods on {@link UpdateResult.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(UpdateResult)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "UpdateResult", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "UpdateResult", "variableName" : "member", "variableType" : "UpdateResult", "documentation" : null, "simpleType" : "UpdateResult", "variableSetterType" : "UpdateResult" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "UpdateResult", "variableName" : "member", "variableType" : "UpdateResult", "documentation" : "", "simpleType" : "UpdateResult", "variableSetterType" : "UpdateResult" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "UpdateResult", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "UpdateResult", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "UpdateResults", "sensitive" : false, "setterDocumentation" : "

The execution results of each batch entry.

\n@param updateResults The execution results of each batch entry.", "setterMethodName" : "setUpdateResults", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "updateResults", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "updateResults", "variableType" : "java.util.List", "documentation" : "

The execution results of each batch entry.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "BatchExecuteStatementResponse", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "BatchExecuteStatementResponse", "variableName" : "batchExecuteStatementResponse", "variableType" : "BatchExecuteStatementResponse", "documentation" : null, "simpleType" : "BatchExecuteStatementResponse", "variableSetterType" : "BatchExecuteStatementResponse" }, "wrapper" : false, "xmlNamespace" : null }, "BeginTransactionRequest" : { "c2jName" : "BeginTransactionRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The request parameters represent the input of a request to start a SQL transaction.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : { "action" : "BeginTransaction", "locationName" : null, "requestUri" : "/BeginTransaction", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "beanStyleGetterMethodName" : "getDatabase", "beanStyleSetterMethodName" : "setDatabase", "c2jName" : "database", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #database(String)}.\n@param database a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #database(String)", "deprecated" : false, "documentation" : "

The name of the database.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "database", "fluentSetterDocumentation" : "

The name of the database.

\n@param database The name of the database.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "database", "getterDocumentation" : "

The name of the database.

\n@return The name of the database.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "database", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "database", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Database", "sensitive" : false, "setterDocumentation" : "

The name of the database.

\n@param database The name of the database.", "setterMethodName" : "setDatabase", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : "

The name of the database.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getResourceArn", "beanStyleSetterMethodName" : "setResourceArn", "c2jName" : "resourceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceArn(String)}.\n@param resourceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resourceArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resourceArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@return The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resourceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resourceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "ResourceArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "setterMethodName" : "setResourceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSchema", "beanStyleSetterMethodName" : "setSchema", "c2jName" : "schema", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database schema.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #schema(String)}.\n@param schema a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #schema(String)", "deprecated" : false, "documentation" : "

The name of the database schema.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "schema", "fluentSetterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "schema", "getterDocumentation" : "

The name of the database schema.

\n@return The name of the database schema.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "schema", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "schema", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Schema", "sensitive" : false, "setterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.", "setterMethodName" : "setSchema", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : "

The name of the database schema.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSecretArn", "beanStyleSetterMethodName" : "setSecretArn", "c2jName" : "secretArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #secretArn(String)}.\n@param secretArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #secretArn(String)", "deprecated" : false, "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "secretArn", "fluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "secretArn", "getterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@return The name or ARN of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "secretArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "secretArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SecretArn", "sensitive" : false, "setterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.", "setterMethodName" : "setSecretArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "Database" : { "beanStyleGetterMethodName" : "getDatabase", "beanStyleSetterMethodName" : "setDatabase", "c2jName" : "database", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #database(String)}.\n@param database a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #database(String)", "deprecated" : false, "documentation" : "

The name of the database.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "database", "fluentSetterDocumentation" : "

The name of the database.

\n@param database The name of the database.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "database", "getterDocumentation" : "

The name of the database.

\n@return The name of the database.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "database", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "database", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Database", "sensitive" : false, "setterDocumentation" : "

The name of the database.

\n@param database The name of the database.", "setterMethodName" : "setDatabase", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : "

The name of the database.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "ResourceArn" : { "beanStyleGetterMethodName" : "getResourceArn", "beanStyleSetterMethodName" : "setResourceArn", "c2jName" : "resourceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceArn(String)}.\n@param resourceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resourceArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resourceArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@return The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resourceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resourceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "ResourceArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "setterMethodName" : "setResourceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Schema" : { "beanStyleGetterMethodName" : "getSchema", "beanStyleSetterMethodName" : "setSchema", "c2jName" : "schema", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database schema.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #schema(String)}.\n@param schema a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #schema(String)", "deprecated" : false, "documentation" : "

The name of the database schema.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "schema", "fluentSetterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "schema", "getterDocumentation" : "

The name of the database schema.

\n@return The name of the database schema.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "schema", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "schema", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Schema", "sensitive" : false, "setterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.", "setterMethodName" : "setSchema", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : "

The name of the database schema.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "SecretArn" : { "beanStyleGetterMethodName" : "getSecretArn", "beanStyleSetterMethodName" : "setSecretArn", "c2jName" : "secretArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #secretArn(String)}.\n@param secretArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #secretArn(String)", "deprecated" : false, "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "secretArn", "fluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "secretArn", "getterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@return The name or ARN of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "secretArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "secretArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SecretArn", "sensitive" : false, "setterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.", "setterMethodName" : "setSecretArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getDatabase", "beanStyleSetterMethodName" : "setDatabase", "c2jName" : "database", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #database(String)}.\n@param database a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #database(String)", "deprecated" : false, "documentation" : "

The name of the database.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "database", "fluentSetterDocumentation" : "

The name of the database.

\n@param database The name of the database.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "database", "getterDocumentation" : "

The name of the database.

\n@return The name of the database.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "database", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "database", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Database", "sensitive" : false, "setterDocumentation" : "

The name of the database.

\n@param database The name of the database.", "setterMethodName" : "setDatabase", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : "

The name of the database.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getResourceArn", "beanStyleSetterMethodName" : "setResourceArn", "c2jName" : "resourceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceArn(String)}.\n@param resourceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resourceArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resourceArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@return The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resourceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resourceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "ResourceArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "setterMethodName" : "setResourceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSchema", "beanStyleSetterMethodName" : "setSchema", "c2jName" : "schema", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database schema.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #schema(String)}.\n@param schema a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #schema(String)", "deprecated" : false, "documentation" : "

The name of the database schema.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "schema", "fluentSetterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "schema", "getterDocumentation" : "

The name of the database schema.

\n@return The name of the database schema.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "schema", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "schema", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Schema", "sensitive" : false, "setterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.", "setterMethodName" : "setSchema", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : "

The name of the database schema.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSecretArn", "beanStyleSetterMethodName" : "setSecretArn", "c2jName" : "secretArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #secretArn(String)}.\n@param secretArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #secretArn(String)", "deprecated" : false, "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "secretArn", "fluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "secretArn", "getterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@return The name or ARN of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "secretArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "secretArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SecretArn", "sensitive" : false, "setterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.", "setterMethodName" : "setSecretArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "resourceArn", "secretArn" ], "shapeName" : "BeginTransactionRequest", "simpleMethod" : false, "unmarshaller" : null, "variable" : { "variableDeclarationType" : "BeginTransactionRequest", "variableName" : "beginTransactionRequest", "variableType" : "BeginTransactionRequest", "documentation" : null, "simpleType" : "BeginTransactionRequest", "variableSetterType" : "BeginTransactionRequest" }, "wrapper" : false, "xmlNamespace" : null }, "BeginTransactionResponse" : { "c2jName" : "BeginTransactionResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The response elements represent the output of a request to start a SQL transaction.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getTransactionId", "beanStyleSetterMethodName" : "setTransactionId", "c2jName" : "transactionId", "c2jShape" : "Id", "defaultConsumerFluentSetterDocumentation" : "

The transaction ID of the transaction started by the call.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionId(String)}.\n@param transactionId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionId(String)", "deprecated" : false, "documentation" : "

The transaction ID of the transaction started by the call.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionId", "fluentSetterDocumentation" : "

The transaction ID of the transaction started by the call.

\n@param transactionId The transaction ID of the transaction started by the call.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionId", "getterDocumentation" : "

The transaction ID of the transaction started by the call.

\n@return The transaction ID of the transaction started by the call.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionId", "sensitive" : false, "setterDocumentation" : "

The transaction ID of the transaction started by the call.

\n@param transactionId The transaction ID of the transaction started by the call.", "setterMethodName" : "setTransactionId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : "

The transaction ID of the transaction started by the call.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "TransactionId" : { "beanStyleGetterMethodName" : "getTransactionId", "beanStyleSetterMethodName" : "setTransactionId", "c2jName" : "transactionId", "c2jShape" : "Id", "defaultConsumerFluentSetterDocumentation" : "

The transaction ID of the transaction started by the call.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionId(String)}.\n@param transactionId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionId(String)", "deprecated" : false, "documentation" : "

The transaction ID of the transaction started by the call.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionId", "fluentSetterDocumentation" : "

The transaction ID of the transaction started by the call.

\n@param transactionId The transaction ID of the transaction started by the call.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionId", "getterDocumentation" : "

The transaction ID of the transaction started by the call.

\n@return The transaction ID of the transaction started by the call.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionId", "sensitive" : false, "setterDocumentation" : "

The transaction ID of the transaction started by the call.

\n@param transactionId The transaction ID of the transaction started by the call.", "setterMethodName" : "setTransactionId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : "

The transaction ID of the transaction started by the call.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getTransactionId", "beanStyleSetterMethodName" : "setTransactionId", "c2jName" : "transactionId", "c2jShape" : "Id", "defaultConsumerFluentSetterDocumentation" : "

The transaction ID of the transaction started by the call.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionId(String)}.\n@param transactionId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionId(String)", "deprecated" : false, "documentation" : "

The transaction ID of the transaction started by the call.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionId", "fluentSetterDocumentation" : "

The transaction ID of the transaction started by the call.

\n@param transactionId The transaction ID of the transaction started by the call.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionId", "getterDocumentation" : "

The transaction ID of the transaction started by the call.

\n@return The transaction ID of the transaction started by the call.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionId", "sensitive" : false, "setterDocumentation" : "

The transaction ID of the transaction started by the call.

\n@param transactionId The transaction ID of the transaction started by the call.", "setterMethodName" : "setTransactionId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : "

The transaction ID of the transaction started by the call.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "BeginTransactionResponse", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "BeginTransactionResponse", "variableName" : "beginTransactionResponse", "variableType" : "BeginTransactionResponse", "documentation" : null, "simpleType" : "BeginTransactionResponse", "variableSetterType" : "BeginTransactionResponse" }, "wrapper" : false, "xmlNamespace" : null }, "ColumnMetadata" : { "c2jName" : "ColumnMetadata", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

Contains the metadata for a column.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getArrayBaseColumnType", "beanStyleSetterMethodName" : "setArrayBaseColumnType", "c2jName" : "arrayBaseColumnType", "c2jShape" : "Integer", "defaultConsumerFluentSetterDocumentation" : "

The type of the column.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #arrayBaseColumnType(Integer)}.\n@param arrayBaseColumnType a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #arrayBaseColumnType(Integer)", "deprecated" : false, "documentation" : "

The type of the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "arrayBaseColumnType", "fluentSetterDocumentation" : "

The type of the column.

\n@param arrayBaseColumnType The type of the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "arrayBaseColumnType", "getterDocumentation" : "

The type of the column.

\n@return The type of the column.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "arrayBaseColumnType", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "arrayBaseColumnType", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "ArrayBaseColumnType", "sensitive" : false, "setterDocumentation" : "

The type of the column.

\n@param arrayBaseColumnType The type of the column.", "setterMethodName" : "setArrayBaseColumnType", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "arrayBaseColumnType", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "arrayBaseColumnType", "variableType" : "Integer", "documentation" : "

The type of the column.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getIsAutoIncrement", "beanStyleSetterMethodName" : "setIsAutoIncrement", "c2jName" : "isAutoIncrement", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether the column increments automatically.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isAutoIncrement(Boolean)}.\n@param isAutoIncrement a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isAutoIncrement(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether the column increments automatically.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isAutoIncrement", "fluentSetterDocumentation" : "

A value that indicates whether the column increments automatically.

\n@param isAutoIncrement A value that indicates whether the column increments automatically.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isAutoIncrement", "getterDocumentation" : "

A value that indicates whether the column increments automatically.

\n@return A value that indicates whether the column increments automatically.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isAutoIncrement", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isAutoIncrement", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsAutoIncrement", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether the column increments automatically.

\n@param isAutoIncrement A value that indicates whether the column increments automatically.", "setterMethodName" : "setIsAutoIncrement", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isAutoIncrement", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isAutoIncrement", "variableType" : "Boolean", "documentation" : "

A value that indicates whether the column increments automatically.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getIsCaseSensitive", "beanStyleSetterMethodName" : "setIsCaseSensitive", "c2jName" : "isCaseSensitive", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether the column is case-sensitive.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isCaseSensitive(Boolean)}.\n@param isCaseSensitive a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isCaseSensitive(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether the column is case-sensitive.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isCaseSensitive", "fluentSetterDocumentation" : "

A value that indicates whether the column is case-sensitive.

\n@param isCaseSensitive A value that indicates whether the column is case-sensitive.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isCaseSensitive", "getterDocumentation" : "

A value that indicates whether the column is case-sensitive.

\n@return A value that indicates whether the column is case-sensitive.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isCaseSensitive", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isCaseSensitive", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsCaseSensitive", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether the column is case-sensitive.

\n@param isCaseSensitive A value that indicates whether the column is case-sensitive.", "setterMethodName" : "setIsCaseSensitive", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isCaseSensitive", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isCaseSensitive", "variableType" : "Boolean", "documentation" : "

A value that indicates whether the column is case-sensitive.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getIsCurrency", "beanStyleSetterMethodName" : "setIsCurrency", "c2jName" : "isCurrency", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether the column contains currency values.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isCurrency(Boolean)}.\n@param isCurrency a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isCurrency(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether the column contains currency values.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isCurrency", "fluentSetterDocumentation" : "

A value that indicates whether the column contains currency values.

\n@param isCurrency A value that indicates whether the column contains currency values.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isCurrency", "getterDocumentation" : "

A value that indicates whether the column contains currency values.

\n@return A value that indicates whether the column contains currency values.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isCurrency", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isCurrency", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsCurrency", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether the column contains currency values.

\n@param isCurrency A value that indicates whether the column contains currency values.", "setterMethodName" : "setIsCurrency", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isCurrency", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isCurrency", "variableType" : "Boolean", "documentation" : "

A value that indicates whether the column contains currency values.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getIsSigned", "beanStyleSetterMethodName" : "setIsSigned", "c2jName" : "isSigned", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether an integer column is signed.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isSigned(Boolean)}.\n@param isSigned a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isSigned(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether an integer column is signed.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isSigned", "fluentSetterDocumentation" : "

A value that indicates whether an integer column is signed.

\n@param isSigned A value that indicates whether an integer column is signed.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isSigned", "getterDocumentation" : "

A value that indicates whether an integer column is signed.

\n@return A value that indicates whether an integer column is signed.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isSigned", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isSigned", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsSigned", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether an integer column is signed.

\n@param isSigned A value that indicates whether an integer column is signed.", "setterMethodName" : "setIsSigned", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isSigned", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isSigned", "variableType" : "Boolean", "documentation" : "

A value that indicates whether an integer column is signed.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getLabel", "beanStyleSetterMethodName" : "setLabel", "c2jName" : "label", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

The label for the column.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #label(String)}.\n@param label a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #label(String)", "deprecated" : false, "documentation" : "

The label for the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "label", "fluentSetterDocumentation" : "

The label for the column.

\n@param label The label for the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "label", "getterDocumentation" : "

The label for the column.

\n@return The label for the column.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "label", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "label", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Label", "sensitive" : false, "setterDocumentation" : "

The label for the column.

\n@param label The label for the column.", "setterMethodName" : "setLabel", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "label", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "label", "variableType" : "String", "documentation" : "

The label for the column.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getName", "beanStyleSetterMethodName" : "setName", "c2jName" : "name", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

The name of the column.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #name(String)}.\n@param name a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #name(String)", "deprecated" : false, "documentation" : "

The name of the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "name", "fluentSetterDocumentation" : "

The name of the column.

\n@param name The name of the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "name", "getterDocumentation" : "

The name of the column.

\n@return The name of the column.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "name", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "name", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Name", "sensitive" : false, "setterDocumentation" : "

The name of the column.

\n@param name The name of the column.", "setterMethodName" : "setName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "

The name of the column.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getNullable", "beanStyleSetterMethodName" : "setNullable", "c2jName" : "nullable", "c2jShape" : "Integer", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether the column is nullable.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #nullable(Integer)}.\n@param nullable a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #nullable(Integer)", "deprecated" : false, "documentation" : "

A value that indicates whether the column is nullable.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "nullable", "fluentSetterDocumentation" : "

A value that indicates whether the column is nullable.

\n@param nullable A value that indicates whether the column is nullable.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "nullable", "getterDocumentation" : "

A value that indicates whether the column is nullable.

\n@return A value that indicates whether the column is nullable.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "nullable", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "nullable", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "Nullable", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether the column is nullable.

\n@param nullable A value that indicates whether the column is nullable.", "setterMethodName" : "setNullable", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "nullable", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "nullable", "variableType" : "Integer", "documentation" : "

A value that indicates whether the column is nullable.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getPrecision", "beanStyleSetterMethodName" : "setPrecision", "c2jName" : "precision", "c2jShape" : "Integer", "defaultConsumerFluentSetterDocumentation" : "

The precision value of a decimal number column.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #precision(Integer)}.\n@param precision a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #precision(Integer)", "deprecated" : false, "documentation" : "

The precision value of a decimal number column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "precision", "fluentSetterDocumentation" : "

The precision value of a decimal number column.

\n@param precision The precision value of a decimal number column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "precision", "getterDocumentation" : "

The precision value of a decimal number column.

\n@return The precision value of a decimal number column.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "precision", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "precision", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "Precision", "sensitive" : false, "setterDocumentation" : "

The precision value of a decimal number column.

\n@param precision The precision value of a decimal number column.", "setterMethodName" : "setPrecision", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "precision", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "precision", "variableType" : "Integer", "documentation" : "

The precision value of a decimal number column.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getScale", "beanStyleSetterMethodName" : "setScale", "c2jName" : "scale", "c2jShape" : "Integer", "defaultConsumerFluentSetterDocumentation" : "

The scale value of a decimal number column.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #scale(Integer)}.\n@param scale a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #scale(Integer)", "deprecated" : false, "documentation" : "

The scale value of a decimal number column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "scale", "fluentSetterDocumentation" : "

The scale value of a decimal number column.

\n@param scale The scale value of a decimal number column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "scale", "getterDocumentation" : "

The scale value of a decimal number column.

\n@return The scale value of a decimal number column.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "scale", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "scale", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "Scale", "sensitive" : false, "setterDocumentation" : "

The scale value of a decimal number column.

\n@param scale The scale value of a decimal number column.", "setterMethodName" : "setScale", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "scale", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "scale", "variableType" : "Integer", "documentation" : "

The scale value of a decimal number column.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSchemaName", "beanStyleSetterMethodName" : "setSchemaName", "c2jName" : "schemaName", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

The name of the schema that owns the table that includes the column.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #schemaName(String)}.\n@param schemaName a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #schemaName(String)", "deprecated" : false, "documentation" : "

The name of the schema that owns the table that includes the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "schemaName", "fluentSetterDocumentation" : "

The name of the schema that owns the table that includes the column.

\n@param schemaName The name of the schema that owns the table that includes the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "schemaName", "getterDocumentation" : "

The name of the schema that owns the table that includes the column.

\n@return The name of the schema that owns the table that includes the column.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "schemaName", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "schemaName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SchemaName", "sensitive" : false, "setterDocumentation" : "

The name of the schema that owns the table that includes the column.

\n@param schemaName The name of the schema that owns the table that includes the column.", "setterMethodName" : "setSchemaName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "schemaName", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "schemaName", "variableType" : "String", "documentation" : "

The name of the schema that owns the table that includes the column.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getTableName", "beanStyleSetterMethodName" : "setTableName", "c2jName" : "tableName", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

The name of the table that includes the column.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #tableName(String)}.\n@param tableName a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #tableName(String)", "deprecated" : false, "documentation" : "

The name of the table that includes the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "tableName", "fluentSetterDocumentation" : "

The name of the table that includes the column.

\n@param tableName The name of the table that includes the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "tableName", "getterDocumentation" : "

The name of the table that includes the column.

\n@return The name of the table that includes the column.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "tableName", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "tableName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TableName", "sensitive" : false, "setterDocumentation" : "

The name of the table that includes the column.

\n@param tableName The name of the table that includes the column.", "setterMethodName" : "setTableName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "tableName", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "tableName", "variableType" : "String", "documentation" : "

The name of the table that includes the column.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getType", "beanStyleSetterMethodName" : "setType", "c2jName" : "type", "c2jShape" : "Integer", "defaultConsumerFluentSetterDocumentation" : "

The type of the column.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #type(Integer)}.\n@param type a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #type(Integer)", "deprecated" : false, "documentation" : "

The type of the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "type", "fluentSetterDocumentation" : "

The type of the column.

\n@param type The type of the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "type", "getterDocumentation" : "

The type of the column.

\n@return The type of the column.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "type", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "type", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "Type", "sensitive" : false, "setterDocumentation" : "

The type of the column.

\n@param type The type of the column.", "setterMethodName" : "setType", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "type", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "type", "variableType" : "Integer", "documentation" : "

The type of the column.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getTypeName", "beanStyleSetterMethodName" : "setTypeName", "c2jName" : "typeName", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

The database-specific data type of the column.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #typeName(String)}.\n@param typeName a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #typeName(String)", "deprecated" : false, "documentation" : "

The database-specific data type of the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "typeName", "fluentSetterDocumentation" : "

The database-specific data type of the column.

\n@param typeName The database-specific data type of the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "typeName", "getterDocumentation" : "

The database-specific data type of the column.

\n@return The database-specific data type of the column.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "typeName", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "typeName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TypeName", "sensitive" : false, "setterDocumentation" : "

The database-specific data type of the column.

\n@param typeName The database-specific data type of the column.", "setterMethodName" : "setTypeName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "typeName", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "typeName", "variableType" : "String", "documentation" : "

The database-specific data type of the column.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ArrayBaseColumnType" : { "beanStyleGetterMethodName" : "getArrayBaseColumnType", "beanStyleSetterMethodName" : "setArrayBaseColumnType", "c2jName" : "arrayBaseColumnType", "c2jShape" : "Integer", "defaultConsumerFluentSetterDocumentation" : "

The type of the column.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #arrayBaseColumnType(Integer)}.\n@param arrayBaseColumnType a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #arrayBaseColumnType(Integer)", "deprecated" : false, "documentation" : "

The type of the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "arrayBaseColumnType", "fluentSetterDocumentation" : "

The type of the column.

\n@param arrayBaseColumnType The type of the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "arrayBaseColumnType", "getterDocumentation" : "

The type of the column.

\n@return The type of the column.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "arrayBaseColumnType", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "arrayBaseColumnType", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "ArrayBaseColumnType", "sensitive" : false, "setterDocumentation" : "

The type of the column.

\n@param arrayBaseColumnType The type of the column.", "setterMethodName" : "setArrayBaseColumnType", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "arrayBaseColumnType", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "arrayBaseColumnType", "variableType" : "Integer", "documentation" : "

The type of the column.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "IsAutoIncrement" : { "beanStyleGetterMethodName" : "getIsAutoIncrement", "beanStyleSetterMethodName" : "setIsAutoIncrement", "c2jName" : "isAutoIncrement", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether the column increments automatically.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isAutoIncrement(Boolean)}.\n@param isAutoIncrement a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isAutoIncrement(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether the column increments automatically.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isAutoIncrement", "fluentSetterDocumentation" : "

A value that indicates whether the column increments automatically.

\n@param isAutoIncrement A value that indicates whether the column increments automatically.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isAutoIncrement", "getterDocumentation" : "

A value that indicates whether the column increments automatically.

\n@return A value that indicates whether the column increments automatically.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isAutoIncrement", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isAutoIncrement", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsAutoIncrement", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether the column increments automatically.

\n@param isAutoIncrement A value that indicates whether the column increments automatically.", "setterMethodName" : "setIsAutoIncrement", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isAutoIncrement", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isAutoIncrement", "variableType" : "Boolean", "documentation" : "

A value that indicates whether the column increments automatically.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "IsCaseSensitive" : { "beanStyleGetterMethodName" : "getIsCaseSensitive", "beanStyleSetterMethodName" : "setIsCaseSensitive", "c2jName" : "isCaseSensitive", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether the column is case-sensitive.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isCaseSensitive(Boolean)}.\n@param isCaseSensitive a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isCaseSensitive(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether the column is case-sensitive.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isCaseSensitive", "fluentSetterDocumentation" : "

A value that indicates whether the column is case-sensitive.

\n@param isCaseSensitive A value that indicates whether the column is case-sensitive.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isCaseSensitive", "getterDocumentation" : "

A value that indicates whether the column is case-sensitive.

\n@return A value that indicates whether the column is case-sensitive.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isCaseSensitive", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isCaseSensitive", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsCaseSensitive", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether the column is case-sensitive.

\n@param isCaseSensitive A value that indicates whether the column is case-sensitive.", "setterMethodName" : "setIsCaseSensitive", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isCaseSensitive", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isCaseSensitive", "variableType" : "Boolean", "documentation" : "

A value that indicates whether the column is case-sensitive.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "IsCurrency" : { "beanStyleGetterMethodName" : "getIsCurrency", "beanStyleSetterMethodName" : "setIsCurrency", "c2jName" : "isCurrency", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether the column contains currency values.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isCurrency(Boolean)}.\n@param isCurrency a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isCurrency(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether the column contains currency values.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isCurrency", "fluentSetterDocumentation" : "

A value that indicates whether the column contains currency values.

\n@param isCurrency A value that indicates whether the column contains currency values.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isCurrency", "getterDocumentation" : "

A value that indicates whether the column contains currency values.

\n@return A value that indicates whether the column contains currency values.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isCurrency", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isCurrency", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsCurrency", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether the column contains currency values.

\n@param isCurrency A value that indicates whether the column contains currency values.", "setterMethodName" : "setIsCurrency", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isCurrency", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isCurrency", "variableType" : "Boolean", "documentation" : "

A value that indicates whether the column contains currency values.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "IsSigned" : { "beanStyleGetterMethodName" : "getIsSigned", "beanStyleSetterMethodName" : "setIsSigned", "c2jName" : "isSigned", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether an integer column is signed.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isSigned(Boolean)}.\n@param isSigned a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isSigned(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether an integer column is signed.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isSigned", "fluentSetterDocumentation" : "

A value that indicates whether an integer column is signed.

\n@param isSigned A value that indicates whether an integer column is signed.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isSigned", "getterDocumentation" : "

A value that indicates whether an integer column is signed.

\n@return A value that indicates whether an integer column is signed.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isSigned", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isSigned", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsSigned", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether an integer column is signed.

\n@param isSigned A value that indicates whether an integer column is signed.", "setterMethodName" : "setIsSigned", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isSigned", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isSigned", "variableType" : "Boolean", "documentation" : "

A value that indicates whether an integer column is signed.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Label" : { "beanStyleGetterMethodName" : "getLabel", "beanStyleSetterMethodName" : "setLabel", "c2jName" : "label", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

The label for the column.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #label(String)}.\n@param label a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #label(String)", "deprecated" : false, "documentation" : "

The label for the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "label", "fluentSetterDocumentation" : "

The label for the column.

\n@param label The label for the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "label", "getterDocumentation" : "

The label for the column.

\n@return The label for the column.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "label", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "label", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Label", "sensitive" : false, "setterDocumentation" : "

The label for the column.

\n@param label The label for the column.", "setterMethodName" : "setLabel", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "label", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "label", "variableType" : "String", "documentation" : "

The label for the column.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Name" : { "beanStyleGetterMethodName" : "getName", "beanStyleSetterMethodName" : "setName", "c2jName" : "name", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

The name of the column.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #name(String)}.\n@param name a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #name(String)", "deprecated" : false, "documentation" : "

The name of the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "name", "fluentSetterDocumentation" : "

The name of the column.

\n@param name The name of the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "name", "getterDocumentation" : "

The name of the column.

\n@return The name of the column.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "name", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "name", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Name", "sensitive" : false, "setterDocumentation" : "

The name of the column.

\n@param name The name of the column.", "setterMethodName" : "setName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "

The name of the column.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Nullable" : { "beanStyleGetterMethodName" : "getNullable", "beanStyleSetterMethodName" : "setNullable", "c2jName" : "nullable", "c2jShape" : "Integer", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether the column is nullable.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #nullable(Integer)}.\n@param nullable a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #nullable(Integer)", "deprecated" : false, "documentation" : "

A value that indicates whether the column is nullable.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "nullable", "fluentSetterDocumentation" : "

A value that indicates whether the column is nullable.

\n@param nullable A value that indicates whether the column is nullable.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "nullable", "getterDocumentation" : "

A value that indicates whether the column is nullable.

\n@return A value that indicates whether the column is nullable.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "nullable", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "nullable", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "Nullable", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether the column is nullable.

\n@param nullable A value that indicates whether the column is nullable.", "setterMethodName" : "setNullable", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "nullable", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "nullable", "variableType" : "Integer", "documentation" : "

A value that indicates whether the column is nullable.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Precision" : { "beanStyleGetterMethodName" : "getPrecision", "beanStyleSetterMethodName" : "setPrecision", "c2jName" : "precision", "c2jShape" : "Integer", "defaultConsumerFluentSetterDocumentation" : "

The precision value of a decimal number column.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #precision(Integer)}.\n@param precision a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #precision(Integer)", "deprecated" : false, "documentation" : "

The precision value of a decimal number column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "precision", "fluentSetterDocumentation" : "

The precision value of a decimal number column.

\n@param precision The precision value of a decimal number column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "precision", "getterDocumentation" : "

The precision value of a decimal number column.

\n@return The precision value of a decimal number column.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "precision", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "precision", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "Precision", "sensitive" : false, "setterDocumentation" : "

The precision value of a decimal number column.

\n@param precision The precision value of a decimal number column.", "setterMethodName" : "setPrecision", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "precision", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "precision", "variableType" : "Integer", "documentation" : "

The precision value of a decimal number column.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Scale" : { "beanStyleGetterMethodName" : "getScale", "beanStyleSetterMethodName" : "setScale", "c2jName" : "scale", "c2jShape" : "Integer", "defaultConsumerFluentSetterDocumentation" : "

The scale value of a decimal number column.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #scale(Integer)}.\n@param scale a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #scale(Integer)", "deprecated" : false, "documentation" : "

The scale value of a decimal number column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "scale", "fluentSetterDocumentation" : "

The scale value of a decimal number column.

\n@param scale The scale value of a decimal number column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "scale", "getterDocumentation" : "

The scale value of a decimal number column.

\n@return The scale value of a decimal number column.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "scale", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "scale", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "Scale", "sensitive" : false, "setterDocumentation" : "

The scale value of a decimal number column.

\n@param scale The scale value of a decimal number column.", "setterMethodName" : "setScale", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "scale", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "scale", "variableType" : "Integer", "documentation" : "

The scale value of a decimal number column.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "SchemaName" : { "beanStyleGetterMethodName" : "getSchemaName", "beanStyleSetterMethodName" : "setSchemaName", "c2jName" : "schemaName", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

The name of the schema that owns the table that includes the column.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #schemaName(String)}.\n@param schemaName a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #schemaName(String)", "deprecated" : false, "documentation" : "

The name of the schema that owns the table that includes the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "schemaName", "fluentSetterDocumentation" : "

The name of the schema that owns the table that includes the column.

\n@param schemaName The name of the schema that owns the table that includes the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "schemaName", "getterDocumentation" : "

The name of the schema that owns the table that includes the column.

\n@return The name of the schema that owns the table that includes the column.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "schemaName", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "schemaName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SchemaName", "sensitive" : false, "setterDocumentation" : "

The name of the schema that owns the table that includes the column.

\n@param schemaName The name of the schema that owns the table that includes the column.", "setterMethodName" : "setSchemaName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "schemaName", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "schemaName", "variableType" : "String", "documentation" : "

The name of the schema that owns the table that includes the column.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "TableName" : { "beanStyleGetterMethodName" : "getTableName", "beanStyleSetterMethodName" : "setTableName", "c2jName" : "tableName", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

The name of the table that includes the column.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #tableName(String)}.\n@param tableName a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #tableName(String)", "deprecated" : false, "documentation" : "

The name of the table that includes the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "tableName", "fluentSetterDocumentation" : "

The name of the table that includes the column.

\n@param tableName The name of the table that includes the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "tableName", "getterDocumentation" : "

The name of the table that includes the column.

\n@return The name of the table that includes the column.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "tableName", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "tableName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TableName", "sensitive" : false, "setterDocumentation" : "

The name of the table that includes the column.

\n@param tableName The name of the table that includes the column.", "setterMethodName" : "setTableName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "tableName", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "tableName", "variableType" : "String", "documentation" : "

The name of the table that includes the column.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Type" : { "beanStyleGetterMethodName" : "getType", "beanStyleSetterMethodName" : "setType", "c2jName" : "type", "c2jShape" : "Integer", "defaultConsumerFluentSetterDocumentation" : "

The type of the column.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #type(Integer)}.\n@param type a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #type(Integer)", "deprecated" : false, "documentation" : "

The type of the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "type", "fluentSetterDocumentation" : "

The type of the column.

\n@param type The type of the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "type", "getterDocumentation" : "

The type of the column.

\n@return The type of the column.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "type", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "type", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "Type", "sensitive" : false, "setterDocumentation" : "

The type of the column.

\n@param type The type of the column.", "setterMethodName" : "setType", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "type", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "type", "variableType" : "Integer", "documentation" : "

The type of the column.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "TypeName" : { "beanStyleGetterMethodName" : "getTypeName", "beanStyleSetterMethodName" : "setTypeName", "c2jName" : "typeName", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

The database-specific data type of the column.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #typeName(String)}.\n@param typeName a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #typeName(String)", "deprecated" : false, "documentation" : "

The database-specific data type of the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "typeName", "fluentSetterDocumentation" : "

The database-specific data type of the column.

\n@param typeName The database-specific data type of the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "typeName", "getterDocumentation" : "

The database-specific data type of the column.

\n@return The database-specific data type of the column.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "typeName", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "typeName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TypeName", "sensitive" : false, "setterDocumentation" : "

The database-specific data type of the column.

\n@param typeName The database-specific data type of the column.", "setterMethodName" : "setTypeName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "typeName", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "typeName", "variableType" : "String", "documentation" : "

The database-specific data type of the column.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getArrayBaseColumnType", "beanStyleSetterMethodName" : "setArrayBaseColumnType", "c2jName" : "arrayBaseColumnType", "c2jShape" : "Integer", "defaultConsumerFluentSetterDocumentation" : "

The type of the column.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #arrayBaseColumnType(Integer)}.\n@param arrayBaseColumnType a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #arrayBaseColumnType(Integer)", "deprecated" : false, "documentation" : "

The type of the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "arrayBaseColumnType", "fluentSetterDocumentation" : "

The type of the column.

\n@param arrayBaseColumnType The type of the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "arrayBaseColumnType", "getterDocumentation" : "

The type of the column.

\n@return The type of the column.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "arrayBaseColumnType", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "arrayBaseColumnType", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "ArrayBaseColumnType", "sensitive" : false, "setterDocumentation" : "

The type of the column.

\n@param arrayBaseColumnType The type of the column.", "setterMethodName" : "setArrayBaseColumnType", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "arrayBaseColumnType", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "arrayBaseColumnType", "variableType" : "Integer", "documentation" : "

The type of the column.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getIsAutoIncrement", "beanStyleSetterMethodName" : "setIsAutoIncrement", "c2jName" : "isAutoIncrement", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether the column increments automatically.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isAutoIncrement(Boolean)}.\n@param isAutoIncrement a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isAutoIncrement(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether the column increments automatically.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isAutoIncrement", "fluentSetterDocumentation" : "

A value that indicates whether the column increments automatically.

\n@param isAutoIncrement A value that indicates whether the column increments automatically.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isAutoIncrement", "getterDocumentation" : "

A value that indicates whether the column increments automatically.

\n@return A value that indicates whether the column increments automatically.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isAutoIncrement", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isAutoIncrement", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsAutoIncrement", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether the column increments automatically.

\n@param isAutoIncrement A value that indicates whether the column increments automatically.", "setterMethodName" : "setIsAutoIncrement", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isAutoIncrement", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isAutoIncrement", "variableType" : "Boolean", "documentation" : "

A value that indicates whether the column increments automatically.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getIsCaseSensitive", "beanStyleSetterMethodName" : "setIsCaseSensitive", "c2jName" : "isCaseSensitive", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether the column is case-sensitive.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isCaseSensitive(Boolean)}.\n@param isCaseSensitive a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isCaseSensitive(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether the column is case-sensitive.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isCaseSensitive", "fluentSetterDocumentation" : "

A value that indicates whether the column is case-sensitive.

\n@param isCaseSensitive A value that indicates whether the column is case-sensitive.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isCaseSensitive", "getterDocumentation" : "

A value that indicates whether the column is case-sensitive.

\n@return A value that indicates whether the column is case-sensitive.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isCaseSensitive", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isCaseSensitive", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsCaseSensitive", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether the column is case-sensitive.

\n@param isCaseSensitive A value that indicates whether the column is case-sensitive.", "setterMethodName" : "setIsCaseSensitive", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isCaseSensitive", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isCaseSensitive", "variableType" : "Boolean", "documentation" : "

A value that indicates whether the column is case-sensitive.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getIsCurrency", "beanStyleSetterMethodName" : "setIsCurrency", "c2jName" : "isCurrency", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether the column contains currency values.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isCurrency(Boolean)}.\n@param isCurrency a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isCurrency(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether the column contains currency values.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isCurrency", "fluentSetterDocumentation" : "

A value that indicates whether the column contains currency values.

\n@param isCurrency A value that indicates whether the column contains currency values.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isCurrency", "getterDocumentation" : "

A value that indicates whether the column contains currency values.

\n@return A value that indicates whether the column contains currency values.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isCurrency", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isCurrency", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsCurrency", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether the column contains currency values.

\n@param isCurrency A value that indicates whether the column contains currency values.", "setterMethodName" : "setIsCurrency", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isCurrency", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isCurrency", "variableType" : "Boolean", "documentation" : "

A value that indicates whether the column contains currency values.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getIsSigned", "beanStyleSetterMethodName" : "setIsSigned", "c2jName" : "isSigned", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether an integer column is signed.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isSigned(Boolean)}.\n@param isSigned a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isSigned(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether an integer column is signed.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isSigned", "fluentSetterDocumentation" : "

A value that indicates whether an integer column is signed.

\n@param isSigned A value that indicates whether an integer column is signed.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isSigned", "getterDocumentation" : "

A value that indicates whether an integer column is signed.

\n@return A value that indicates whether an integer column is signed.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isSigned", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isSigned", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsSigned", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether an integer column is signed.

\n@param isSigned A value that indicates whether an integer column is signed.", "setterMethodName" : "setIsSigned", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isSigned", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isSigned", "variableType" : "Boolean", "documentation" : "

A value that indicates whether an integer column is signed.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getLabel", "beanStyleSetterMethodName" : "setLabel", "c2jName" : "label", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

The label for the column.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #label(String)}.\n@param label a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #label(String)", "deprecated" : false, "documentation" : "

The label for the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "label", "fluentSetterDocumentation" : "

The label for the column.

\n@param label The label for the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "label", "getterDocumentation" : "

The label for the column.

\n@return The label for the column.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "label", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "label", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Label", "sensitive" : false, "setterDocumentation" : "

The label for the column.

\n@param label The label for the column.", "setterMethodName" : "setLabel", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "label", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "label", "variableType" : "String", "documentation" : "

The label for the column.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getName", "beanStyleSetterMethodName" : "setName", "c2jName" : "name", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

The name of the column.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #name(String)}.\n@param name a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #name(String)", "deprecated" : false, "documentation" : "

The name of the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "name", "fluentSetterDocumentation" : "

The name of the column.

\n@param name The name of the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "name", "getterDocumentation" : "

The name of the column.

\n@return The name of the column.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "name", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "name", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Name", "sensitive" : false, "setterDocumentation" : "

The name of the column.

\n@param name The name of the column.", "setterMethodName" : "setName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "

The name of the column.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getNullable", "beanStyleSetterMethodName" : "setNullable", "c2jName" : "nullable", "c2jShape" : "Integer", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether the column is nullable.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #nullable(Integer)}.\n@param nullable a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #nullable(Integer)", "deprecated" : false, "documentation" : "

A value that indicates whether the column is nullable.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "nullable", "fluentSetterDocumentation" : "

A value that indicates whether the column is nullable.

\n@param nullable A value that indicates whether the column is nullable.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "nullable", "getterDocumentation" : "

A value that indicates whether the column is nullable.

\n@return A value that indicates whether the column is nullable.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "nullable", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "nullable", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "Nullable", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether the column is nullable.

\n@param nullable A value that indicates whether the column is nullable.", "setterMethodName" : "setNullable", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "nullable", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "nullable", "variableType" : "Integer", "documentation" : "

A value that indicates whether the column is nullable.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getPrecision", "beanStyleSetterMethodName" : "setPrecision", "c2jName" : "precision", "c2jShape" : "Integer", "defaultConsumerFluentSetterDocumentation" : "

The precision value of a decimal number column.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #precision(Integer)}.\n@param precision a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #precision(Integer)", "deprecated" : false, "documentation" : "

The precision value of a decimal number column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "precision", "fluentSetterDocumentation" : "

The precision value of a decimal number column.

\n@param precision The precision value of a decimal number column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "precision", "getterDocumentation" : "

The precision value of a decimal number column.

\n@return The precision value of a decimal number column.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "precision", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "precision", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "Precision", "sensitive" : false, "setterDocumentation" : "

The precision value of a decimal number column.

\n@param precision The precision value of a decimal number column.", "setterMethodName" : "setPrecision", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "precision", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "precision", "variableType" : "Integer", "documentation" : "

The precision value of a decimal number column.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getScale", "beanStyleSetterMethodName" : "setScale", "c2jName" : "scale", "c2jShape" : "Integer", "defaultConsumerFluentSetterDocumentation" : "

The scale value of a decimal number column.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #scale(Integer)}.\n@param scale a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #scale(Integer)", "deprecated" : false, "documentation" : "

The scale value of a decimal number column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "scale", "fluentSetterDocumentation" : "

The scale value of a decimal number column.

\n@param scale The scale value of a decimal number column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "scale", "getterDocumentation" : "

The scale value of a decimal number column.

\n@return The scale value of a decimal number column.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "scale", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "scale", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "Scale", "sensitive" : false, "setterDocumentation" : "

The scale value of a decimal number column.

\n@param scale The scale value of a decimal number column.", "setterMethodName" : "setScale", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "scale", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "scale", "variableType" : "Integer", "documentation" : "

The scale value of a decimal number column.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSchemaName", "beanStyleSetterMethodName" : "setSchemaName", "c2jName" : "schemaName", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

The name of the schema that owns the table that includes the column.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #schemaName(String)}.\n@param schemaName a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #schemaName(String)", "deprecated" : false, "documentation" : "

The name of the schema that owns the table that includes the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "schemaName", "fluentSetterDocumentation" : "

The name of the schema that owns the table that includes the column.

\n@param schemaName The name of the schema that owns the table that includes the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "schemaName", "getterDocumentation" : "

The name of the schema that owns the table that includes the column.

\n@return The name of the schema that owns the table that includes the column.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "schemaName", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "schemaName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SchemaName", "sensitive" : false, "setterDocumentation" : "

The name of the schema that owns the table that includes the column.

\n@param schemaName The name of the schema that owns the table that includes the column.", "setterMethodName" : "setSchemaName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "schemaName", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "schemaName", "variableType" : "String", "documentation" : "

The name of the schema that owns the table that includes the column.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getTableName", "beanStyleSetterMethodName" : "setTableName", "c2jName" : "tableName", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

The name of the table that includes the column.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #tableName(String)}.\n@param tableName a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #tableName(String)", "deprecated" : false, "documentation" : "

The name of the table that includes the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "tableName", "fluentSetterDocumentation" : "

The name of the table that includes the column.

\n@param tableName The name of the table that includes the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "tableName", "getterDocumentation" : "

The name of the table that includes the column.

\n@return The name of the table that includes the column.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "tableName", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "tableName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TableName", "sensitive" : false, "setterDocumentation" : "

The name of the table that includes the column.

\n@param tableName The name of the table that includes the column.", "setterMethodName" : "setTableName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "tableName", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "tableName", "variableType" : "String", "documentation" : "

The name of the table that includes the column.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getType", "beanStyleSetterMethodName" : "setType", "c2jName" : "type", "c2jShape" : "Integer", "defaultConsumerFluentSetterDocumentation" : "

The type of the column.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #type(Integer)}.\n@param type a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #type(Integer)", "deprecated" : false, "documentation" : "

The type of the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "type", "fluentSetterDocumentation" : "

The type of the column.

\n@param type The type of the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "type", "getterDocumentation" : "

The type of the column.

\n@return The type of the column.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "type", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "type", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "Type", "sensitive" : false, "setterDocumentation" : "

The type of the column.

\n@param type The type of the column.", "setterMethodName" : "setType", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "type", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "type", "variableType" : "Integer", "documentation" : "

The type of the column.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getTypeName", "beanStyleSetterMethodName" : "setTypeName", "c2jName" : "typeName", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

The database-specific data type of the column.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #typeName(String)}.\n@param typeName a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #typeName(String)", "deprecated" : false, "documentation" : "

The database-specific data type of the column.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "typeName", "fluentSetterDocumentation" : "

The database-specific data type of the column.

\n@param typeName The database-specific data type of the column.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "typeName", "getterDocumentation" : "

The database-specific data type of the column.

\n@return The database-specific data type of the column.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "typeName", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "typeName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TypeName", "sensitive" : false, "setterDocumentation" : "

The database-specific data type of the column.

\n@param typeName The database-specific data type of the column.", "setterMethodName" : "setTypeName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "typeName", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "typeName", "variableType" : "String", "documentation" : "

The database-specific data type of the column.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "ColumnMetadata", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "ColumnMetadata", "variableName" : "columnMetadata", "variableType" : "ColumnMetadata", "documentation" : null, "simpleType" : "ColumnMetadata", "variableSetterType" : "ColumnMetadata" }, "wrapper" : false, "xmlNamespace" : null }, "CommitTransactionRequest" : { "c2jName" : "CommitTransactionRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The request parameters represent the input of a commit transaction request.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : { "action" : "CommitTransaction", "locationName" : null, "requestUri" : "/CommitTransaction", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "beanStyleGetterMethodName" : "getResourceArn", "beanStyleSetterMethodName" : "setResourceArn", "c2jName" : "resourceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceArn(String)}.\n@param resourceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resourceArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resourceArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@return The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resourceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resourceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "ResourceArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "setterMethodName" : "setResourceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSecretArn", "beanStyleSetterMethodName" : "setSecretArn", "c2jName" : "secretArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #secretArn(String)}.\n@param secretArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #secretArn(String)", "deprecated" : false, "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "secretArn", "fluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "secretArn", "getterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@return The name or ARN of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "secretArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "secretArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SecretArn", "sensitive" : false, "setterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.", "setterMethodName" : "setSecretArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getTransactionId", "beanStyleSetterMethodName" : "setTransactionId", "c2jName" : "transactionId", "c2jShape" : "Id", "defaultConsumerFluentSetterDocumentation" : "

The identifier of the transaction to end and commit.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionId(String)}.\n@param transactionId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionId(String)", "deprecated" : false, "documentation" : "

The identifier of the transaction to end and commit.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionId", "fluentSetterDocumentation" : "

The identifier of the transaction to end and commit.

\n@param transactionId The identifier of the transaction to end and commit.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionId", "getterDocumentation" : "

The identifier of the transaction to end and commit.

\n@return The identifier of the transaction to end and commit.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionId", "sensitive" : false, "setterDocumentation" : "

The identifier of the transaction to end and commit.

\n@param transactionId The identifier of the transaction to end and commit.", "setterMethodName" : "setTransactionId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : "

The identifier of the transaction to end and commit.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ResourceArn" : { "beanStyleGetterMethodName" : "getResourceArn", "beanStyleSetterMethodName" : "setResourceArn", "c2jName" : "resourceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceArn(String)}.\n@param resourceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resourceArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resourceArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@return The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resourceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resourceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "ResourceArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "setterMethodName" : "setResourceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "SecretArn" : { "beanStyleGetterMethodName" : "getSecretArn", "beanStyleSetterMethodName" : "setSecretArn", "c2jName" : "secretArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #secretArn(String)}.\n@param secretArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #secretArn(String)", "deprecated" : false, "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "secretArn", "fluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "secretArn", "getterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@return The name or ARN of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "secretArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "secretArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SecretArn", "sensitive" : false, "setterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.", "setterMethodName" : "setSecretArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "TransactionId" : { "beanStyleGetterMethodName" : "getTransactionId", "beanStyleSetterMethodName" : "setTransactionId", "c2jName" : "transactionId", "c2jShape" : "Id", "defaultConsumerFluentSetterDocumentation" : "

The identifier of the transaction to end and commit.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionId(String)}.\n@param transactionId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionId(String)", "deprecated" : false, "documentation" : "

The identifier of the transaction to end and commit.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionId", "fluentSetterDocumentation" : "

The identifier of the transaction to end and commit.

\n@param transactionId The identifier of the transaction to end and commit.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionId", "getterDocumentation" : "

The identifier of the transaction to end and commit.

\n@return The identifier of the transaction to end and commit.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionId", "sensitive" : false, "setterDocumentation" : "

The identifier of the transaction to end and commit.

\n@param transactionId The identifier of the transaction to end and commit.", "setterMethodName" : "setTransactionId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : "

The identifier of the transaction to end and commit.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getResourceArn", "beanStyleSetterMethodName" : "setResourceArn", "c2jName" : "resourceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceArn(String)}.\n@param resourceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resourceArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resourceArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@return The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resourceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resourceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "ResourceArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "setterMethodName" : "setResourceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSecretArn", "beanStyleSetterMethodName" : "setSecretArn", "c2jName" : "secretArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #secretArn(String)}.\n@param secretArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #secretArn(String)", "deprecated" : false, "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "secretArn", "fluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "secretArn", "getterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@return The name or ARN of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "secretArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "secretArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SecretArn", "sensitive" : false, "setterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.", "setterMethodName" : "setSecretArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getTransactionId", "beanStyleSetterMethodName" : "setTransactionId", "c2jName" : "transactionId", "c2jShape" : "Id", "defaultConsumerFluentSetterDocumentation" : "

The identifier of the transaction to end and commit.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionId(String)}.\n@param transactionId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionId(String)", "deprecated" : false, "documentation" : "

The identifier of the transaction to end and commit.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionId", "fluentSetterDocumentation" : "

The identifier of the transaction to end and commit.

\n@param transactionId The identifier of the transaction to end and commit.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionId", "getterDocumentation" : "

The identifier of the transaction to end and commit.

\n@return The identifier of the transaction to end and commit.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionId", "sensitive" : false, "setterDocumentation" : "

The identifier of the transaction to end and commit.

\n@param transactionId The identifier of the transaction to end and commit.", "setterMethodName" : "setTransactionId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : "

The identifier of the transaction to end and commit.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "resourceArn", "secretArn", "transactionId" ], "shapeName" : "CommitTransactionRequest", "simpleMethod" : false, "unmarshaller" : null, "variable" : { "variableDeclarationType" : "CommitTransactionRequest", "variableName" : "commitTransactionRequest", "variableType" : "CommitTransactionRequest", "documentation" : null, "simpleType" : "CommitTransactionRequest", "variableSetterType" : "CommitTransactionRequest" }, "wrapper" : false, "xmlNamespace" : null }, "CommitTransactionResponse" : { "c2jName" : "CommitTransactionResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The response elements represent the output of a commit transaction request.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getTransactionStatus", "beanStyleSetterMethodName" : "setTransactionStatus", "c2jName" : "transactionStatus", "c2jShape" : "TransactionStatus", "defaultConsumerFluentSetterDocumentation" : "

The status of the commit operation.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionStatus(String)}.\n@param transactionStatus a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionStatus(String)", "deprecated" : false, "documentation" : "

The status of the commit operation.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionStatus", "fluentSetterDocumentation" : "

The status of the commit operation.

\n@param transactionStatus The status of the commit operation.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionStatus", "getterDocumentation" : "

The status of the commit operation.

\n@return The status of the commit operation.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionStatus", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionStatus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionStatus", "sensitive" : false, "setterDocumentation" : "

The status of the commit operation.

\n@param transactionStatus The status of the commit operation.", "setterMethodName" : "setTransactionStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionStatus", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionStatus", "variableType" : "String", "documentation" : "

The status of the commit operation.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "TransactionStatus" : { "beanStyleGetterMethodName" : "getTransactionStatus", "beanStyleSetterMethodName" : "setTransactionStatus", "c2jName" : "transactionStatus", "c2jShape" : "TransactionStatus", "defaultConsumerFluentSetterDocumentation" : "

The status of the commit operation.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionStatus(String)}.\n@param transactionStatus a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionStatus(String)", "deprecated" : false, "documentation" : "

The status of the commit operation.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionStatus", "fluentSetterDocumentation" : "

The status of the commit operation.

\n@param transactionStatus The status of the commit operation.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionStatus", "getterDocumentation" : "

The status of the commit operation.

\n@return The status of the commit operation.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionStatus", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionStatus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionStatus", "sensitive" : false, "setterDocumentation" : "

The status of the commit operation.

\n@param transactionStatus The status of the commit operation.", "setterMethodName" : "setTransactionStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionStatus", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionStatus", "variableType" : "String", "documentation" : "

The status of the commit operation.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getTransactionStatus", "beanStyleSetterMethodName" : "setTransactionStatus", "c2jName" : "transactionStatus", "c2jShape" : "TransactionStatus", "defaultConsumerFluentSetterDocumentation" : "

The status of the commit operation.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionStatus(String)}.\n@param transactionStatus a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionStatus(String)", "deprecated" : false, "documentation" : "

The status of the commit operation.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionStatus", "fluentSetterDocumentation" : "

The status of the commit operation.

\n@param transactionStatus The status of the commit operation.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionStatus", "getterDocumentation" : "

The status of the commit operation.

\n@return The status of the commit operation.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionStatus", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionStatus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionStatus", "sensitive" : false, "setterDocumentation" : "

The status of the commit operation.

\n@param transactionStatus The status of the commit operation.", "setterMethodName" : "setTransactionStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionStatus", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionStatus", "variableType" : "String", "documentation" : "

The status of the commit operation.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "CommitTransactionResponse", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "CommitTransactionResponse", "variableName" : "commitTransactionResponse", "variableType" : "CommitTransactionResponse", "documentation" : null, "simpleType" : "CommitTransactionResponse", "variableSetterType" : "CommitTransactionResponse" }, "wrapper" : false, "xmlNamespace" : null }, "DecimalReturnType" : { "c2jName" : "DecimalReturnType", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "", "endpointDiscovery" : null, "enums" : [ { "name" : "DOUBLE_OR_LONG", "value" : "DOUBLE_OR_LONG" }, { "name" : "STRING", "value" : "STRING" } ], "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ ], "membersAsMap" : { }, "nonStreamingMembers" : [ ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "DecimalReturnType", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "DecimalReturnType", "variableName" : "decimalReturnType", "variableType" : "DecimalReturnType", "documentation" : null, "simpleType" : "DecimalReturnType", "variableSetterType" : "DecimalReturnType" }, "wrapper" : false, "xmlNamespace" : null }, "ExecuteSqlRequest" : { "c2jName" : "ExecuteSqlRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The request parameters represent the input of a request to run one or more SQL statements.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : { "action" : "ExecuteSql", "locationName" : null, "requestUri" : "/ExecuteSql", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "beanStyleGetterMethodName" : "getAwsSecretStoreArn", "beanStyleSetterMethodName" : "setAwsSecretStoreArn", "c2jName" : "awsSecretStoreArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #awsSecretStoreArn(String)}.\n@param awsSecretStoreArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #awsSecretStoreArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "awsSecretStoreArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

\n@param awsSecretStoreArn The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "awsSecretStoreArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

\n@return The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "awsSecretStoreArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "awsSecretStoreArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "AwsSecretStoreArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

\n@param awsSecretStoreArn The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.", "setterMethodName" : "setAwsSecretStoreArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "awsSecretStoreArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "awsSecretStoreArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getDatabase", "beanStyleSetterMethodName" : "setDatabase", "c2jName" : "database", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #database(String)}.\n@param database a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #database(String)", "deprecated" : false, "documentation" : "

The name of the database.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "database", "fluentSetterDocumentation" : "

The name of the database.

\n@param database The name of the database.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "database", "getterDocumentation" : "

The name of the database.

\n@return The name of the database.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "database", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "database", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Database", "sensitive" : false, "setterDocumentation" : "

The name of the database.

\n@param database The name of the database.", "setterMethodName" : "setDatabase", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : "

The name of the database.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getDbClusterOrInstanceArn", "beanStyleSetterMethodName" : "setDbClusterOrInstanceArn", "c2jName" : "dbClusterOrInstanceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The ARN of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #dbClusterOrInstanceArn(String)}.\n@param dbClusterOrInstanceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #dbClusterOrInstanceArn(String)", "deprecated" : false, "documentation" : "

The ARN of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "dbClusterOrInstanceArn", "fluentSetterDocumentation" : "

The ARN of the Aurora Serverless DB cluster.

\n@param dbClusterOrInstanceArn The ARN of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "dbClusterOrInstanceArn", "getterDocumentation" : "

The ARN of the Aurora Serverless DB cluster.

\n@return The ARN of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "dbClusterOrInstanceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "dbClusterOrInstanceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "DbClusterOrInstanceArn", "sensitive" : false, "setterDocumentation" : "

The ARN of the Aurora Serverless DB cluster.

\n@param dbClusterOrInstanceArn The ARN of the Aurora Serverless DB cluster.", "setterMethodName" : "setDbClusterOrInstanceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "dbClusterOrInstanceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "dbClusterOrInstanceArn", "variableType" : "String", "documentation" : "

The ARN of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSchema", "beanStyleSetterMethodName" : "setSchema", "c2jName" : "schema", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database schema.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #schema(String)}.\n@param schema a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #schema(String)", "deprecated" : false, "documentation" : "

The name of the database schema.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "schema", "fluentSetterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "schema", "getterDocumentation" : "

The name of the database schema.

\n@return The name of the database schema.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "schema", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "schema", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Schema", "sensitive" : false, "setterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.", "setterMethodName" : "setSchema", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : "

The name of the database schema.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSqlStatements", "beanStyleSetterMethodName" : "setSqlStatements", "c2jName" : "sqlStatements", "c2jShape" : "SqlStatement", "defaultConsumerFluentSetterDocumentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #sqlStatements(String)}.\n@param sqlStatements a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #sqlStatements(String)", "deprecated" : false, "documentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "sqlStatements", "fluentSetterDocumentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

\n@param sqlStatements One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "sqlStatements", "getterDocumentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

\n@return One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "sqlStatements", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "sqlStatements", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SqlStatements", "sensitive" : false, "setterDocumentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

\n@param sqlStatements One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.", "setterMethodName" : "setSqlStatements", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "sqlStatements", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "sqlStatements", "variableType" : "String", "documentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "AwsSecretStoreArn" : { "beanStyleGetterMethodName" : "getAwsSecretStoreArn", "beanStyleSetterMethodName" : "setAwsSecretStoreArn", "c2jName" : "awsSecretStoreArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #awsSecretStoreArn(String)}.\n@param awsSecretStoreArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #awsSecretStoreArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "awsSecretStoreArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

\n@param awsSecretStoreArn The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "awsSecretStoreArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

\n@return The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "awsSecretStoreArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "awsSecretStoreArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "AwsSecretStoreArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

\n@param awsSecretStoreArn The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.", "setterMethodName" : "setAwsSecretStoreArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "awsSecretStoreArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "awsSecretStoreArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Database" : { "beanStyleGetterMethodName" : "getDatabase", "beanStyleSetterMethodName" : "setDatabase", "c2jName" : "database", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #database(String)}.\n@param database a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #database(String)", "deprecated" : false, "documentation" : "

The name of the database.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "database", "fluentSetterDocumentation" : "

The name of the database.

\n@param database The name of the database.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "database", "getterDocumentation" : "

The name of the database.

\n@return The name of the database.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "database", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "database", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Database", "sensitive" : false, "setterDocumentation" : "

The name of the database.

\n@param database The name of the database.", "setterMethodName" : "setDatabase", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : "

The name of the database.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "DbClusterOrInstanceArn" : { "beanStyleGetterMethodName" : "getDbClusterOrInstanceArn", "beanStyleSetterMethodName" : "setDbClusterOrInstanceArn", "c2jName" : "dbClusterOrInstanceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The ARN of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #dbClusterOrInstanceArn(String)}.\n@param dbClusterOrInstanceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #dbClusterOrInstanceArn(String)", "deprecated" : false, "documentation" : "

The ARN of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "dbClusterOrInstanceArn", "fluentSetterDocumentation" : "

The ARN of the Aurora Serverless DB cluster.

\n@param dbClusterOrInstanceArn The ARN of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "dbClusterOrInstanceArn", "getterDocumentation" : "

The ARN of the Aurora Serverless DB cluster.

\n@return The ARN of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "dbClusterOrInstanceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "dbClusterOrInstanceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "DbClusterOrInstanceArn", "sensitive" : false, "setterDocumentation" : "

The ARN of the Aurora Serverless DB cluster.

\n@param dbClusterOrInstanceArn The ARN of the Aurora Serverless DB cluster.", "setterMethodName" : "setDbClusterOrInstanceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "dbClusterOrInstanceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "dbClusterOrInstanceArn", "variableType" : "String", "documentation" : "

The ARN of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Schema" : { "beanStyleGetterMethodName" : "getSchema", "beanStyleSetterMethodName" : "setSchema", "c2jName" : "schema", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database schema.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #schema(String)}.\n@param schema a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #schema(String)", "deprecated" : false, "documentation" : "

The name of the database schema.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "schema", "fluentSetterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "schema", "getterDocumentation" : "

The name of the database schema.

\n@return The name of the database schema.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "schema", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "schema", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Schema", "sensitive" : false, "setterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.", "setterMethodName" : "setSchema", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : "

The name of the database schema.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "SqlStatements" : { "beanStyleGetterMethodName" : "getSqlStatements", "beanStyleSetterMethodName" : "setSqlStatements", "c2jName" : "sqlStatements", "c2jShape" : "SqlStatement", "defaultConsumerFluentSetterDocumentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #sqlStatements(String)}.\n@param sqlStatements a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #sqlStatements(String)", "deprecated" : false, "documentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "sqlStatements", "fluentSetterDocumentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

\n@param sqlStatements One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "sqlStatements", "getterDocumentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

\n@return One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "sqlStatements", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "sqlStatements", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SqlStatements", "sensitive" : false, "setterDocumentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

\n@param sqlStatements One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.", "setterMethodName" : "setSqlStatements", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "sqlStatements", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "sqlStatements", "variableType" : "String", "documentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getAwsSecretStoreArn", "beanStyleSetterMethodName" : "setAwsSecretStoreArn", "c2jName" : "awsSecretStoreArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #awsSecretStoreArn(String)}.\n@param awsSecretStoreArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #awsSecretStoreArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "awsSecretStoreArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

\n@param awsSecretStoreArn The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "awsSecretStoreArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

\n@return The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "awsSecretStoreArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "awsSecretStoreArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "AwsSecretStoreArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

\n@param awsSecretStoreArn The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.", "setterMethodName" : "setAwsSecretStoreArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "awsSecretStoreArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "awsSecretStoreArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getDatabase", "beanStyleSetterMethodName" : "setDatabase", "c2jName" : "database", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #database(String)}.\n@param database a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #database(String)", "deprecated" : false, "documentation" : "

The name of the database.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "database", "fluentSetterDocumentation" : "

The name of the database.

\n@param database The name of the database.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "database", "getterDocumentation" : "

The name of the database.

\n@return The name of the database.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "database", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "database", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Database", "sensitive" : false, "setterDocumentation" : "

The name of the database.

\n@param database The name of the database.", "setterMethodName" : "setDatabase", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : "

The name of the database.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getDbClusterOrInstanceArn", "beanStyleSetterMethodName" : "setDbClusterOrInstanceArn", "c2jName" : "dbClusterOrInstanceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The ARN of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #dbClusterOrInstanceArn(String)}.\n@param dbClusterOrInstanceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #dbClusterOrInstanceArn(String)", "deprecated" : false, "documentation" : "

The ARN of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "dbClusterOrInstanceArn", "fluentSetterDocumentation" : "

The ARN of the Aurora Serverless DB cluster.

\n@param dbClusterOrInstanceArn The ARN of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "dbClusterOrInstanceArn", "getterDocumentation" : "

The ARN of the Aurora Serverless DB cluster.

\n@return The ARN of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "dbClusterOrInstanceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "dbClusterOrInstanceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "DbClusterOrInstanceArn", "sensitive" : false, "setterDocumentation" : "

The ARN of the Aurora Serverless DB cluster.

\n@param dbClusterOrInstanceArn The ARN of the Aurora Serverless DB cluster.", "setterMethodName" : "setDbClusterOrInstanceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "dbClusterOrInstanceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "dbClusterOrInstanceArn", "variableType" : "String", "documentation" : "

The ARN of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSchema", "beanStyleSetterMethodName" : "setSchema", "c2jName" : "schema", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database schema.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #schema(String)}.\n@param schema a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #schema(String)", "deprecated" : false, "documentation" : "

The name of the database schema.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "schema", "fluentSetterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "schema", "getterDocumentation" : "

The name of the database schema.

\n@return The name of the database schema.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "schema", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "schema", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Schema", "sensitive" : false, "setterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.", "setterMethodName" : "setSchema", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : "

The name of the database schema.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSqlStatements", "beanStyleSetterMethodName" : "setSqlStatements", "c2jName" : "sqlStatements", "c2jShape" : "SqlStatement", "defaultConsumerFluentSetterDocumentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #sqlStatements(String)}.\n@param sqlStatements a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #sqlStatements(String)", "deprecated" : false, "documentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "sqlStatements", "fluentSetterDocumentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

\n@param sqlStatements One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "sqlStatements", "getterDocumentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

\n@return One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "sqlStatements", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "sqlStatements", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SqlStatements", "sensitive" : false, "setterDocumentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

\n@param sqlStatements One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.", "setterMethodName" : "setSqlStatements", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "sqlStatements", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "sqlStatements", "variableType" : "String", "documentation" : "

One or more SQL statements to run on the DB cluster.

You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "awsSecretStoreArn", "dbClusterOrInstanceArn", "sqlStatements" ], "shapeName" : "ExecuteSqlRequest", "simpleMethod" : false, "unmarshaller" : null, "variable" : { "variableDeclarationType" : "ExecuteSqlRequest", "variableName" : "executeSqlRequest", "variableType" : "ExecuteSqlRequest", "documentation" : null, "simpleType" : "ExecuteSqlRequest", "variableSetterType" : "ExecuteSqlRequest" }, "wrapper" : false, "xmlNamespace" : null }, "ExecuteSqlResponse" : { "c2jName" : "ExecuteSqlResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The response elements represent the output of a request to run one or more SQL statements.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getSqlStatementResults", "beanStyleSetterMethodName" : "setSqlStatementResults", "c2jName" : "sqlStatementResults", "c2jShape" : "SqlStatementResults", "defaultConsumerFluentSetterDocumentation" : "

The results of the SQL statement or statements.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #sqlStatementResults(List)}.\n@param sqlStatementResults a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #sqlStatementResults(List)", "deprecated" : false, "documentation" : "

The results of the SQL statement or statements.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "sqlStatementResults", "fluentSetterDocumentation" : "

The results of the SQL statement or statements.

\n@param sqlStatementResults The results of the SQL statement or statements.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "sqlStatementResults", "getterDocumentation" : "

The results of the SQL statement or statements.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The results of the SQL statement or statements.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "sqlStatementResults", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "sqlStatementResults", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "SqlStatementResult", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link SqlStatementResult.Builder} avoiding the need to create one manually via {@link SqlStatementResult#builder()}.\n\nWhen the {@link Consumer} completes, {@link SqlStatementResult.Builder#build()} is called immediately and its result is passed to {@link #member(SqlStatementResult)}.\n@param member a consumer that will call methods on {@link SqlStatementResult.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(SqlStatementResult)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "SqlStatementResult", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "SqlStatementResult", "variableName" : "member", "variableType" : "SqlStatementResult", "documentation" : null, "simpleType" : "SqlStatementResult", "variableSetterType" : "SqlStatementResult" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "SqlStatementResult", "variableName" : "member", "variableType" : "SqlStatementResult", "documentation" : "", "simpleType" : "SqlStatementResult", "variableSetterType" : "SqlStatementResult" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "SqlStatementResult", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "SqlStatementResult", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "SqlStatementResults", "sensitive" : false, "setterDocumentation" : "

The results of the SQL statement or statements.

\n@param sqlStatementResults The results of the SQL statement or statements.", "setterMethodName" : "setSqlStatementResults", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "sqlStatementResults", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "sqlStatementResults", "variableType" : "java.util.List", "documentation" : "

The results of the SQL statement or statements.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "SqlStatementResults" : { "beanStyleGetterMethodName" : "getSqlStatementResults", "beanStyleSetterMethodName" : "setSqlStatementResults", "c2jName" : "sqlStatementResults", "c2jShape" : "SqlStatementResults", "defaultConsumerFluentSetterDocumentation" : "

The results of the SQL statement or statements.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #sqlStatementResults(List)}.\n@param sqlStatementResults a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #sqlStatementResults(List)", "deprecated" : false, "documentation" : "

The results of the SQL statement or statements.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "sqlStatementResults", "fluentSetterDocumentation" : "

The results of the SQL statement or statements.

\n@param sqlStatementResults The results of the SQL statement or statements.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "sqlStatementResults", "getterDocumentation" : "

The results of the SQL statement or statements.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The results of the SQL statement or statements.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "sqlStatementResults", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "sqlStatementResults", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "SqlStatementResult", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link SqlStatementResult.Builder} avoiding the need to create one manually via {@link SqlStatementResult#builder()}.\n\nWhen the {@link Consumer} completes, {@link SqlStatementResult.Builder#build()} is called immediately and its result is passed to {@link #member(SqlStatementResult)}.\n@param member a consumer that will call methods on {@link SqlStatementResult.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(SqlStatementResult)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "SqlStatementResult", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "SqlStatementResult", "variableName" : "member", "variableType" : "SqlStatementResult", "documentation" : null, "simpleType" : "SqlStatementResult", "variableSetterType" : "SqlStatementResult" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "SqlStatementResult", "variableName" : "member", "variableType" : "SqlStatementResult", "documentation" : "", "simpleType" : "SqlStatementResult", "variableSetterType" : "SqlStatementResult" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "SqlStatementResult", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "SqlStatementResult", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "SqlStatementResults", "sensitive" : false, "setterDocumentation" : "

The results of the SQL statement or statements.

\n@param sqlStatementResults The results of the SQL statement or statements.", "setterMethodName" : "setSqlStatementResults", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "sqlStatementResults", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "sqlStatementResults", "variableType" : "java.util.List", "documentation" : "

The results of the SQL statement or statements.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getSqlStatementResults", "beanStyleSetterMethodName" : "setSqlStatementResults", "c2jName" : "sqlStatementResults", "c2jShape" : "SqlStatementResults", "defaultConsumerFluentSetterDocumentation" : "

The results of the SQL statement or statements.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #sqlStatementResults(List)}.\n@param sqlStatementResults a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #sqlStatementResults(List)", "deprecated" : false, "documentation" : "

The results of the SQL statement or statements.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "sqlStatementResults", "fluentSetterDocumentation" : "

The results of the SQL statement or statements.

\n@param sqlStatementResults The results of the SQL statement or statements.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "sqlStatementResults", "getterDocumentation" : "

The results of the SQL statement or statements.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The results of the SQL statement or statements.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "sqlStatementResults", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "sqlStatementResults", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "SqlStatementResult", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link SqlStatementResult.Builder} avoiding the need to create one manually via {@link SqlStatementResult#builder()}.\n\nWhen the {@link Consumer} completes, {@link SqlStatementResult.Builder#build()} is called immediately and its result is passed to {@link #member(SqlStatementResult)}.\n@param member a consumer that will call methods on {@link SqlStatementResult.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(SqlStatementResult)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "SqlStatementResult", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "SqlStatementResult", "variableName" : "member", "variableType" : "SqlStatementResult", "documentation" : null, "simpleType" : "SqlStatementResult", "variableSetterType" : "SqlStatementResult" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "SqlStatementResult", "variableName" : "member", "variableType" : "SqlStatementResult", "documentation" : "", "simpleType" : "SqlStatementResult", "variableSetterType" : "SqlStatementResult" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "SqlStatementResult", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "SqlStatementResult", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "SqlStatementResults", "sensitive" : false, "setterDocumentation" : "

The results of the SQL statement or statements.

\n@param sqlStatementResults The results of the SQL statement or statements.", "setterMethodName" : "setSqlStatementResults", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "sqlStatementResults", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "sqlStatementResults", "variableType" : "java.util.List", "documentation" : "

The results of the SQL statement or statements.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "ExecuteSqlResponse", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "ExecuteSqlResponse", "variableName" : "executeSqlResponse", "variableType" : "ExecuteSqlResponse", "documentation" : null, "simpleType" : "ExecuteSqlResponse", "variableSetterType" : "ExecuteSqlResponse" }, "wrapper" : false, "xmlNamespace" : null }, "ExecuteStatementRequest" : { "c2jName" : "ExecuteStatementRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The request parameters represent the input of a request to run a SQL statement against a database.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : { "action" : "ExecuteStatement", "locationName" : null, "requestUri" : "/Execute", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "beanStyleGetterMethodName" : "getContinueAfterTimeout", "beanStyleSetterMethodName" : "setContinueAfterTimeout", "c2jName" : "continueAfterTimeout", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #continueAfterTimeout(Boolean)}.\n@param continueAfterTimeout a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #continueAfterTimeout(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "continueAfterTimeout", "fluentSetterDocumentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

\n@param continueAfterTimeout A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "continueAfterTimeout", "getterDocumentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

\n@return A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "continueAfterTimeout", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "continueAfterTimeout", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "ContinueAfterTimeout", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

\n@param continueAfterTimeout A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

", "setterMethodName" : "setContinueAfterTimeout", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "continueAfterTimeout", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "continueAfterTimeout", "variableType" : "Boolean", "documentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getDatabase", "beanStyleSetterMethodName" : "setDatabase", "c2jName" : "database", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #database(String)}.\n@param database a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #database(String)", "deprecated" : false, "documentation" : "

The name of the database.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "database", "fluentSetterDocumentation" : "

The name of the database.

\n@param database The name of the database.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "database", "getterDocumentation" : "

The name of the database.

\n@return The name of the database.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "database", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "database", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Database", "sensitive" : false, "setterDocumentation" : "

The name of the database.

\n@param database The name of the database.", "setterMethodName" : "setDatabase", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : "

The name of the database.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getIncludeResultMetadata", "beanStyleSetterMethodName" : "setIncludeResultMetadata", "c2jName" : "includeResultMetadata", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether to include metadata in the results.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #includeResultMetadata(Boolean)}.\n@param includeResultMetadata a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #includeResultMetadata(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether to include metadata in the results.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "includeResultMetadata", "fluentSetterDocumentation" : "

A value that indicates whether to include metadata in the results.

\n@param includeResultMetadata A value that indicates whether to include metadata in the results.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "includeResultMetadata", "getterDocumentation" : "

A value that indicates whether to include metadata in the results.

\n@return A value that indicates whether to include metadata in the results.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "includeResultMetadata", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "includeResultMetadata", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IncludeResultMetadata", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether to include metadata in the results.

\n@param includeResultMetadata A value that indicates whether to include metadata in the results.", "setterMethodName" : "setIncludeResultMetadata", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "includeResultMetadata", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "includeResultMetadata", "variableType" : "Boolean", "documentation" : "

A value that indicates whether to include metadata in the results.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getParameters", "beanStyleSetterMethodName" : "setParameters", "c2jName" : "parameters", "c2jShape" : "SqlParametersList", "defaultConsumerFluentSetterDocumentation" : "

The parameters for the SQL statement.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #parameters(List)}.\n@param parameters a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #parameters(List)", "deprecated" : false, "documentation" : "

The parameters for the SQL statement.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "parameters", "fluentSetterDocumentation" : "

The parameters for the SQL statement.

\n@param parameters The parameters for the SQL statement.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "parameters", "getterDocumentation" : "

The parameters for the SQL statement.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The parameters for the SQL statement.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "parameters", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "parameters", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "SqlParameter", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link SqlParameter.Builder} avoiding the need to create one manually via {@link SqlParameter#builder()}.\n\nWhen the {@link Consumer} completes, {@link SqlParameter.Builder#build()} is called immediately and its result is passed to {@link #member(SqlParameter)}.\n@param member a consumer that will call methods on {@link SqlParameter.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(SqlParameter)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "SqlParameter", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "SqlParameter", "variableName" : "member", "variableType" : "SqlParameter", "documentation" : null, "simpleType" : "SqlParameter", "variableSetterType" : "SqlParameter" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "SqlParameter", "variableName" : "member", "variableType" : "SqlParameter", "documentation" : "", "simpleType" : "SqlParameter", "variableSetterType" : "SqlParameter" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "SqlParameter", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "SqlParameter", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Parameters", "sensitive" : false, "setterDocumentation" : "

The parameters for the SQL statement.

\n@param parameters The parameters for the SQL statement.", "setterMethodName" : "setParameters", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "parameters", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "parameters", "variableType" : "java.util.List", "documentation" : "

The parameters for the SQL statement.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getResourceArn", "beanStyleSetterMethodName" : "setResourceArn", "c2jName" : "resourceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceArn(String)}.\n@param resourceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resourceArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resourceArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@return The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resourceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resourceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "ResourceArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "setterMethodName" : "setResourceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getResultSetOptions", "beanStyleSetterMethodName" : "setResultSetOptions", "c2jName" : "resultSetOptions", "c2jShape" : "ResultSetOptions", "defaultConsumerFluentSetterDocumentation" : "

Options that control how the result set is returned.

\nThis is a convenience that creates an instance of the {@link ResultSetOptions.Builder} avoiding the need to create one manually via {@link ResultSetOptions#builder()}.\n\nWhen the {@link Consumer} completes, {@link ResultSetOptions.Builder#build()} is called immediately and its result is passed to {@link #resultSetOptions(ResultSetOptions)}.\n@param resultSetOptions a consumer that will call methods on {@link ResultSetOptions.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resultSetOptions(ResultSetOptions)", "deprecated" : false, "documentation" : "

Options that control how the result set is returned.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resultSetOptions", "fluentSetterDocumentation" : "

Options that control how the result set is returned.

\n@param resultSetOptions Options that control how the result set is returned.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resultSetOptions", "getterDocumentation" : "

Options that control how the result set is returned.

\n@return Options that control how the result set is returned.", "getterModel" : { "returnType" : "ResultSetOptions", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resultSetOptions", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resultSetOptions", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "ResultSetOptions", "sensitive" : false, "setterDocumentation" : "

Options that control how the result set is returned.

\n@param resultSetOptions Options that control how the result set is returned.", "setterMethodName" : "setResultSetOptions", "setterModel" : { "variableDeclarationType" : "ResultSetOptions", "variableName" : "resultSetOptions", "variableType" : "ResultSetOptions", "documentation" : null, "simpleType" : "ResultSetOptions", "variableSetterType" : "ResultSetOptions" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ResultSetOptions", "variableName" : "resultSetOptions", "variableType" : "ResultSetOptions", "documentation" : "

Options that control how the result set is returned.

", "simpleType" : "ResultSetOptions", "variableSetterType" : "ResultSetOptions" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSchema", "beanStyleSetterMethodName" : "setSchema", "c2jName" : "schema", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database schema.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #schema(String)}.\n@param schema a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #schema(String)", "deprecated" : false, "documentation" : "

The name of the database schema.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "schema", "fluentSetterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "schema", "getterDocumentation" : "

The name of the database schema.

\n@return The name of the database schema.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "schema", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "schema", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Schema", "sensitive" : false, "setterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.", "setterMethodName" : "setSchema", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : "

The name of the database schema.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSecretArn", "beanStyleSetterMethodName" : "setSecretArn", "c2jName" : "secretArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #secretArn(String)}.\n@param secretArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #secretArn(String)", "deprecated" : false, "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "secretArn", "fluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "secretArn", "getterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@return The name or ARN of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "secretArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "secretArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SecretArn", "sensitive" : false, "setterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.", "setterMethodName" : "setSecretArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSql", "beanStyleSetterMethodName" : "setSql", "c2jName" : "sql", "c2jShape" : "SqlStatement", "defaultConsumerFluentSetterDocumentation" : "

The SQL statement to run.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #sql(String)}.\n@param sql a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #sql(String)", "deprecated" : false, "documentation" : "

The SQL statement to run.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "sql", "fluentSetterDocumentation" : "

The SQL statement to run.

\n@param sql The SQL statement to run.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "sql", "getterDocumentation" : "

The SQL statement to run.

\n@return The SQL statement to run.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "sql", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "sql", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Sql", "sensitive" : false, "setterDocumentation" : "

The SQL statement to run.

\n@param sql The SQL statement to run.", "setterMethodName" : "setSql", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "sql", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "sql", "variableType" : "String", "documentation" : "

The SQL statement to run.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getTransactionId", "beanStyleSetterMethodName" : "setTransactionId", "c2jName" : "transactionId", "c2jShape" : "Id", "defaultConsumerFluentSetterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionId(String)}.\n@param transactionId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionId(String)", "deprecated" : false, "documentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionId", "fluentSetterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@param transactionId The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionId", "getterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@return The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionId", "sensitive" : false, "setterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@param transactionId The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.", "setterMethodName" : "setTransactionId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ContinueAfterTimeout" : { "beanStyleGetterMethodName" : "getContinueAfterTimeout", "beanStyleSetterMethodName" : "setContinueAfterTimeout", "c2jName" : "continueAfterTimeout", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #continueAfterTimeout(Boolean)}.\n@param continueAfterTimeout a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #continueAfterTimeout(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "continueAfterTimeout", "fluentSetterDocumentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

\n@param continueAfterTimeout A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "continueAfterTimeout", "getterDocumentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

\n@return A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "continueAfterTimeout", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "continueAfterTimeout", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "ContinueAfterTimeout", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

\n@param continueAfterTimeout A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

", "setterMethodName" : "setContinueAfterTimeout", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "continueAfterTimeout", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "continueAfterTimeout", "variableType" : "Boolean", "documentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Database" : { "beanStyleGetterMethodName" : "getDatabase", "beanStyleSetterMethodName" : "setDatabase", "c2jName" : "database", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #database(String)}.\n@param database a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #database(String)", "deprecated" : false, "documentation" : "

The name of the database.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "database", "fluentSetterDocumentation" : "

The name of the database.

\n@param database The name of the database.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "database", "getterDocumentation" : "

The name of the database.

\n@return The name of the database.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "database", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "database", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Database", "sensitive" : false, "setterDocumentation" : "

The name of the database.

\n@param database The name of the database.", "setterMethodName" : "setDatabase", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : "

The name of the database.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "IncludeResultMetadata" : { "beanStyleGetterMethodName" : "getIncludeResultMetadata", "beanStyleSetterMethodName" : "setIncludeResultMetadata", "c2jName" : "includeResultMetadata", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether to include metadata in the results.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #includeResultMetadata(Boolean)}.\n@param includeResultMetadata a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #includeResultMetadata(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether to include metadata in the results.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "includeResultMetadata", "fluentSetterDocumentation" : "

A value that indicates whether to include metadata in the results.

\n@param includeResultMetadata A value that indicates whether to include metadata in the results.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "includeResultMetadata", "getterDocumentation" : "

A value that indicates whether to include metadata in the results.

\n@return A value that indicates whether to include metadata in the results.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "includeResultMetadata", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "includeResultMetadata", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IncludeResultMetadata", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether to include metadata in the results.

\n@param includeResultMetadata A value that indicates whether to include metadata in the results.", "setterMethodName" : "setIncludeResultMetadata", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "includeResultMetadata", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "includeResultMetadata", "variableType" : "Boolean", "documentation" : "

A value that indicates whether to include metadata in the results.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Parameters" : { "beanStyleGetterMethodName" : "getParameters", "beanStyleSetterMethodName" : "setParameters", "c2jName" : "parameters", "c2jShape" : "SqlParametersList", "defaultConsumerFluentSetterDocumentation" : "

The parameters for the SQL statement.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #parameters(List)}.\n@param parameters a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #parameters(List)", "deprecated" : false, "documentation" : "

The parameters for the SQL statement.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "parameters", "fluentSetterDocumentation" : "

The parameters for the SQL statement.

\n@param parameters The parameters for the SQL statement.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "parameters", "getterDocumentation" : "

The parameters for the SQL statement.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The parameters for the SQL statement.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "parameters", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "parameters", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "SqlParameter", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link SqlParameter.Builder} avoiding the need to create one manually via {@link SqlParameter#builder()}.\n\nWhen the {@link Consumer} completes, {@link SqlParameter.Builder#build()} is called immediately and its result is passed to {@link #member(SqlParameter)}.\n@param member a consumer that will call methods on {@link SqlParameter.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(SqlParameter)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "SqlParameter", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "SqlParameter", "variableName" : "member", "variableType" : "SqlParameter", "documentation" : null, "simpleType" : "SqlParameter", "variableSetterType" : "SqlParameter" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "SqlParameter", "variableName" : "member", "variableType" : "SqlParameter", "documentation" : "", "simpleType" : "SqlParameter", "variableSetterType" : "SqlParameter" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "SqlParameter", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "SqlParameter", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Parameters", "sensitive" : false, "setterDocumentation" : "

The parameters for the SQL statement.

\n@param parameters The parameters for the SQL statement.", "setterMethodName" : "setParameters", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "parameters", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "parameters", "variableType" : "java.util.List", "documentation" : "

The parameters for the SQL statement.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "ResourceArn" : { "beanStyleGetterMethodName" : "getResourceArn", "beanStyleSetterMethodName" : "setResourceArn", "c2jName" : "resourceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceArn(String)}.\n@param resourceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resourceArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resourceArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@return The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resourceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resourceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "ResourceArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "setterMethodName" : "setResourceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "ResultSetOptions" : { "beanStyleGetterMethodName" : "getResultSetOptions", "beanStyleSetterMethodName" : "setResultSetOptions", "c2jName" : "resultSetOptions", "c2jShape" : "ResultSetOptions", "defaultConsumerFluentSetterDocumentation" : "

Options that control how the result set is returned.

\nThis is a convenience that creates an instance of the {@link ResultSetOptions.Builder} avoiding the need to create one manually via {@link ResultSetOptions#builder()}.\n\nWhen the {@link Consumer} completes, {@link ResultSetOptions.Builder#build()} is called immediately and its result is passed to {@link #resultSetOptions(ResultSetOptions)}.\n@param resultSetOptions a consumer that will call methods on {@link ResultSetOptions.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resultSetOptions(ResultSetOptions)", "deprecated" : false, "documentation" : "

Options that control how the result set is returned.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resultSetOptions", "fluentSetterDocumentation" : "

Options that control how the result set is returned.

\n@param resultSetOptions Options that control how the result set is returned.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resultSetOptions", "getterDocumentation" : "

Options that control how the result set is returned.

\n@return Options that control how the result set is returned.", "getterModel" : { "returnType" : "ResultSetOptions", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resultSetOptions", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resultSetOptions", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "ResultSetOptions", "sensitive" : false, "setterDocumentation" : "

Options that control how the result set is returned.

\n@param resultSetOptions Options that control how the result set is returned.", "setterMethodName" : "setResultSetOptions", "setterModel" : { "variableDeclarationType" : "ResultSetOptions", "variableName" : "resultSetOptions", "variableType" : "ResultSetOptions", "documentation" : null, "simpleType" : "ResultSetOptions", "variableSetterType" : "ResultSetOptions" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ResultSetOptions", "variableName" : "resultSetOptions", "variableType" : "ResultSetOptions", "documentation" : "

Options that control how the result set is returned.

", "simpleType" : "ResultSetOptions", "variableSetterType" : "ResultSetOptions" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Schema" : { "beanStyleGetterMethodName" : "getSchema", "beanStyleSetterMethodName" : "setSchema", "c2jName" : "schema", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database schema.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #schema(String)}.\n@param schema a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #schema(String)", "deprecated" : false, "documentation" : "

The name of the database schema.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "schema", "fluentSetterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "schema", "getterDocumentation" : "

The name of the database schema.

\n@return The name of the database schema.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "schema", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "schema", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Schema", "sensitive" : false, "setterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.", "setterMethodName" : "setSchema", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : "

The name of the database schema.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "SecretArn" : { "beanStyleGetterMethodName" : "getSecretArn", "beanStyleSetterMethodName" : "setSecretArn", "c2jName" : "secretArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #secretArn(String)}.\n@param secretArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #secretArn(String)", "deprecated" : false, "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "secretArn", "fluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "secretArn", "getterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@return The name or ARN of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "secretArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "secretArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SecretArn", "sensitive" : false, "setterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.", "setterMethodName" : "setSecretArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Sql" : { "beanStyleGetterMethodName" : "getSql", "beanStyleSetterMethodName" : "setSql", "c2jName" : "sql", "c2jShape" : "SqlStatement", "defaultConsumerFluentSetterDocumentation" : "

The SQL statement to run.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #sql(String)}.\n@param sql a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #sql(String)", "deprecated" : false, "documentation" : "

The SQL statement to run.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "sql", "fluentSetterDocumentation" : "

The SQL statement to run.

\n@param sql The SQL statement to run.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "sql", "getterDocumentation" : "

The SQL statement to run.

\n@return The SQL statement to run.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "sql", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "sql", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Sql", "sensitive" : false, "setterDocumentation" : "

The SQL statement to run.

\n@param sql The SQL statement to run.", "setterMethodName" : "setSql", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "sql", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "sql", "variableType" : "String", "documentation" : "

The SQL statement to run.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "TransactionId" : { "beanStyleGetterMethodName" : "getTransactionId", "beanStyleSetterMethodName" : "setTransactionId", "c2jName" : "transactionId", "c2jShape" : "Id", "defaultConsumerFluentSetterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionId(String)}.\n@param transactionId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionId(String)", "deprecated" : false, "documentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionId", "fluentSetterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@param transactionId The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionId", "getterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@return The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionId", "sensitive" : false, "setterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@param transactionId The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.", "setterMethodName" : "setTransactionId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getContinueAfterTimeout", "beanStyleSetterMethodName" : "setContinueAfterTimeout", "c2jName" : "continueAfterTimeout", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #continueAfterTimeout(Boolean)}.\n@param continueAfterTimeout a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #continueAfterTimeout(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "continueAfterTimeout", "fluentSetterDocumentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

\n@param continueAfterTimeout A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "continueAfterTimeout", "getterDocumentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

\n@return A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "continueAfterTimeout", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "continueAfterTimeout", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "ContinueAfterTimeout", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

\n@param continueAfterTimeout A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

", "setterMethodName" : "setContinueAfterTimeout", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "continueAfterTimeout", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "continueAfterTimeout", "variableType" : "Boolean", "documentation" : "

A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.

For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getDatabase", "beanStyleSetterMethodName" : "setDatabase", "c2jName" : "database", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #database(String)}.\n@param database a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #database(String)", "deprecated" : false, "documentation" : "

The name of the database.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "database", "fluentSetterDocumentation" : "

The name of the database.

\n@param database The name of the database.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "database", "getterDocumentation" : "

The name of the database.

\n@return The name of the database.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "database", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "database", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Database", "sensitive" : false, "setterDocumentation" : "

The name of the database.

\n@param database The name of the database.", "setterMethodName" : "setDatabase", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "database", "variableType" : "String", "documentation" : "

The name of the database.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getIncludeResultMetadata", "beanStyleSetterMethodName" : "setIncludeResultMetadata", "c2jName" : "includeResultMetadata", "c2jShape" : "Boolean", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates whether to include metadata in the results.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #includeResultMetadata(Boolean)}.\n@param includeResultMetadata a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #includeResultMetadata(Boolean)", "deprecated" : false, "documentation" : "

A value that indicates whether to include metadata in the results.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "includeResultMetadata", "fluentSetterDocumentation" : "

A value that indicates whether to include metadata in the results.

\n@param includeResultMetadata A value that indicates whether to include metadata in the results.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "includeResultMetadata", "getterDocumentation" : "

A value that indicates whether to include metadata in the results.

\n@return A value that indicates whether to include metadata in the results.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "includeResultMetadata", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "includeResultMetadata", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IncludeResultMetadata", "sensitive" : false, "setterDocumentation" : "

A value that indicates whether to include metadata in the results.

\n@param includeResultMetadata A value that indicates whether to include metadata in the results.", "setterMethodName" : "setIncludeResultMetadata", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "includeResultMetadata", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "includeResultMetadata", "variableType" : "Boolean", "documentation" : "

A value that indicates whether to include metadata in the results.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getParameters", "beanStyleSetterMethodName" : "setParameters", "c2jName" : "parameters", "c2jShape" : "SqlParametersList", "defaultConsumerFluentSetterDocumentation" : "

The parameters for the SQL statement.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #parameters(List)}.\n@param parameters a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #parameters(List)", "deprecated" : false, "documentation" : "

The parameters for the SQL statement.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "parameters", "fluentSetterDocumentation" : "

The parameters for the SQL statement.

\n@param parameters The parameters for the SQL statement.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "parameters", "getterDocumentation" : "

The parameters for the SQL statement.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The parameters for the SQL statement.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "parameters", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "parameters", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "SqlParameter", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link SqlParameter.Builder} avoiding the need to create one manually via {@link SqlParameter#builder()}.\n\nWhen the {@link Consumer} completes, {@link SqlParameter.Builder#build()} is called immediately and its result is passed to {@link #member(SqlParameter)}.\n@param member a consumer that will call methods on {@link SqlParameter.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(SqlParameter)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "SqlParameter", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "SqlParameter", "variableName" : "member", "variableType" : "SqlParameter", "documentation" : null, "simpleType" : "SqlParameter", "variableSetterType" : "SqlParameter" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "SqlParameter", "variableName" : "member", "variableType" : "SqlParameter", "documentation" : "", "simpleType" : "SqlParameter", "variableSetterType" : "SqlParameter" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "SqlParameter", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "SqlParameter", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Parameters", "sensitive" : false, "setterDocumentation" : "

The parameters for the SQL statement.

\n@param parameters The parameters for the SQL statement.", "setterMethodName" : "setParameters", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "parameters", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "parameters", "variableType" : "java.util.List", "documentation" : "

The parameters for the SQL statement.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getResourceArn", "beanStyleSetterMethodName" : "setResourceArn", "c2jName" : "resourceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceArn(String)}.\n@param resourceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resourceArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resourceArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@return The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resourceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resourceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "ResourceArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "setterMethodName" : "setResourceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getResultSetOptions", "beanStyleSetterMethodName" : "setResultSetOptions", "c2jName" : "resultSetOptions", "c2jShape" : "ResultSetOptions", "defaultConsumerFluentSetterDocumentation" : "

Options that control how the result set is returned.

\nThis is a convenience that creates an instance of the {@link ResultSetOptions.Builder} avoiding the need to create one manually via {@link ResultSetOptions#builder()}.\n\nWhen the {@link Consumer} completes, {@link ResultSetOptions.Builder#build()} is called immediately and its result is passed to {@link #resultSetOptions(ResultSetOptions)}.\n@param resultSetOptions a consumer that will call methods on {@link ResultSetOptions.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resultSetOptions(ResultSetOptions)", "deprecated" : false, "documentation" : "

Options that control how the result set is returned.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resultSetOptions", "fluentSetterDocumentation" : "

Options that control how the result set is returned.

\n@param resultSetOptions Options that control how the result set is returned.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resultSetOptions", "getterDocumentation" : "

Options that control how the result set is returned.

\n@return Options that control how the result set is returned.", "getterModel" : { "returnType" : "ResultSetOptions", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resultSetOptions", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resultSetOptions", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "ResultSetOptions", "sensitive" : false, "setterDocumentation" : "

Options that control how the result set is returned.

\n@param resultSetOptions Options that control how the result set is returned.", "setterMethodName" : "setResultSetOptions", "setterModel" : { "variableDeclarationType" : "ResultSetOptions", "variableName" : "resultSetOptions", "variableType" : "ResultSetOptions", "documentation" : null, "simpleType" : "ResultSetOptions", "variableSetterType" : "ResultSetOptions" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ResultSetOptions", "variableName" : "resultSetOptions", "variableType" : "ResultSetOptions", "documentation" : "

Options that control how the result set is returned.

", "simpleType" : "ResultSetOptions", "variableSetterType" : "ResultSetOptions" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSchema", "beanStyleSetterMethodName" : "setSchema", "c2jName" : "schema", "c2jShape" : "DbName", "defaultConsumerFluentSetterDocumentation" : "

The name of the database schema.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #schema(String)}.\n@param schema a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #schema(String)", "deprecated" : false, "documentation" : "

The name of the database schema.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "schema", "fluentSetterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "schema", "getterDocumentation" : "

The name of the database schema.

\n@return The name of the database schema.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "schema", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "schema", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Schema", "sensitive" : false, "setterDocumentation" : "

The name of the database schema.

\n@param schema The name of the database schema.", "setterMethodName" : "setSchema", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "schema", "variableType" : "String", "documentation" : "

The name of the database schema.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSecretArn", "beanStyleSetterMethodName" : "setSecretArn", "c2jName" : "secretArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #secretArn(String)}.\n@param secretArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #secretArn(String)", "deprecated" : false, "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "secretArn", "fluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "secretArn", "getterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@return The name or ARN of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "secretArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "secretArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SecretArn", "sensitive" : false, "setterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.", "setterMethodName" : "setSecretArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSql", "beanStyleSetterMethodName" : "setSql", "c2jName" : "sql", "c2jShape" : "SqlStatement", "defaultConsumerFluentSetterDocumentation" : "

The SQL statement to run.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #sql(String)}.\n@param sql a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #sql(String)", "deprecated" : false, "documentation" : "

The SQL statement to run.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "sql", "fluentSetterDocumentation" : "

The SQL statement to run.

\n@param sql The SQL statement to run.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "sql", "getterDocumentation" : "

The SQL statement to run.

\n@return The SQL statement to run.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "sql", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "sql", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Sql", "sensitive" : false, "setterDocumentation" : "

The SQL statement to run.

\n@param sql The SQL statement to run.", "setterMethodName" : "setSql", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "sql", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "sql", "variableType" : "String", "documentation" : "

The SQL statement to run.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getTransactionId", "beanStyleSetterMethodName" : "setTransactionId", "c2jName" : "transactionId", "c2jShape" : "Id", "defaultConsumerFluentSetterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionId(String)}.\n@param transactionId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionId(String)", "deprecated" : false, "documentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionId", "fluentSetterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@param transactionId The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionId", "getterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@return The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionId", "sensitive" : false, "setterDocumentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

\n@param transactionId The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.", "setterMethodName" : "setTransactionId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : "

The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don't set this parameter.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "resourceArn", "secretArn", "sql" ], "shapeName" : "ExecuteStatementRequest", "simpleMethod" : false, "unmarshaller" : null, "variable" : { "variableDeclarationType" : "ExecuteStatementRequest", "variableName" : "executeStatementRequest", "variableType" : "ExecuteStatementRequest", "documentation" : null, "simpleType" : "ExecuteStatementRequest", "variableSetterType" : "ExecuteStatementRequest" }, "wrapper" : false, "xmlNamespace" : null }, "ExecuteStatementResponse" : { "c2jName" : "ExecuteStatementResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The response elements represent the output of a request to run a SQL statement against a database.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getColumnMetadata", "beanStyleSetterMethodName" : "setColumnMetadata", "c2jName" : "columnMetadata", "c2jShape" : "Metadata", "defaultConsumerFluentSetterDocumentation" : "

Metadata for the columns included in the results.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #columnMetadata(List)}.\n@param columnMetadata a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #columnMetadata(List)", "deprecated" : false, "documentation" : "

Metadata for the columns included in the results.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "columnMetadata", "fluentSetterDocumentation" : "

Metadata for the columns included in the results.

\n@param columnMetadata Metadata for the columns included in the results.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "columnMetadata", "getterDocumentation" : "

Metadata for the columns included in the results.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return Metadata for the columns included in the results.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "columnMetadata", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "columnMetadata", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "ColumnMetadata", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link ColumnMetadata.Builder} avoiding the need to create one manually via {@link ColumnMetadata#builder()}.\n\nWhen the {@link Consumer} completes, {@link ColumnMetadata.Builder#build()} is called immediately and its result is passed to {@link #member(ColumnMetadata)}.\n@param member a consumer that will call methods on {@link ColumnMetadata.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(ColumnMetadata)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "ColumnMetadata", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ColumnMetadata", "variableName" : "member", "variableType" : "ColumnMetadata", "documentation" : null, "simpleType" : "ColumnMetadata", "variableSetterType" : "ColumnMetadata" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ColumnMetadata", "variableName" : "member", "variableType" : "ColumnMetadata", "documentation" : "", "simpleType" : "ColumnMetadata", "variableSetterType" : "ColumnMetadata" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ColumnMetadata", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "ColumnMetadata", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "ColumnMetadata", "sensitive" : false, "setterDocumentation" : "

Metadata for the columns included in the results.

\n@param columnMetadata Metadata for the columns included in the results.", "setterMethodName" : "setColumnMetadata", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "columnMetadata", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "columnMetadata", "variableType" : "java.util.List", "documentation" : "

Metadata for the columns included in the results.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getGeneratedFields", "beanStyleSetterMethodName" : "setGeneratedFields", "c2jName" : "generatedFields", "c2jShape" : "FieldList", "defaultConsumerFluentSetterDocumentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #generatedFields(List)}.\n@param generatedFields a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #generatedFields(List)", "deprecated" : false, "documentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "generatedFields", "fluentSetterDocumentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
\n@param generatedFields Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> \n@return Returns a reference to this object so that method calls can be chained together.",
        "fluentSetterMethodName" : "generatedFields",
        "getterDocumentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> ",
        "getterModel" : {
          "returnType" : "java.util.List",
          "documentation" : null
        },
        "http" : {
          "additionalMarshallingPath" : null,
          "additionalUnmarshallingPath" : null,
          "flattened" : false,
          "greedy" : false,
          "header" : false,
          "isPayload" : false,
          "isStreaming" : false,
          "location" : null,
          "marshallLocation" : "PAYLOAD",
          "marshallLocationName" : "generatedFields",
          "queryString" : false,
          "requiresLength" : false,
          "statusCode" : false,
          "unmarshallLocationName" : "generatedFields",
          "uri" : false
        },
        "idempotencyToken" : false,
        "isBinary" : false,
        "jsonValue" : false,
        "list" : true,
        "listModel" : {
          "implType" : "java.util.ArrayList",
          "interfaceType" : "java.util.List",
          "listMemberModel" : {
            "beanStyleGetterMethodName" : "getMember",
            "beanStyleSetterMethodName" : "setMember",
            "c2jName" : "member",
            "c2jShape" : "Field",
            "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Field.Builder} avoiding the need to create one manually via {@link Field#builder()}.\n\nWhen the {@link Consumer} completes, {@link Field.Builder#build()} is called immediately and its result is passed to {@link #member(Field)}.\n@param member a consumer that will call methods on {@link Field.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Field)",
            "deprecated" : false,
            "documentation" : "",
            "endpointDiscoveryId" : false,
            "enumType" : null,
            "eventHeader" : false,
            "eventPayload" : false,
            "fluentEnumGetterMethodName" : null,
            "fluentEnumSetterMethodName" : null,
            "fluentGetterMethodName" : "member",
            "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
            "fluentSetterMethodName" : "member",
            "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.",
            "getterModel" : {
              "returnType" : "Field",
              "documentation" : null
            },
            "http" : {
              "additionalMarshallingPath" : null,
              "additionalUnmarshallingPath" : null,
              "flattened" : false,
              "greedy" : false,
              "header" : false,
              "isPayload" : false,
              "isStreaming" : false,
              "location" : null,
              "marshallLocation" : "PAYLOAD",
              "marshallLocationName" : "member",
              "queryString" : false,
              "requiresLength" : false,
              "statusCode" : false,
              "unmarshallLocationName" : "member",
              "uri" : false
            },
            "idempotencyToken" : false,
            "isBinary" : false,
            "jsonValue" : false,
            "list" : false,
            "listModel" : null,
            "map" : false,
            "mapModel" : null,
            "marshallingType" : "SDK_POJO",
            "name" : "Member",
            "sensitive" : false,
            "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.",
            "setterMethodName" : "setMember",
            "setterModel" : {
              "variableDeclarationType" : "Field",
              "variableName" : "member",
              "variableType" : "Field",
              "documentation" : null,
              "simpleType" : "Field",
              "variableSetterType" : "Field"
            },
            "simple" : false,
            "timestampFormat" : null,
            "variable" : {
              "variableDeclarationType" : "Field",
              "variableName" : "member",
              "variableType" : "Field",
              "documentation" : "",
              "simpleType" : "Field",
              "variableSetterType" : "Field"
            },
            "xmlAttribute" : false,
            "xmlNameSpaceUri" : null
          },
          "memberLocationName" : null,
          "memberType" : "Field",
          "map" : false,
          "memberAdditionalMarshallingPath" : null,
          "memberAdditionalUnmarshallingPath" : null,
          "simple" : false,
          "simpleType" : "Field",
          "templateImplType" : "java.util.ArrayList",
          "templateType" : "java.util.List"
        },
        "map" : false,
        "mapModel" : null,
        "marshallingType" : "LIST",
        "name" : "GeneratedFields",
        "sensitive" : false,
        "setterDocumentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
\n@param generatedFields Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> ",
        "setterMethodName" : "setGeneratedFields",
        "setterModel" : {
          "variableDeclarationType" : "java.util.List",
          "variableName" : "generatedFields",
          "variableType" : "java.util.List",
          "documentation" : null,
          "simpleType" : "List",
          "variableSetterType" : "java.util.Collection"
        },
        "simple" : false,
        "timestampFormat" : null,
        "variable" : {
          "variableDeclarationType" : "java.util.List",
          "variableName" : "generatedFields",
          "variableType" : "java.util.List",
          "documentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getNumberOfRecordsUpdated", "beanStyleSetterMethodName" : "setNumberOfRecordsUpdated", "c2jName" : "numberOfRecordsUpdated", "c2jShape" : "RecordsUpdated", "defaultConsumerFluentSetterDocumentation" : "

The number of records updated by the request.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #numberOfRecordsUpdated(Long)}.\n@param numberOfRecordsUpdated a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #numberOfRecordsUpdated(Long)", "deprecated" : false, "documentation" : "

The number of records updated by the request.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "numberOfRecordsUpdated", "fluentSetterDocumentation" : "

The number of records updated by the request.

\n@param numberOfRecordsUpdated The number of records updated by the request.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "numberOfRecordsUpdated", "getterDocumentation" : "

The number of records updated by the request.

\n@return The number of records updated by the request.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "numberOfRecordsUpdated", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "numberOfRecordsUpdated", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "NumberOfRecordsUpdated", "sensitive" : false, "setterDocumentation" : "

The number of records updated by the request.

\n@param numberOfRecordsUpdated The number of records updated by the request.", "setterMethodName" : "setNumberOfRecordsUpdated", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "numberOfRecordsUpdated", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "numberOfRecordsUpdated", "variableType" : "Long", "documentation" : "

The number of records updated by the request.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getRecords", "beanStyleSetterMethodName" : "setRecords", "c2jName" : "records", "c2jShape" : "SqlRecords", "defaultConsumerFluentSetterDocumentation" : "

The records returned by the SQL statement.

\nThis is a convenience that creates an instance of the {@link List>.Builder} avoiding the need to create one manually via {@link List>#builder()}.\n\nWhen the {@link Consumer} completes, {@link List>.Builder#build()} is called immediately and its result is passed to {@link #records(List>)}.\n@param records a consumer that will call methods on {@link List>.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #records(List>)", "deprecated" : false, "documentation" : "

The records returned by the SQL statement.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "records", "fluentSetterDocumentation" : "

The records returned by the SQL statement.

\n@param records The records returned by the SQL statement.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "records", "getterDocumentation" : "

The records returned by the SQL statement.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The records returned by the SQL statement.", "getterModel" : { "returnType" : "java.util.List>", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "records", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "records", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "FieldList", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #member(List)}.\n@param member a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(List)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Field", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Field.Builder} avoiding the need to create one manually via {@link Field#builder()}.\n\nWhen the {@link Consumer} completes, {@link Field.Builder#build()} is called immediately and its result is passed to {@link #member(Field)}.\n@param member a consumer that will call methods on {@link Field.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Field)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Field", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Field", "variableName" : "member", "variableType" : "Field", "documentation" : null, "simpleType" : "Field", "variableSetterType" : "Field" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Field", "variableName" : "member", "variableType" : "Field", "documentation" : "", "simpleType" : "Field", "variableSetterType" : "Field" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Field", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Field", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "member", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "member", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "java.util.List", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "List", "templateImplType" : "java.util.ArrayList>", "templateType" : "java.util.List>" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Records", "sensitive" : false, "setterDocumentation" : "

The records returned by the SQL statement.

\n@param records The records returned by the SQL statement.", "setterMethodName" : "setRecords", "setterModel" : { "variableDeclarationType" : "java.util.List>", "variableName" : "records", "variableType" : "java.util.List>", "documentation" : null, "simpleType" : "List>", "variableSetterType" : "java.util.Collection>" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List>", "variableName" : "records", "variableType" : "java.util.List>", "documentation" : "

The records returned by the SQL statement.

", "simpleType" : "List>", "variableSetterType" : "java.util.Collection>" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ColumnMetadata" : { "beanStyleGetterMethodName" : "getColumnMetadata", "beanStyleSetterMethodName" : "setColumnMetadata", "c2jName" : "columnMetadata", "c2jShape" : "Metadata", "defaultConsumerFluentSetterDocumentation" : "

Metadata for the columns included in the results.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #columnMetadata(List)}.\n@param columnMetadata a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #columnMetadata(List)", "deprecated" : false, "documentation" : "

Metadata for the columns included in the results.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "columnMetadata", "fluentSetterDocumentation" : "

Metadata for the columns included in the results.

\n@param columnMetadata Metadata for the columns included in the results.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "columnMetadata", "getterDocumentation" : "

Metadata for the columns included in the results.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return Metadata for the columns included in the results.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "columnMetadata", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "columnMetadata", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "ColumnMetadata", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link ColumnMetadata.Builder} avoiding the need to create one manually via {@link ColumnMetadata#builder()}.\n\nWhen the {@link Consumer} completes, {@link ColumnMetadata.Builder#build()} is called immediately and its result is passed to {@link #member(ColumnMetadata)}.\n@param member a consumer that will call methods on {@link ColumnMetadata.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(ColumnMetadata)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "ColumnMetadata", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ColumnMetadata", "variableName" : "member", "variableType" : "ColumnMetadata", "documentation" : null, "simpleType" : "ColumnMetadata", "variableSetterType" : "ColumnMetadata" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ColumnMetadata", "variableName" : "member", "variableType" : "ColumnMetadata", "documentation" : "", "simpleType" : "ColumnMetadata", "variableSetterType" : "ColumnMetadata" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ColumnMetadata", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "ColumnMetadata", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "ColumnMetadata", "sensitive" : false, "setterDocumentation" : "

Metadata for the columns included in the results.

\n@param columnMetadata Metadata for the columns included in the results.", "setterMethodName" : "setColumnMetadata", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "columnMetadata", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "columnMetadata", "variableType" : "java.util.List", "documentation" : "

Metadata for the columns included in the results.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "GeneratedFields" : { "beanStyleGetterMethodName" : "getGeneratedFields", "beanStyleSetterMethodName" : "setGeneratedFields", "c2jName" : "generatedFields", "c2jShape" : "FieldList", "defaultConsumerFluentSetterDocumentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #generatedFields(List)}.\n@param generatedFields a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #generatedFields(List)", "deprecated" : false, "documentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "generatedFields", "fluentSetterDocumentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
\n@param generatedFields Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> \n@return Returns a reference to this object so that method calls can be chained together.",
          "fluentSetterMethodName" : "generatedFields",
          "getterDocumentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> ",
          "getterModel" : {
            "returnType" : "java.util.List",
            "documentation" : null
          },
          "http" : {
            "additionalMarshallingPath" : null,
            "additionalUnmarshallingPath" : null,
            "flattened" : false,
            "greedy" : false,
            "header" : false,
            "isPayload" : false,
            "isStreaming" : false,
            "location" : null,
            "marshallLocation" : "PAYLOAD",
            "marshallLocationName" : "generatedFields",
            "queryString" : false,
            "requiresLength" : false,
            "statusCode" : false,
            "unmarshallLocationName" : "generatedFields",
            "uri" : false
          },
          "idempotencyToken" : false,
          "isBinary" : false,
          "jsonValue" : false,
          "list" : true,
          "listModel" : {
            "implType" : "java.util.ArrayList",
            "interfaceType" : "java.util.List",
            "listMemberModel" : {
              "beanStyleGetterMethodName" : "getMember",
              "beanStyleSetterMethodName" : "setMember",
              "c2jName" : "member",
              "c2jShape" : "Field",
              "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Field.Builder} avoiding the need to create one manually via {@link Field#builder()}.\n\nWhen the {@link Consumer} completes, {@link Field.Builder#build()} is called immediately and its result is passed to {@link #member(Field)}.\n@param member a consumer that will call methods on {@link Field.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Field)",
              "deprecated" : false,
              "documentation" : "",
              "endpointDiscoveryId" : false,
              "enumType" : null,
              "eventHeader" : false,
              "eventPayload" : false,
              "fluentEnumGetterMethodName" : null,
              "fluentEnumSetterMethodName" : null,
              "fluentGetterMethodName" : "member",
              "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
              "fluentSetterMethodName" : "member",
              "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.",
              "getterModel" : {
                "returnType" : "Field",
                "documentation" : null
              },
              "http" : {
                "additionalMarshallingPath" : null,
                "additionalUnmarshallingPath" : null,
                "flattened" : false,
                "greedy" : false,
                "header" : false,
                "isPayload" : false,
                "isStreaming" : false,
                "location" : null,
                "marshallLocation" : "PAYLOAD",
                "marshallLocationName" : "member",
                "queryString" : false,
                "requiresLength" : false,
                "statusCode" : false,
                "unmarshallLocationName" : "member",
                "uri" : false
              },
              "idempotencyToken" : false,
              "isBinary" : false,
              "jsonValue" : false,
              "list" : false,
              "listModel" : null,
              "map" : false,
              "mapModel" : null,
              "marshallingType" : "SDK_POJO",
              "name" : "Member",
              "sensitive" : false,
              "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.",
              "setterMethodName" : "setMember",
              "setterModel" : {
                "variableDeclarationType" : "Field",
                "variableName" : "member",
                "variableType" : "Field",
                "documentation" : null,
                "simpleType" : "Field",
                "variableSetterType" : "Field"
              },
              "simple" : false,
              "timestampFormat" : null,
              "variable" : {
                "variableDeclarationType" : "Field",
                "variableName" : "member",
                "variableType" : "Field",
                "documentation" : "",
                "simpleType" : "Field",
                "variableSetterType" : "Field"
              },
              "xmlAttribute" : false,
              "xmlNameSpaceUri" : null
            },
            "memberLocationName" : null,
            "memberType" : "Field",
            "map" : false,
            "memberAdditionalMarshallingPath" : null,
            "memberAdditionalUnmarshallingPath" : null,
            "simple" : false,
            "simpleType" : "Field",
            "templateImplType" : "java.util.ArrayList",
            "templateType" : "java.util.List"
          },
          "map" : false,
          "mapModel" : null,
          "marshallingType" : "LIST",
          "name" : "GeneratedFields",
          "sensitive" : false,
          "setterDocumentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
\n@param generatedFields Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> ",
          "setterMethodName" : "setGeneratedFields",
          "setterModel" : {
            "variableDeclarationType" : "java.util.List",
            "variableName" : "generatedFields",
            "variableType" : "java.util.List",
            "documentation" : null,
            "simpleType" : "List",
            "variableSetterType" : "java.util.Collection"
          },
          "simple" : false,
          "timestampFormat" : null,
          "variable" : {
            "variableDeclarationType" : "java.util.List",
            "variableName" : "generatedFields",
            "variableType" : "java.util.List",
            "documentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "NumberOfRecordsUpdated" : { "beanStyleGetterMethodName" : "getNumberOfRecordsUpdated", "beanStyleSetterMethodName" : "setNumberOfRecordsUpdated", "c2jName" : "numberOfRecordsUpdated", "c2jShape" : "RecordsUpdated", "defaultConsumerFluentSetterDocumentation" : "

The number of records updated by the request.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #numberOfRecordsUpdated(Long)}.\n@param numberOfRecordsUpdated a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #numberOfRecordsUpdated(Long)", "deprecated" : false, "documentation" : "

The number of records updated by the request.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "numberOfRecordsUpdated", "fluentSetterDocumentation" : "

The number of records updated by the request.

\n@param numberOfRecordsUpdated The number of records updated by the request.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "numberOfRecordsUpdated", "getterDocumentation" : "

The number of records updated by the request.

\n@return The number of records updated by the request.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "numberOfRecordsUpdated", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "numberOfRecordsUpdated", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "NumberOfRecordsUpdated", "sensitive" : false, "setterDocumentation" : "

The number of records updated by the request.

\n@param numberOfRecordsUpdated The number of records updated by the request.", "setterMethodName" : "setNumberOfRecordsUpdated", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "numberOfRecordsUpdated", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "numberOfRecordsUpdated", "variableType" : "Long", "documentation" : "

The number of records updated by the request.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Records" : { "beanStyleGetterMethodName" : "getRecords", "beanStyleSetterMethodName" : "setRecords", "c2jName" : "records", "c2jShape" : "SqlRecords", "defaultConsumerFluentSetterDocumentation" : "

The records returned by the SQL statement.

\nThis is a convenience that creates an instance of the {@link List>.Builder} avoiding the need to create one manually via {@link List>#builder()}.\n\nWhen the {@link Consumer} completes, {@link List>.Builder#build()} is called immediately and its result is passed to {@link #records(List>)}.\n@param records a consumer that will call methods on {@link List>.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #records(List>)", "deprecated" : false, "documentation" : "

The records returned by the SQL statement.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "records", "fluentSetterDocumentation" : "

The records returned by the SQL statement.

\n@param records The records returned by the SQL statement.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "records", "getterDocumentation" : "

The records returned by the SQL statement.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The records returned by the SQL statement.", "getterModel" : { "returnType" : "java.util.List>", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "records", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "records", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "FieldList", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #member(List)}.\n@param member a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(List)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Field", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Field.Builder} avoiding the need to create one manually via {@link Field#builder()}.\n\nWhen the {@link Consumer} completes, {@link Field.Builder#build()} is called immediately and its result is passed to {@link #member(Field)}.\n@param member a consumer that will call methods on {@link Field.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Field)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Field", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Field", "variableName" : "member", "variableType" : "Field", "documentation" : null, "simpleType" : "Field", "variableSetterType" : "Field" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Field", "variableName" : "member", "variableType" : "Field", "documentation" : "", "simpleType" : "Field", "variableSetterType" : "Field" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Field", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Field", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "member", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "member", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "java.util.List", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "List", "templateImplType" : "java.util.ArrayList>", "templateType" : "java.util.List>" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Records", "sensitive" : false, "setterDocumentation" : "

The records returned by the SQL statement.

\n@param records The records returned by the SQL statement.", "setterMethodName" : "setRecords", "setterModel" : { "variableDeclarationType" : "java.util.List>", "variableName" : "records", "variableType" : "java.util.List>", "documentation" : null, "simpleType" : "List>", "variableSetterType" : "java.util.Collection>" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List>", "variableName" : "records", "variableType" : "java.util.List>", "documentation" : "

The records returned by the SQL statement.

", "simpleType" : "List>", "variableSetterType" : "java.util.Collection>" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getColumnMetadata", "beanStyleSetterMethodName" : "setColumnMetadata", "c2jName" : "columnMetadata", "c2jShape" : "Metadata", "defaultConsumerFluentSetterDocumentation" : "

Metadata for the columns included in the results.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #columnMetadata(List)}.\n@param columnMetadata a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #columnMetadata(List)", "deprecated" : false, "documentation" : "

Metadata for the columns included in the results.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "columnMetadata", "fluentSetterDocumentation" : "

Metadata for the columns included in the results.

\n@param columnMetadata Metadata for the columns included in the results.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "columnMetadata", "getterDocumentation" : "

Metadata for the columns included in the results.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return Metadata for the columns included in the results.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "columnMetadata", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "columnMetadata", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "ColumnMetadata", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link ColumnMetadata.Builder} avoiding the need to create one manually via {@link ColumnMetadata#builder()}.\n\nWhen the {@link Consumer} completes, {@link ColumnMetadata.Builder#build()} is called immediately and its result is passed to {@link #member(ColumnMetadata)}.\n@param member a consumer that will call methods on {@link ColumnMetadata.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(ColumnMetadata)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "ColumnMetadata", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ColumnMetadata", "variableName" : "member", "variableType" : "ColumnMetadata", "documentation" : null, "simpleType" : "ColumnMetadata", "variableSetterType" : "ColumnMetadata" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ColumnMetadata", "variableName" : "member", "variableType" : "ColumnMetadata", "documentation" : "", "simpleType" : "ColumnMetadata", "variableSetterType" : "ColumnMetadata" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ColumnMetadata", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "ColumnMetadata", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "ColumnMetadata", "sensitive" : false, "setterDocumentation" : "

Metadata for the columns included in the results.

\n@param columnMetadata Metadata for the columns included in the results.", "setterMethodName" : "setColumnMetadata", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "columnMetadata", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "columnMetadata", "variableType" : "java.util.List", "documentation" : "

Metadata for the columns included in the results.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getGeneratedFields", "beanStyleSetterMethodName" : "setGeneratedFields", "c2jName" : "generatedFields", "c2jShape" : "FieldList", "defaultConsumerFluentSetterDocumentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #generatedFields(List)}.\n@param generatedFields a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #generatedFields(List)", "deprecated" : false, "documentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "generatedFields", "fluentSetterDocumentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
\n@param generatedFields Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> \n@return Returns a reference to this object so that method calls can be chained together.",
        "fluentSetterMethodName" : "generatedFields",
        "getterDocumentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> ",
        "getterModel" : {
          "returnType" : "java.util.List",
          "documentation" : null
        },
        "http" : {
          "additionalMarshallingPath" : null,
          "additionalUnmarshallingPath" : null,
          "flattened" : false,
          "greedy" : false,
          "header" : false,
          "isPayload" : false,
          "isStreaming" : false,
          "location" : null,
          "marshallLocation" : "PAYLOAD",
          "marshallLocationName" : "generatedFields",
          "queryString" : false,
          "requiresLength" : false,
          "statusCode" : false,
          "unmarshallLocationName" : "generatedFields",
          "uri" : false
        },
        "idempotencyToken" : false,
        "isBinary" : false,
        "jsonValue" : false,
        "list" : true,
        "listModel" : {
          "implType" : "java.util.ArrayList",
          "interfaceType" : "java.util.List",
          "listMemberModel" : {
            "beanStyleGetterMethodName" : "getMember",
            "beanStyleSetterMethodName" : "setMember",
            "c2jName" : "member",
            "c2jShape" : "Field",
            "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Field.Builder} avoiding the need to create one manually via {@link Field#builder()}.\n\nWhen the {@link Consumer} completes, {@link Field.Builder#build()} is called immediately and its result is passed to {@link #member(Field)}.\n@param member a consumer that will call methods on {@link Field.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Field)",
            "deprecated" : false,
            "documentation" : "",
            "endpointDiscoveryId" : false,
            "enumType" : null,
            "eventHeader" : false,
            "eventPayload" : false,
            "fluentEnumGetterMethodName" : null,
            "fluentEnumSetterMethodName" : null,
            "fluentGetterMethodName" : "member",
            "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.",
            "fluentSetterMethodName" : "member",
            "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.",
            "getterModel" : {
              "returnType" : "Field",
              "documentation" : null
            },
            "http" : {
              "additionalMarshallingPath" : null,
              "additionalUnmarshallingPath" : null,
              "flattened" : false,
              "greedy" : false,
              "header" : false,
              "isPayload" : false,
              "isStreaming" : false,
              "location" : null,
              "marshallLocation" : "PAYLOAD",
              "marshallLocationName" : "member",
              "queryString" : false,
              "requiresLength" : false,
              "statusCode" : false,
              "unmarshallLocationName" : "member",
              "uri" : false
            },
            "idempotencyToken" : false,
            "isBinary" : false,
            "jsonValue" : false,
            "list" : false,
            "listModel" : null,
            "map" : false,
            "mapModel" : null,
            "marshallingType" : "SDK_POJO",
            "name" : "Member",
            "sensitive" : false,
            "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.",
            "setterMethodName" : "setMember",
            "setterModel" : {
              "variableDeclarationType" : "Field",
              "variableName" : "member",
              "variableType" : "Field",
              "documentation" : null,
              "simpleType" : "Field",
              "variableSetterType" : "Field"
            },
            "simple" : false,
            "timestampFormat" : null,
            "variable" : {
              "variableDeclarationType" : "Field",
              "variableName" : "member",
              "variableType" : "Field",
              "documentation" : "",
              "simpleType" : "Field",
              "variableSetterType" : "Field"
            },
            "xmlAttribute" : false,
            "xmlNameSpaceUri" : null
          },
          "memberLocationName" : null,
          "memberType" : "Field",
          "map" : false,
          "memberAdditionalMarshallingPath" : null,
          "memberAdditionalUnmarshallingPath" : null,
          "simple" : false,
          "simpleType" : "Field",
          "templateImplType" : "java.util.ArrayList",
          "templateType" : "java.util.List"
        },
        "map" : false,
        "mapModel" : null,
        "marshallingType" : "LIST",
        "name" : "GeneratedFields",
        "sensitive" : false,
        "setterDocumentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
\n@param generatedFields Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> ",
        "setterMethodName" : "setGeneratedFields",
        "setterModel" : {
          "variableDeclarationType" : "java.util.List",
          "variableName" : "generatedFields",
          "variableType" : "java.util.List",
          "documentation" : null,
          "simpleType" : "List",
          "variableSetterType" : "java.util.Collection"
        },
        "simple" : false,
        "timestampFormat" : null,
        "variable" : {
          "variableDeclarationType" : "java.util.List",
          "variableName" : "generatedFields",
          "variableType" : "java.util.List",
          "documentation" : "

Values for fields generated during the request.

 <note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note> 
", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getNumberOfRecordsUpdated", "beanStyleSetterMethodName" : "setNumberOfRecordsUpdated", "c2jName" : "numberOfRecordsUpdated", "c2jShape" : "RecordsUpdated", "defaultConsumerFluentSetterDocumentation" : "

The number of records updated by the request.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #numberOfRecordsUpdated(Long)}.\n@param numberOfRecordsUpdated a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #numberOfRecordsUpdated(Long)", "deprecated" : false, "documentation" : "

The number of records updated by the request.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "numberOfRecordsUpdated", "fluentSetterDocumentation" : "

The number of records updated by the request.

\n@param numberOfRecordsUpdated The number of records updated by the request.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "numberOfRecordsUpdated", "getterDocumentation" : "

The number of records updated by the request.

\n@return The number of records updated by the request.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "numberOfRecordsUpdated", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "numberOfRecordsUpdated", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "NumberOfRecordsUpdated", "sensitive" : false, "setterDocumentation" : "

The number of records updated by the request.

\n@param numberOfRecordsUpdated The number of records updated by the request.", "setterMethodName" : "setNumberOfRecordsUpdated", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "numberOfRecordsUpdated", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "numberOfRecordsUpdated", "variableType" : "Long", "documentation" : "

The number of records updated by the request.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getRecords", "beanStyleSetterMethodName" : "setRecords", "c2jName" : "records", "c2jShape" : "SqlRecords", "defaultConsumerFluentSetterDocumentation" : "

The records returned by the SQL statement.

\nThis is a convenience that creates an instance of the {@link List>.Builder} avoiding the need to create one manually via {@link List>#builder()}.\n\nWhen the {@link Consumer} completes, {@link List>.Builder#build()} is called immediately and its result is passed to {@link #records(List>)}.\n@param records a consumer that will call methods on {@link List>.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #records(List>)", "deprecated" : false, "documentation" : "

The records returned by the SQL statement.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "records", "fluentSetterDocumentation" : "

The records returned by the SQL statement.

\n@param records The records returned by the SQL statement.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "records", "getterDocumentation" : "

The records returned by the SQL statement.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The records returned by the SQL statement.", "getterModel" : { "returnType" : "java.util.List>", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "records", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "records", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "FieldList", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #member(List)}.\n@param member a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(List)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Field", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Field.Builder} avoiding the need to create one manually via {@link Field#builder()}.\n\nWhen the {@link Consumer} completes, {@link Field.Builder#build()} is called immediately and its result is passed to {@link #member(Field)}.\n@param member a consumer that will call methods on {@link Field.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Field)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Field", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Field", "variableName" : "member", "variableType" : "Field", "documentation" : null, "simpleType" : "Field", "variableSetterType" : "Field" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Field", "variableName" : "member", "variableType" : "Field", "documentation" : "", "simpleType" : "Field", "variableSetterType" : "Field" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Field", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Field", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "member", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "member", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "java.util.List", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "List", "templateImplType" : "java.util.ArrayList>", "templateType" : "java.util.List>" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Records", "sensitive" : false, "setterDocumentation" : "

The records returned by the SQL statement.

\n@param records The records returned by the SQL statement.", "setterMethodName" : "setRecords", "setterModel" : { "variableDeclarationType" : "java.util.List>", "variableName" : "records", "variableType" : "java.util.List>", "documentation" : null, "simpleType" : "List>", "variableSetterType" : "java.util.Collection>" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List>", "variableName" : "records", "variableType" : "java.util.List>", "documentation" : "

The records returned by the SQL statement.

", "simpleType" : "List>", "variableSetterType" : "java.util.Collection>" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "ExecuteStatementResponse", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "ExecuteStatementResponse", "variableName" : "executeStatementResponse", "variableType" : "ExecuteStatementResponse", "documentation" : null, "simpleType" : "ExecuteStatementResponse", "variableSetterType" : "ExecuteStatementResponse" }, "wrapper" : false, "xmlNamespace" : null }, "Field" : { "c2jName" : "Field", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

Contains a value.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getArrayValue", "beanStyleSetterMethodName" : "setArrayValue", "c2jName" : "arrayValue", "c2jShape" : "ArrayValue", "defaultConsumerFluentSetterDocumentation" : "

An array of values.

\nThis is a convenience that creates an instance of the {@link ArrayValue.Builder} avoiding the need to create one manually via {@link ArrayValue#builder()}.\n\nWhen the {@link Consumer} completes, {@link ArrayValue.Builder#build()} is called immediately and its result is passed to {@link #arrayValue(ArrayValue)}.\n@param arrayValue a consumer that will call methods on {@link ArrayValue.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #arrayValue(ArrayValue)", "deprecated" : false, "documentation" : "

An array of values.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "arrayValue", "fluentSetterDocumentation" : "

An array of values.

\n@param arrayValue An array of values.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "arrayValue", "getterDocumentation" : "

An array of values.

\n@return An array of values.", "getterModel" : { "returnType" : "ArrayValue", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "arrayValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "arrayValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "ArrayValue", "sensitive" : false, "setterDocumentation" : "

An array of values.

\n@param arrayValue An array of values.", "setterMethodName" : "setArrayValue", "setterModel" : { "variableDeclarationType" : "ArrayValue", "variableName" : "arrayValue", "variableType" : "ArrayValue", "documentation" : null, "simpleType" : "ArrayValue", "variableSetterType" : "ArrayValue" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ArrayValue", "variableName" : "arrayValue", "variableType" : "ArrayValue", "documentation" : "

An array of values.

", "simpleType" : "ArrayValue", "variableSetterType" : "ArrayValue" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getBlobValue", "beanStyleSetterMethodName" : "setBlobValue", "c2jName" : "blobValue", "c2jShape" : "Blob", "defaultConsumerFluentSetterDocumentation" : "

A value of BLOB data type.

\nThis is a convenience that creates an instance of the {@link SdkBytes.Builder} avoiding the need to create one manually via {@link SdkBytes#builder()}.\n\nWhen the {@link Consumer} completes, {@link SdkBytes.Builder#build()} is called immediately and its result is passed to {@link #blobValue(SdkBytes)}.\n@param blobValue a consumer that will call methods on {@link SdkBytes.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #blobValue(SdkBytes)", "deprecated" : false, "documentation" : "

A value of BLOB data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "blobValue", "fluentSetterDocumentation" : "

A value of BLOB data type.

\n@param blobValue A value of BLOB data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "blobValue", "getterDocumentation" : "

A value of BLOB data type.

\n@return A value of BLOB data type.", "getterModel" : { "returnType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "blobValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "blobValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_BYTES", "name" : "BlobValue", "sensitive" : false, "setterDocumentation" : "

A value of BLOB data type.

\n@param blobValue A value of BLOB data type.", "setterMethodName" : "setBlobValue", "setterModel" : { "variableDeclarationType" : "software.amazon.awssdk.core.SdkBytes", "variableName" : "blobValue", "variableType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : null, "simpleType" : "SdkBytes", "variableSetterType" : "software.amazon.awssdk.core.SdkBytes" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "software.amazon.awssdk.core.SdkBytes", "variableName" : "blobValue", "variableType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : "

A value of BLOB data type.

", "simpleType" : "SdkBytes", "variableSetterType" : "software.amazon.awssdk.core.SdkBytes" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getBooleanValue", "beanStyleSetterMethodName" : "setBooleanValue", "c2jName" : "booleanValue", "c2jShape" : "BoxedBoolean", "defaultConsumerFluentSetterDocumentation" : "

A value of Boolean data type.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #booleanValue(Boolean)}.\n@param booleanValue a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #booleanValue(Boolean)", "deprecated" : false, "documentation" : "

A value of Boolean data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "booleanValue", "fluentSetterDocumentation" : "

A value of Boolean data type.

\n@param booleanValue A value of Boolean data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "booleanValue", "getterDocumentation" : "

A value of Boolean data type.

\n@return A value of Boolean data type.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "booleanValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "booleanValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "BooleanValue", "sensitive" : false, "setterDocumentation" : "

A value of Boolean data type.

\n@param booleanValue A value of Boolean data type.", "setterMethodName" : "setBooleanValue", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "booleanValue", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "booleanValue", "variableType" : "Boolean", "documentation" : "

A value of Boolean data type.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getDoubleValue", "beanStyleSetterMethodName" : "setDoubleValue", "c2jName" : "doubleValue", "c2jShape" : "BoxedDouble", "defaultConsumerFluentSetterDocumentation" : "

A value of double data type.

\nThis is a convenience that creates an instance of the {@link Double.Builder} avoiding the need to create one manually via {@link Double#builder()}.\n\nWhen the {@link Consumer} completes, {@link Double.Builder#build()} is called immediately and its result is passed to {@link #doubleValue(Double)}.\n@param doubleValue a consumer that will call methods on {@link Double.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #doubleValue(Double)", "deprecated" : false, "documentation" : "

A value of double data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "doubleValue", "fluentSetterDocumentation" : "

A value of double data type.

\n@param doubleValue A value of double data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "doubleValue", "getterDocumentation" : "

A value of double data type.

\n@return A value of double data type.", "getterModel" : { "returnType" : "Double", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "doubleValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "doubleValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "DOUBLE", "name" : "DoubleValue", "sensitive" : false, "setterDocumentation" : "

A value of double data type.

\n@param doubleValue A value of double data type.", "setterMethodName" : "setDoubleValue", "setterModel" : { "variableDeclarationType" : "Double", "variableName" : "doubleValue", "variableType" : "Double", "documentation" : null, "simpleType" : "Double", "variableSetterType" : "Double" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Double", "variableName" : "doubleValue", "variableType" : "Double", "documentation" : "

A value of double data type.

", "simpleType" : "Double", "variableSetterType" : "Double" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getIsNull", "beanStyleSetterMethodName" : "setIsNull", "c2jName" : "isNull", "c2jShape" : "BoxedBoolean", "defaultConsumerFluentSetterDocumentation" : "

A NULL value.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isNull(Boolean)}.\n@param isNull a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isNull(Boolean)", "deprecated" : false, "documentation" : "

A NULL value.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isNull", "fluentSetterDocumentation" : "

A NULL value.

\n@param isNull A NULL value.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isNull", "getterDocumentation" : "

A NULL value.

\n@return A NULL value.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isNull", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isNull", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsNull", "sensitive" : false, "setterDocumentation" : "

A NULL value.

\n@param isNull A NULL value.", "setterMethodName" : "setIsNull", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isNull", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isNull", "variableType" : "Boolean", "documentation" : "

A NULL value.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getLongValue", "beanStyleSetterMethodName" : "setLongValue", "c2jName" : "longValue", "c2jShape" : "BoxedLong", "defaultConsumerFluentSetterDocumentation" : "

A value of long data type.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #longValue(Long)}.\n@param longValue a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #longValue(Long)", "deprecated" : false, "documentation" : "

A value of long data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "longValue", "fluentSetterDocumentation" : "

A value of long data type.

\n@param longValue A value of long data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "longValue", "getterDocumentation" : "

A value of long data type.

\n@return A value of long data type.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "longValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "longValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "LongValue", "sensitive" : false, "setterDocumentation" : "

A value of long data type.

\n@param longValue A value of long data type.", "setterMethodName" : "setLongValue", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "longValue", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "longValue", "variableType" : "Long", "documentation" : "

A value of long data type.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getStringValue", "beanStyleSetterMethodName" : "setStringValue", "c2jName" : "stringValue", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

A value of string data type.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #stringValue(String)}.\n@param stringValue a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #stringValue(String)", "deprecated" : false, "documentation" : "

A value of string data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "stringValue", "fluentSetterDocumentation" : "

A value of string data type.

\n@param stringValue A value of string data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "stringValue", "getterDocumentation" : "

A value of string data type.

\n@return A value of string data type.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "stringValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "stringValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "StringValue", "sensitive" : false, "setterDocumentation" : "

A value of string data type.

\n@param stringValue A value of string data type.", "setterMethodName" : "setStringValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "stringValue", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "stringValue", "variableType" : "String", "documentation" : "

A value of string data type.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ArrayValue" : { "beanStyleGetterMethodName" : "getArrayValue", "beanStyleSetterMethodName" : "setArrayValue", "c2jName" : "arrayValue", "c2jShape" : "ArrayValue", "defaultConsumerFluentSetterDocumentation" : "

An array of values.

\nThis is a convenience that creates an instance of the {@link ArrayValue.Builder} avoiding the need to create one manually via {@link ArrayValue#builder()}.\n\nWhen the {@link Consumer} completes, {@link ArrayValue.Builder#build()} is called immediately and its result is passed to {@link #arrayValue(ArrayValue)}.\n@param arrayValue a consumer that will call methods on {@link ArrayValue.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #arrayValue(ArrayValue)", "deprecated" : false, "documentation" : "

An array of values.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "arrayValue", "fluentSetterDocumentation" : "

An array of values.

\n@param arrayValue An array of values.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "arrayValue", "getterDocumentation" : "

An array of values.

\n@return An array of values.", "getterModel" : { "returnType" : "ArrayValue", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "arrayValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "arrayValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "ArrayValue", "sensitive" : false, "setterDocumentation" : "

An array of values.

\n@param arrayValue An array of values.", "setterMethodName" : "setArrayValue", "setterModel" : { "variableDeclarationType" : "ArrayValue", "variableName" : "arrayValue", "variableType" : "ArrayValue", "documentation" : null, "simpleType" : "ArrayValue", "variableSetterType" : "ArrayValue" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ArrayValue", "variableName" : "arrayValue", "variableType" : "ArrayValue", "documentation" : "

An array of values.

", "simpleType" : "ArrayValue", "variableSetterType" : "ArrayValue" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "BlobValue" : { "beanStyleGetterMethodName" : "getBlobValue", "beanStyleSetterMethodName" : "setBlobValue", "c2jName" : "blobValue", "c2jShape" : "Blob", "defaultConsumerFluentSetterDocumentation" : "

A value of BLOB data type.

\nThis is a convenience that creates an instance of the {@link SdkBytes.Builder} avoiding the need to create one manually via {@link SdkBytes#builder()}.\n\nWhen the {@link Consumer} completes, {@link SdkBytes.Builder#build()} is called immediately and its result is passed to {@link #blobValue(SdkBytes)}.\n@param blobValue a consumer that will call methods on {@link SdkBytes.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #blobValue(SdkBytes)", "deprecated" : false, "documentation" : "

A value of BLOB data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "blobValue", "fluentSetterDocumentation" : "

A value of BLOB data type.

\n@param blobValue A value of BLOB data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "blobValue", "getterDocumentation" : "

A value of BLOB data type.

\n@return A value of BLOB data type.", "getterModel" : { "returnType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "blobValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "blobValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_BYTES", "name" : "BlobValue", "sensitive" : false, "setterDocumentation" : "

A value of BLOB data type.

\n@param blobValue A value of BLOB data type.", "setterMethodName" : "setBlobValue", "setterModel" : { "variableDeclarationType" : "software.amazon.awssdk.core.SdkBytes", "variableName" : "blobValue", "variableType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : null, "simpleType" : "SdkBytes", "variableSetterType" : "software.amazon.awssdk.core.SdkBytes" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "software.amazon.awssdk.core.SdkBytes", "variableName" : "blobValue", "variableType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : "

A value of BLOB data type.

", "simpleType" : "SdkBytes", "variableSetterType" : "software.amazon.awssdk.core.SdkBytes" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "BooleanValue" : { "beanStyleGetterMethodName" : "getBooleanValue", "beanStyleSetterMethodName" : "setBooleanValue", "c2jName" : "booleanValue", "c2jShape" : "BoxedBoolean", "defaultConsumerFluentSetterDocumentation" : "

A value of Boolean data type.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #booleanValue(Boolean)}.\n@param booleanValue a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #booleanValue(Boolean)", "deprecated" : false, "documentation" : "

A value of Boolean data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "booleanValue", "fluentSetterDocumentation" : "

A value of Boolean data type.

\n@param booleanValue A value of Boolean data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "booleanValue", "getterDocumentation" : "

A value of Boolean data type.

\n@return A value of Boolean data type.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "booleanValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "booleanValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "BooleanValue", "sensitive" : false, "setterDocumentation" : "

A value of Boolean data type.

\n@param booleanValue A value of Boolean data type.", "setterMethodName" : "setBooleanValue", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "booleanValue", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "booleanValue", "variableType" : "Boolean", "documentation" : "

A value of Boolean data type.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "DoubleValue" : { "beanStyleGetterMethodName" : "getDoubleValue", "beanStyleSetterMethodName" : "setDoubleValue", "c2jName" : "doubleValue", "c2jShape" : "BoxedDouble", "defaultConsumerFluentSetterDocumentation" : "

A value of double data type.

\nThis is a convenience that creates an instance of the {@link Double.Builder} avoiding the need to create one manually via {@link Double#builder()}.\n\nWhen the {@link Consumer} completes, {@link Double.Builder#build()} is called immediately and its result is passed to {@link #doubleValue(Double)}.\n@param doubleValue a consumer that will call methods on {@link Double.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #doubleValue(Double)", "deprecated" : false, "documentation" : "

A value of double data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "doubleValue", "fluentSetterDocumentation" : "

A value of double data type.

\n@param doubleValue A value of double data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "doubleValue", "getterDocumentation" : "

A value of double data type.

\n@return A value of double data type.", "getterModel" : { "returnType" : "Double", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "doubleValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "doubleValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "DOUBLE", "name" : "DoubleValue", "sensitive" : false, "setterDocumentation" : "

A value of double data type.

\n@param doubleValue A value of double data type.", "setterMethodName" : "setDoubleValue", "setterModel" : { "variableDeclarationType" : "Double", "variableName" : "doubleValue", "variableType" : "Double", "documentation" : null, "simpleType" : "Double", "variableSetterType" : "Double" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Double", "variableName" : "doubleValue", "variableType" : "Double", "documentation" : "

A value of double data type.

", "simpleType" : "Double", "variableSetterType" : "Double" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "IsNull" : { "beanStyleGetterMethodName" : "getIsNull", "beanStyleSetterMethodName" : "setIsNull", "c2jName" : "isNull", "c2jShape" : "BoxedBoolean", "defaultConsumerFluentSetterDocumentation" : "

A NULL value.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isNull(Boolean)}.\n@param isNull a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isNull(Boolean)", "deprecated" : false, "documentation" : "

A NULL value.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isNull", "fluentSetterDocumentation" : "

A NULL value.

\n@param isNull A NULL value.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isNull", "getterDocumentation" : "

A NULL value.

\n@return A NULL value.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isNull", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isNull", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsNull", "sensitive" : false, "setterDocumentation" : "

A NULL value.

\n@param isNull A NULL value.", "setterMethodName" : "setIsNull", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isNull", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isNull", "variableType" : "Boolean", "documentation" : "

A NULL value.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "LongValue" : { "beanStyleGetterMethodName" : "getLongValue", "beanStyleSetterMethodName" : "setLongValue", "c2jName" : "longValue", "c2jShape" : "BoxedLong", "defaultConsumerFluentSetterDocumentation" : "

A value of long data type.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #longValue(Long)}.\n@param longValue a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #longValue(Long)", "deprecated" : false, "documentation" : "

A value of long data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "longValue", "fluentSetterDocumentation" : "

A value of long data type.

\n@param longValue A value of long data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "longValue", "getterDocumentation" : "

A value of long data type.

\n@return A value of long data type.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "longValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "longValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "LongValue", "sensitive" : false, "setterDocumentation" : "

A value of long data type.

\n@param longValue A value of long data type.", "setterMethodName" : "setLongValue", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "longValue", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "longValue", "variableType" : "Long", "documentation" : "

A value of long data type.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "StringValue" : { "beanStyleGetterMethodName" : "getStringValue", "beanStyleSetterMethodName" : "setStringValue", "c2jName" : "stringValue", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

A value of string data type.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #stringValue(String)}.\n@param stringValue a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #stringValue(String)", "deprecated" : false, "documentation" : "

A value of string data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "stringValue", "fluentSetterDocumentation" : "

A value of string data type.

\n@param stringValue A value of string data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "stringValue", "getterDocumentation" : "

A value of string data type.

\n@return A value of string data type.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "stringValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "stringValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "StringValue", "sensitive" : false, "setterDocumentation" : "

A value of string data type.

\n@param stringValue A value of string data type.", "setterMethodName" : "setStringValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "stringValue", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "stringValue", "variableType" : "String", "documentation" : "

A value of string data type.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getArrayValue", "beanStyleSetterMethodName" : "setArrayValue", "c2jName" : "arrayValue", "c2jShape" : "ArrayValue", "defaultConsumerFluentSetterDocumentation" : "

An array of values.

\nThis is a convenience that creates an instance of the {@link ArrayValue.Builder} avoiding the need to create one manually via {@link ArrayValue#builder()}.\n\nWhen the {@link Consumer} completes, {@link ArrayValue.Builder#build()} is called immediately and its result is passed to {@link #arrayValue(ArrayValue)}.\n@param arrayValue a consumer that will call methods on {@link ArrayValue.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #arrayValue(ArrayValue)", "deprecated" : false, "documentation" : "

An array of values.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "arrayValue", "fluentSetterDocumentation" : "

An array of values.

\n@param arrayValue An array of values.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "arrayValue", "getterDocumentation" : "

An array of values.

\n@return An array of values.", "getterModel" : { "returnType" : "ArrayValue", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "arrayValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "arrayValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "ArrayValue", "sensitive" : false, "setterDocumentation" : "

An array of values.

\n@param arrayValue An array of values.", "setterMethodName" : "setArrayValue", "setterModel" : { "variableDeclarationType" : "ArrayValue", "variableName" : "arrayValue", "variableType" : "ArrayValue", "documentation" : null, "simpleType" : "ArrayValue", "variableSetterType" : "ArrayValue" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ArrayValue", "variableName" : "arrayValue", "variableType" : "ArrayValue", "documentation" : "

An array of values.

", "simpleType" : "ArrayValue", "variableSetterType" : "ArrayValue" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getBlobValue", "beanStyleSetterMethodName" : "setBlobValue", "c2jName" : "blobValue", "c2jShape" : "Blob", "defaultConsumerFluentSetterDocumentation" : "

A value of BLOB data type.

\nThis is a convenience that creates an instance of the {@link SdkBytes.Builder} avoiding the need to create one manually via {@link SdkBytes#builder()}.\n\nWhen the {@link Consumer} completes, {@link SdkBytes.Builder#build()} is called immediately and its result is passed to {@link #blobValue(SdkBytes)}.\n@param blobValue a consumer that will call methods on {@link SdkBytes.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #blobValue(SdkBytes)", "deprecated" : false, "documentation" : "

A value of BLOB data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "blobValue", "fluentSetterDocumentation" : "

A value of BLOB data type.

\n@param blobValue A value of BLOB data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "blobValue", "getterDocumentation" : "

A value of BLOB data type.

\n@return A value of BLOB data type.", "getterModel" : { "returnType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "blobValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "blobValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_BYTES", "name" : "BlobValue", "sensitive" : false, "setterDocumentation" : "

A value of BLOB data type.

\n@param blobValue A value of BLOB data type.", "setterMethodName" : "setBlobValue", "setterModel" : { "variableDeclarationType" : "software.amazon.awssdk.core.SdkBytes", "variableName" : "blobValue", "variableType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : null, "simpleType" : "SdkBytes", "variableSetterType" : "software.amazon.awssdk.core.SdkBytes" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "software.amazon.awssdk.core.SdkBytes", "variableName" : "blobValue", "variableType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : "

A value of BLOB data type.

", "simpleType" : "SdkBytes", "variableSetterType" : "software.amazon.awssdk.core.SdkBytes" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getBooleanValue", "beanStyleSetterMethodName" : "setBooleanValue", "c2jName" : "booleanValue", "c2jShape" : "BoxedBoolean", "defaultConsumerFluentSetterDocumentation" : "

A value of Boolean data type.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #booleanValue(Boolean)}.\n@param booleanValue a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #booleanValue(Boolean)", "deprecated" : false, "documentation" : "

A value of Boolean data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "booleanValue", "fluentSetterDocumentation" : "

A value of Boolean data type.

\n@param booleanValue A value of Boolean data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "booleanValue", "getterDocumentation" : "

A value of Boolean data type.

\n@return A value of Boolean data type.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "booleanValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "booleanValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "BooleanValue", "sensitive" : false, "setterDocumentation" : "

A value of Boolean data type.

\n@param booleanValue A value of Boolean data type.", "setterMethodName" : "setBooleanValue", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "booleanValue", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "booleanValue", "variableType" : "Boolean", "documentation" : "

A value of Boolean data type.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getDoubleValue", "beanStyleSetterMethodName" : "setDoubleValue", "c2jName" : "doubleValue", "c2jShape" : "BoxedDouble", "defaultConsumerFluentSetterDocumentation" : "

A value of double data type.

\nThis is a convenience that creates an instance of the {@link Double.Builder} avoiding the need to create one manually via {@link Double#builder()}.\n\nWhen the {@link Consumer} completes, {@link Double.Builder#build()} is called immediately and its result is passed to {@link #doubleValue(Double)}.\n@param doubleValue a consumer that will call methods on {@link Double.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #doubleValue(Double)", "deprecated" : false, "documentation" : "

A value of double data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "doubleValue", "fluentSetterDocumentation" : "

A value of double data type.

\n@param doubleValue A value of double data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "doubleValue", "getterDocumentation" : "

A value of double data type.

\n@return A value of double data type.", "getterModel" : { "returnType" : "Double", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "doubleValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "doubleValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "DOUBLE", "name" : "DoubleValue", "sensitive" : false, "setterDocumentation" : "

A value of double data type.

\n@param doubleValue A value of double data type.", "setterMethodName" : "setDoubleValue", "setterModel" : { "variableDeclarationType" : "Double", "variableName" : "doubleValue", "variableType" : "Double", "documentation" : null, "simpleType" : "Double", "variableSetterType" : "Double" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Double", "variableName" : "doubleValue", "variableType" : "Double", "documentation" : "

A value of double data type.

", "simpleType" : "Double", "variableSetterType" : "Double" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getIsNull", "beanStyleSetterMethodName" : "setIsNull", "c2jName" : "isNull", "c2jShape" : "BoxedBoolean", "defaultConsumerFluentSetterDocumentation" : "

A NULL value.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isNull(Boolean)}.\n@param isNull a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isNull(Boolean)", "deprecated" : false, "documentation" : "

A NULL value.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isNull", "fluentSetterDocumentation" : "

A NULL value.

\n@param isNull A NULL value.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isNull", "getterDocumentation" : "

A NULL value.

\n@return A NULL value.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isNull", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isNull", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsNull", "sensitive" : false, "setterDocumentation" : "

A NULL value.

\n@param isNull A NULL value.", "setterMethodName" : "setIsNull", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isNull", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isNull", "variableType" : "Boolean", "documentation" : "

A NULL value.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getLongValue", "beanStyleSetterMethodName" : "setLongValue", "c2jName" : "longValue", "c2jShape" : "BoxedLong", "defaultConsumerFluentSetterDocumentation" : "

A value of long data type.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #longValue(Long)}.\n@param longValue a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #longValue(Long)", "deprecated" : false, "documentation" : "

A value of long data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "longValue", "fluentSetterDocumentation" : "

A value of long data type.

\n@param longValue A value of long data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "longValue", "getterDocumentation" : "

A value of long data type.

\n@return A value of long data type.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "longValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "longValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "LongValue", "sensitive" : false, "setterDocumentation" : "

A value of long data type.

\n@param longValue A value of long data type.", "setterMethodName" : "setLongValue", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "longValue", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "longValue", "variableType" : "Long", "documentation" : "

A value of long data type.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getStringValue", "beanStyleSetterMethodName" : "setStringValue", "c2jName" : "stringValue", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

A value of string data type.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #stringValue(String)}.\n@param stringValue a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #stringValue(String)", "deprecated" : false, "documentation" : "

A value of string data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "stringValue", "fluentSetterDocumentation" : "

A value of string data type.

\n@param stringValue A value of string data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "stringValue", "getterDocumentation" : "

A value of string data type.

\n@return A value of string data type.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "stringValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "stringValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "StringValue", "sensitive" : false, "setterDocumentation" : "

A value of string data type.

\n@param stringValue A value of string data type.", "setterMethodName" : "setStringValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "stringValue", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "stringValue", "variableType" : "String", "documentation" : "

A value of string data type.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "Field", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "Field", "variableName" : "field", "variableType" : "Field", "documentation" : null, "simpleType" : "Field", "variableSetterType" : "Field" }, "wrapper" : false, "xmlNamespace" : null }, "ForbiddenException" : { "c2jName" : "ForbiddenException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

There are insufficient privileges to make the call.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : "ForbiddenException", "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : 403, "marshaller" : null, "members" : [ ], "membersAsMap" : { }, "nonStreamingMembers" : [ ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "ForbiddenException", "simpleMethod" : false, "unmarshaller" : null, "variable" : { "variableDeclarationType" : "ForbiddenException", "variableName" : "forbiddenException", "variableType" : "ForbiddenException", "documentation" : null, "simpleType" : "ForbiddenException", "variableSetterType" : "ForbiddenException" }, "wrapper" : false, "xmlNamespace" : null }, "InternalServerErrorException" : { "c2jName" : "InternalServerErrorException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

An internal error occurred.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : "InternalServerErrorException", "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : 500, "marshaller" : null, "members" : [ ], "membersAsMap" : { }, "nonStreamingMembers" : [ ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "InternalServerErrorException", "simpleMethod" : false, "unmarshaller" : null, "variable" : { "variableDeclarationType" : "InternalServerErrorException", "variableName" : "internalServerErrorException", "variableType" : "InternalServerErrorException", "documentation" : null, "simpleType" : "InternalServerErrorException", "variableSetterType" : "InternalServerErrorException" }, "wrapper" : false, "xmlNamespace" : null }, "NotFoundException" : { "c2jName" : "NotFoundException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The resourceArn, secretArn, or transactionId value can't be found.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : "NotFoundException", "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : 404, "marshaller" : null, "members" : [ ], "membersAsMap" : { }, "nonStreamingMembers" : [ ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "NotFoundException", "simpleMethod" : false, "unmarshaller" : null, "variable" : { "variableDeclarationType" : "NotFoundException", "variableName" : "notFoundException", "variableType" : "NotFoundException", "documentation" : null, "simpleType" : "NotFoundException", "variableSetterType" : "NotFoundException" }, "wrapper" : false, "xmlNamespace" : null }, "Record" : { "c2jName" : "Record", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

A record returned by a call.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getValues", "beanStyleSetterMethodName" : "setValues", "c2jName" : "values", "c2jShape" : "Row", "defaultConsumerFluentSetterDocumentation" : "

The values returned in the record.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #values(List)}.\n@param values a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #values(List)", "deprecated" : false, "documentation" : "

The values returned in the record.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "values", "fluentSetterDocumentation" : "

The values returned in the record.

\n@param values The values returned in the record.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "values", "getterDocumentation" : "

The values returned in the record.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The values returned in the record.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "values", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "values", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Value", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Value.Builder} avoiding the need to create one manually via {@link Value#builder()}.\n\nWhen the {@link Consumer} completes, {@link Value.Builder#build()} is called immediately and its result is passed to {@link #member(Value)}.\n@param member a consumer that will call methods on {@link Value.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Value)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Value", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : null, "simpleType" : "Value", "variableSetterType" : "Value" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : "", "simpleType" : "Value", "variableSetterType" : "Value" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Value", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Value", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Values", "sensitive" : false, "setterDocumentation" : "

The values returned in the record.

\n@param values The values returned in the record.", "setterMethodName" : "setValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "values", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "values", "variableType" : "java.util.List", "documentation" : "

The values returned in the record.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "Values" : { "beanStyleGetterMethodName" : "getValues", "beanStyleSetterMethodName" : "setValues", "c2jName" : "values", "c2jShape" : "Row", "defaultConsumerFluentSetterDocumentation" : "

The values returned in the record.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #values(List)}.\n@param values a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #values(List)", "deprecated" : false, "documentation" : "

The values returned in the record.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "values", "fluentSetterDocumentation" : "

The values returned in the record.

\n@param values The values returned in the record.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "values", "getterDocumentation" : "

The values returned in the record.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The values returned in the record.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "values", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "values", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Value", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Value.Builder} avoiding the need to create one manually via {@link Value#builder()}.\n\nWhen the {@link Consumer} completes, {@link Value.Builder#build()} is called immediately and its result is passed to {@link #member(Value)}.\n@param member a consumer that will call methods on {@link Value.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Value)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Value", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : null, "simpleType" : "Value", "variableSetterType" : "Value" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : "", "simpleType" : "Value", "variableSetterType" : "Value" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Value", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Value", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Values", "sensitive" : false, "setterDocumentation" : "

The values returned in the record.

\n@param values The values returned in the record.", "setterMethodName" : "setValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "values", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "values", "variableType" : "java.util.List", "documentation" : "

The values returned in the record.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getValues", "beanStyleSetterMethodName" : "setValues", "c2jName" : "values", "c2jShape" : "Row", "defaultConsumerFluentSetterDocumentation" : "

The values returned in the record.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #values(List)}.\n@param values a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #values(List)", "deprecated" : false, "documentation" : "

The values returned in the record.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "values", "fluentSetterDocumentation" : "

The values returned in the record.

\n@param values The values returned in the record.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "values", "getterDocumentation" : "

The values returned in the record.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The values returned in the record.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "values", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "values", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Value", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Value.Builder} avoiding the need to create one manually via {@link Value#builder()}.\n\nWhen the {@link Consumer} completes, {@link Value.Builder#build()} is called immediately and its result is passed to {@link #member(Value)}.\n@param member a consumer that will call methods on {@link Value.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Value)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Value", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : null, "simpleType" : "Value", "variableSetterType" : "Value" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : "", "simpleType" : "Value", "variableSetterType" : "Value" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Value", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Value", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Values", "sensitive" : false, "setterDocumentation" : "

The values returned in the record.

\n@param values The values returned in the record.", "setterMethodName" : "setValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "values", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "values", "variableType" : "java.util.List", "documentation" : "

The values returned in the record.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "Record", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "Record", "variableName" : "record", "variableType" : "Record", "documentation" : null, "simpleType" : "Record", "variableSetterType" : "Record" }, "wrapper" : false, "xmlNamespace" : null }, "ResultFrame" : { "c2jName" : "ResultFrame", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The result set returned by a SQL statement.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getRecords", "beanStyleSetterMethodName" : "setRecords", "c2jName" : "records", "c2jShape" : "Records", "defaultConsumerFluentSetterDocumentation" : "

The records in the result set.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #records(List)}.\n@param records a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #records(List)", "deprecated" : false, "documentation" : "

The records in the result set.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "records", "fluentSetterDocumentation" : "

The records in the result set.

\n@param records The records in the result set.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "records", "getterDocumentation" : "

The records in the result set.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The records in the result set.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "records", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "records", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Record", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Record.Builder} avoiding the need to create one manually via {@link Record#builder()}.\n\nWhen the {@link Consumer} completes, {@link Record.Builder#build()} is called immediately and its result is passed to {@link #member(Record)}.\n@param member a consumer that will call methods on {@link Record.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Record)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Record", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Record", "variableName" : "member", "variableType" : "Record", "documentation" : null, "simpleType" : "Record", "variableSetterType" : "Record" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Record", "variableName" : "member", "variableType" : "Record", "documentation" : "", "simpleType" : "Record", "variableSetterType" : "Record" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Record", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Record", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Records", "sensitive" : false, "setterDocumentation" : "

The records in the result set.

\n@param records The records in the result set.", "setterMethodName" : "setRecords", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "records", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "records", "variableType" : "java.util.List", "documentation" : "

The records in the result set.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getResultSetMetadata", "beanStyleSetterMethodName" : "setResultSetMetadata", "c2jName" : "resultSetMetadata", "c2jShape" : "ResultSetMetadata", "defaultConsumerFluentSetterDocumentation" : "

The result-set metadata in the result set.

\nThis is a convenience that creates an instance of the {@link ResultSetMetadata.Builder} avoiding the need to create one manually via {@link ResultSetMetadata#builder()}.\n\nWhen the {@link Consumer} completes, {@link ResultSetMetadata.Builder#build()} is called immediately and its result is passed to {@link #resultSetMetadata(ResultSetMetadata)}.\n@param resultSetMetadata a consumer that will call methods on {@link ResultSetMetadata.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resultSetMetadata(ResultSetMetadata)", "deprecated" : false, "documentation" : "

The result-set metadata in the result set.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resultSetMetadata", "fluentSetterDocumentation" : "

The result-set metadata in the result set.

\n@param resultSetMetadata The result-set metadata in the result set.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resultSetMetadata", "getterDocumentation" : "

The result-set metadata in the result set.

\n@return The result-set metadata in the result set.", "getterModel" : { "returnType" : "ResultSetMetadata", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resultSetMetadata", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resultSetMetadata", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "ResultSetMetadata", "sensitive" : false, "setterDocumentation" : "

The result-set metadata in the result set.

\n@param resultSetMetadata The result-set metadata in the result set.", "setterMethodName" : "setResultSetMetadata", "setterModel" : { "variableDeclarationType" : "ResultSetMetadata", "variableName" : "resultSetMetadata", "variableType" : "ResultSetMetadata", "documentation" : null, "simpleType" : "ResultSetMetadata", "variableSetterType" : "ResultSetMetadata" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ResultSetMetadata", "variableName" : "resultSetMetadata", "variableType" : "ResultSetMetadata", "documentation" : "

The result-set metadata in the result set.

", "simpleType" : "ResultSetMetadata", "variableSetterType" : "ResultSetMetadata" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "Records" : { "beanStyleGetterMethodName" : "getRecords", "beanStyleSetterMethodName" : "setRecords", "c2jName" : "records", "c2jShape" : "Records", "defaultConsumerFluentSetterDocumentation" : "

The records in the result set.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #records(List)}.\n@param records a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #records(List)", "deprecated" : false, "documentation" : "

The records in the result set.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "records", "fluentSetterDocumentation" : "

The records in the result set.

\n@param records The records in the result set.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "records", "getterDocumentation" : "

The records in the result set.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The records in the result set.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "records", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "records", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Record", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Record.Builder} avoiding the need to create one manually via {@link Record#builder()}.\n\nWhen the {@link Consumer} completes, {@link Record.Builder#build()} is called immediately and its result is passed to {@link #member(Record)}.\n@param member a consumer that will call methods on {@link Record.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Record)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Record", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Record", "variableName" : "member", "variableType" : "Record", "documentation" : null, "simpleType" : "Record", "variableSetterType" : "Record" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Record", "variableName" : "member", "variableType" : "Record", "documentation" : "", "simpleType" : "Record", "variableSetterType" : "Record" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Record", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Record", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Records", "sensitive" : false, "setterDocumentation" : "

The records in the result set.

\n@param records The records in the result set.", "setterMethodName" : "setRecords", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "records", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "records", "variableType" : "java.util.List", "documentation" : "

The records in the result set.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "ResultSetMetadata" : { "beanStyleGetterMethodName" : "getResultSetMetadata", "beanStyleSetterMethodName" : "setResultSetMetadata", "c2jName" : "resultSetMetadata", "c2jShape" : "ResultSetMetadata", "defaultConsumerFluentSetterDocumentation" : "

The result-set metadata in the result set.

\nThis is a convenience that creates an instance of the {@link ResultSetMetadata.Builder} avoiding the need to create one manually via {@link ResultSetMetadata#builder()}.\n\nWhen the {@link Consumer} completes, {@link ResultSetMetadata.Builder#build()} is called immediately and its result is passed to {@link #resultSetMetadata(ResultSetMetadata)}.\n@param resultSetMetadata a consumer that will call methods on {@link ResultSetMetadata.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resultSetMetadata(ResultSetMetadata)", "deprecated" : false, "documentation" : "

The result-set metadata in the result set.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resultSetMetadata", "fluentSetterDocumentation" : "

The result-set metadata in the result set.

\n@param resultSetMetadata The result-set metadata in the result set.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resultSetMetadata", "getterDocumentation" : "

The result-set metadata in the result set.

\n@return The result-set metadata in the result set.", "getterModel" : { "returnType" : "ResultSetMetadata", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resultSetMetadata", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resultSetMetadata", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "ResultSetMetadata", "sensitive" : false, "setterDocumentation" : "

The result-set metadata in the result set.

\n@param resultSetMetadata The result-set metadata in the result set.", "setterMethodName" : "setResultSetMetadata", "setterModel" : { "variableDeclarationType" : "ResultSetMetadata", "variableName" : "resultSetMetadata", "variableType" : "ResultSetMetadata", "documentation" : null, "simpleType" : "ResultSetMetadata", "variableSetterType" : "ResultSetMetadata" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ResultSetMetadata", "variableName" : "resultSetMetadata", "variableType" : "ResultSetMetadata", "documentation" : "

The result-set metadata in the result set.

", "simpleType" : "ResultSetMetadata", "variableSetterType" : "ResultSetMetadata" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getRecords", "beanStyleSetterMethodName" : "setRecords", "c2jName" : "records", "c2jShape" : "Records", "defaultConsumerFluentSetterDocumentation" : "

The records in the result set.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #records(List)}.\n@param records a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #records(List)", "deprecated" : false, "documentation" : "

The records in the result set.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "records", "fluentSetterDocumentation" : "

The records in the result set.

\n@param records The records in the result set.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "records", "getterDocumentation" : "

The records in the result set.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The records in the result set.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "records", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "records", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Record", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Record.Builder} avoiding the need to create one manually via {@link Record#builder()}.\n\nWhen the {@link Consumer} completes, {@link Record.Builder#build()} is called immediately and its result is passed to {@link #member(Record)}.\n@param member a consumer that will call methods on {@link Record.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Record)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Record", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Record", "variableName" : "member", "variableType" : "Record", "documentation" : null, "simpleType" : "Record", "variableSetterType" : "Record" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Record", "variableName" : "member", "variableType" : "Record", "documentation" : "", "simpleType" : "Record", "variableSetterType" : "Record" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Record", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Record", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Records", "sensitive" : false, "setterDocumentation" : "

The records in the result set.

\n@param records The records in the result set.", "setterMethodName" : "setRecords", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "records", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "records", "variableType" : "java.util.List", "documentation" : "

The records in the result set.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getResultSetMetadata", "beanStyleSetterMethodName" : "setResultSetMetadata", "c2jName" : "resultSetMetadata", "c2jShape" : "ResultSetMetadata", "defaultConsumerFluentSetterDocumentation" : "

The result-set metadata in the result set.

\nThis is a convenience that creates an instance of the {@link ResultSetMetadata.Builder} avoiding the need to create one manually via {@link ResultSetMetadata#builder()}.\n\nWhen the {@link Consumer} completes, {@link ResultSetMetadata.Builder#build()} is called immediately and its result is passed to {@link #resultSetMetadata(ResultSetMetadata)}.\n@param resultSetMetadata a consumer that will call methods on {@link ResultSetMetadata.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resultSetMetadata(ResultSetMetadata)", "deprecated" : false, "documentation" : "

The result-set metadata in the result set.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resultSetMetadata", "fluentSetterDocumentation" : "

The result-set metadata in the result set.

\n@param resultSetMetadata The result-set metadata in the result set.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resultSetMetadata", "getterDocumentation" : "

The result-set metadata in the result set.

\n@return The result-set metadata in the result set.", "getterModel" : { "returnType" : "ResultSetMetadata", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resultSetMetadata", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resultSetMetadata", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "ResultSetMetadata", "sensitive" : false, "setterDocumentation" : "

The result-set metadata in the result set.

\n@param resultSetMetadata The result-set metadata in the result set.", "setterMethodName" : "setResultSetMetadata", "setterModel" : { "variableDeclarationType" : "ResultSetMetadata", "variableName" : "resultSetMetadata", "variableType" : "ResultSetMetadata", "documentation" : null, "simpleType" : "ResultSetMetadata", "variableSetterType" : "ResultSetMetadata" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ResultSetMetadata", "variableName" : "resultSetMetadata", "variableType" : "ResultSetMetadata", "documentation" : "

The result-set metadata in the result set.

", "simpleType" : "ResultSetMetadata", "variableSetterType" : "ResultSetMetadata" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "ResultFrame", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "ResultFrame", "variableName" : "resultFrame", "variableType" : "ResultFrame", "documentation" : null, "simpleType" : "ResultFrame", "variableSetterType" : "ResultFrame" }, "wrapper" : false, "xmlNamespace" : null }, "ResultSetMetadata" : { "c2jName" : "ResultSetMetadata", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The metadata of the result set returned by a SQL statement.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getColumnCount", "beanStyleSetterMethodName" : "setColumnCount", "c2jName" : "columnCount", "c2jShape" : "Long", "defaultConsumerFluentSetterDocumentation" : "

The number of columns in the result set.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #columnCount(Long)}.\n@param columnCount a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #columnCount(Long)", "deprecated" : false, "documentation" : "

The number of columns in the result set.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "columnCount", "fluentSetterDocumentation" : "

The number of columns in the result set.

\n@param columnCount The number of columns in the result set.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "columnCount", "getterDocumentation" : "

The number of columns in the result set.

\n@return The number of columns in the result set.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "columnCount", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "columnCount", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "ColumnCount", "sensitive" : false, "setterDocumentation" : "

The number of columns in the result set.

\n@param columnCount The number of columns in the result set.", "setterMethodName" : "setColumnCount", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "columnCount", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "columnCount", "variableType" : "Long", "documentation" : "

The number of columns in the result set.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getColumnMetadata", "beanStyleSetterMethodName" : "setColumnMetadata", "c2jName" : "columnMetadata", "c2jShape" : "Metadata", "defaultConsumerFluentSetterDocumentation" : "

The metadata of the columns in the result set.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #columnMetadata(List)}.\n@param columnMetadata a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #columnMetadata(List)", "deprecated" : false, "documentation" : "

The metadata of the columns in the result set.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "columnMetadata", "fluentSetterDocumentation" : "

The metadata of the columns in the result set.

\n@param columnMetadata The metadata of the columns in the result set.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "columnMetadata", "getterDocumentation" : "

The metadata of the columns in the result set.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The metadata of the columns in the result set.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "columnMetadata", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "columnMetadata", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "ColumnMetadata", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link ColumnMetadata.Builder} avoiding the need to create one manually via {@link ColumnMetadata#builder()}.\n\nWhen the {@link Consumer} completes, {@link ColumnMetadata.Builder#build()} is called immediately and its result is passed to {@link #member(ColumnMetadata)}.\n@param member a consumer that will call methods on {@link ColumnMetadata.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(ColumnMetadata)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "ColumnMetadata", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ColumnMetadata", "variableName" : "member", "variableType" : "ColumnMetadata", "documentation" : null, "simpleType" : "ColumnMetadata", "variableSetterType" : "ColumnMetadata" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ColumnMetadata", "variableName" : "member", "variableType" : "ColumnMetadata", "documentation" : "", "simpleType" : "ColumnMetadata", "variableSetterType" : "ColumnMetadata" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ColumnMetadata", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "ColumnMetadata", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "ColumnMetadata", "sensitive" : false, "setterDocumentation" : "

The metadata of the columns in the result set.

\n@param columnMetadata The metadata of the columns in the result set.", "setterMethodName" : "setColumnMetadata", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "columnMetadata", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "columnMetadata", "variableType" : "java.util.List", "documentation" : "

The metadata of the columns in the result set.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ColumnCount" : { "beanStyleGetterMethodName" : "getColumnCount", "beanStyleSetterMethodName" : "setColumnCount", "c2jName" : "columnCount", "c2jShape" : "Long", "defaultConsumerFluentSetterDocumentation" : "

The number of columns in the result set.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #columnCount(Long)}.\n@param columnCount a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #columnCount(Long)", "deprecated" : false, "documentation" : "

The number of columns in the result set.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "columnCount", "fluentSetterDocumentation" : "

The number of columns in the result set.

\n@param columnCount The number of columns in the result set.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "columnCount", "getterDocumentation" : "

The number of columns in the result set.

\n@return The number of columns in the result set.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "columnCount", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "columnCount", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "ColumnCount", "sensitive" : false, "setterDocumentation" : "

The number of columns in the result set.

\n@param columnCount The number of columns in the result set.", "setterMethodName" : "setColumnCount", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "columnCount", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "columnCount", "variableType" : "Long", "documentation" : "

The number of columns in the result set.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "ColumnMetadata" : { "beanStyleGetterMethodName" : "getColumnMetadata", "beanStyleSetterMethodName" : "setColumnMetadata", "c2jName" : "columnMetadata", "c2jShape" : "Metadata", "defaultConsumerFluentSetterDocumentation" : "

The metadata of the columns in the result set.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #columnMetadata(List)}.\n@param columnMetadata a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #columnMetadata(List)", "deprecated" : false, "documentation" : "

The metadata of the columns in the result set.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "columnMetadata", "fluentSetterDocumentation" : "

The metadata of the columns in the result set.

\n@param columnMetadata The metadata of the columns in the result set.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "columnMetadata", "getterDocumentation" : "

The metadata of the columns in the result set.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The metadata of the columns in the result set.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "columnMetadata", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "columnMetadata", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "ColumnMetadata", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link ColumnMetadata.Builder} avoiding the need to create one manually via {@link ColumnMetadata#builder()}.\n\nWhen the {@link Consumer} completes, {@link ColumnMetadata.Builder#build()} is called immediately and its result is passed to {@link #member(ColumnMetadata)}.\n@param member a consumer that will call methods on {@link ColumnMetadata.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(ColumnMetadata)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "ColumnMetadata", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ColumnMetadata", "variableName" : "member", "variableType" : "ColumnMetadata", "documentation" : null, "simpleType" : "ColumnMetadata", "variableSetterType" : "ColumnMetadata" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ColumnMetadata", "variableName" : "member", "variableType" : "ColumnMetadata", "documentation" : "", "simpleType" : "ColumnMetadata", "variableSetterType" : "ColumnMetadata" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ColumnMetadata", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "ColumnMetadata", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "ColumnMetadata", "sensitive" : false, "setterDocumentation" : "

The metadata of the columns in the result set.

\n@param columnMetadata The metadata of the columns in the result set.", "setterMethodName" : "setColumnMetadata", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "columnMetadata", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "columnMetadata", "variableType" : "java.util.List", "documentation" : "

The metadata of the columns in the result set.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getColumnCount", "beanStyleSetterMethodName" : "setColumnCount", "c2jName" : "columnCount", "c2jShape" : "Long", "defaultConsumerFluentSetterDocumentation" : "

The number of columns in the result set.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #columnCount(Long)}.\n@param columnCount a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #columnCount(Long)", "deprecated" : false, "documentation" : "

The number of columns in the result set.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "columnCount", "fluentSetterDocumentation" : "

The number of columns in the result set.

\n@param columnCount The number of columns in the result set.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "columnCount", "getterDocumentation" : "

The number of columns in the result set.

\n@return The number of columns in the result set.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "columnCount", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "columnCount", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "ColumnCount", "sensitive" : false, "setterDocumentation" : "

The number of columns in the result set.

\n@param columnCount The number of columns in the result set.", "setterMethodName" : "setColumnCount", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "columnCount", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "columnCount", "variableType" : "Long", "documentation" : "

The number of columns in the result set.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getColumnMetadata", "beanStyleSetterMethodName" : "setColumnMetadata", "c2jName" : "columnMetadata", "c2jShape" : "Metadata", "defaultConsumerFluentSetterDocumentation" : "

The metadata of the columns in the result set.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #columnMetadata(List)}.\n@param columnMetadata a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #columnMetadata(List)", "deprecated" : false, "documentation" : "

The metadata of the columns in the result set.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "columnMetadata", "fluentSetterDocumentation" : "

The metadata of the columns in the result set.

\n@param columnMetadata The metadata of the columns in the result set.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "columnMetadata", "getterDocumentation" : "

The metadata of the columns in the result set.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The metadata of the columns in the result set.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "columnMetadata", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "columnMetadata", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "ColumnMetadata", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link ColumnMetadata.Builder} avoiding the need to create one manually via {@link ColumnMetadata#builder()}.\n\nWhen the {@link Consumer} completes, {@link ColumnMetadata.Builder#build()} is called immediately and its result is passed to {@link #member(ColumnMetadata)}.\n@param member a consumer that will call methods on {@link ColumnMetadata.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(ColumnMetadata)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "ColumnMetadata", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ColumnMetadata", "variableName" : "member", "variableType" : "ColumnMetadata", "documentation" : null, "simpleType" : "ColumnMetadata", "variableSetterType" : "ColumnMetadata" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ColumnMetadata", "variableName" : "member", "variableType" : "ColumnMetadata", "documentation" : "", "simpleType" : "ColumnMetadata", "variableSetterType" : "ColumnMetadata" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ColumnMetadata", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "ColumnMetadata", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "ColumnMetadata", "sensitive" : false, "setterDocumentation" : "

The metadata of the columns in the result set.

\n@param columnMetadata The metadata of the columns in the result set.", "setterMethodName" : "setColumnMetadata", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "columnMetadata", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "columnMetadata", "variableType" : "java.util.List", "documentation" : "

The metadata of the columns in the result set.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "ResultSetMetadata", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "ResultSetMetadata", "variableName" : "resultSetMetadata", "variableType" : "ResultSetMetadata", "documentation" : null, "simpleType" : "ResultSetMetadata", "variableSetterType" : "ResultSetMetadata" }, "wrapper" : false, "xmlNamespace" : null }, "ResultSetOptions" : { "c2jName" : "ResultSetOptions", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

Options that control how the result set is returned.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getDecimalReturnTypeAsString", "beanStyleSetterMethodName" : "setDecimalReturnType", "c2jName" : "decimalReturnType", "c2jShape" : "DecimalReturnType", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #decimalReturnTypeAsString(String)}.\n@param decimalReturnType a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #decimalReturnType(String)", "deprecated" : false, "documentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

", "endpointDiscoveryId" : false, "enumType" : "DecimalReturnType", "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : "decimalReturnType", "fluentEnumSetterMethodName" : "decimalReturnType", "fluentGetterMethodName" : "decimalReturnTypeAsString", "fluentSetterDocumentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n@param decimalReturnType A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n@see DecimalReturnType\n@return Returns a reference to this object so that method calls can be chained together.\n@see DecimalReturnType", "fluentSetterMethodName" : "decimalReturnType", "getterDocumentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n

\nIf the service returns an enum value that is not available in the current SDK version, {@link #decimalReturnType} will return {@link DecimalReturnType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #decimalReturnTypeAsString}.\n

\n@return A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n@see DecimalReturnType", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "decimalReturnType", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "decimalReturnType", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "DecimalReturnType", "sensitive" : false, "setterDocumentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n@param decimalReturnType A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n@see DecimalReturnType", "setterMethodName" : "setDecimalReturnType", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "decimalReturnType", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "decimalReturnType", "variableType" : "String", "documentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "DecimalReturnType" : { "beanStyleGetterMethodName" : "getDecimalReturnTypeAsString", "beanStyleSetterMethodName" : "setDecimalReturnType", "c2jName" : "decimalReturnType", "c2jShape" : "DecimalReturnType", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #decimalReturnTypeAsString(String)}.\n@param decimalReturnType a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #decimalReturnType(String)", "deprecated" : false, "documentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

", "endpointDiscoveryId" : false, "enumType" : "DecimalReturnType", "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : "decimalReturnType", "fluentEnumSetterMethodName" : "decimalReturnType", "fluentGetterMethodName" : "decimalReturnTypeAsString", "fluentSetterDocumentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n@param decimalReturnType A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n@see DecimalReturnType\n@return Returns a reference to this object so that method calls can be chained together.\n@see DecimalReturnType", "fluentSetterMethodName" : "decimalReturnType", "getterDocumentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n

\nIf the service returns an enum value that is not available in the current SDK version, {@link #decimalReturnType} will return {@link DecimalReturnType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #decimalReturnTypeAsString}.\n

\n@return A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n@see DecimalReturnType", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "decimalReturnType", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "decimalReturnType", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "DecimalReturnType", "sensitive" : false, "setterDocumentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n@param decimalReturnType A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n@see DecimalReturnType", "setterMethodName" : "setDecimalReturnType", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "decimalReturnType", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "decimalReturnType", "variableType" : "String", "documentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getDecimalReturnTypeAsString", "beanStyleSetterMethodName" : "setDecimalReturnType", "c2jName" : "decimalReturnType", "c2jShape" : "DecimalReturnType", "defaultConsumerFluentSetterDocumentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #decimalReturnTypeAsString(String)}.\n@param decimalReturnType a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #decimalReturnType(String)", "deprecated" : false, "documentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

", "endpointDiscoveryId" : false, "enumType" : "DecimalReturnType", "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : "decimalReturnType", "fluentEnumSetterMethodName" : "decimalReturnType", "fluentGetterMethodName" : "decimalReturnTypeAsString", "fluentSetterDocumentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n@param decimalReturnType A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n@see DecimalReturnType\n@return Returns a reference to this object so that method calls can be chained together.\n@see DecimalReturnType", "fluentSetterMethodName" : "decimalReturnType", "getterDocumentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n

\nIf the service returns an enum value that is not available in the current SDK version, {@link #decimalReturnType} will return {@link DecimalReturnType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from {@link #decimalReturnTypeAsString}.\n

\n@return A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n@see DecimalReturnType", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "decimalReturnType", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "decimalReturnType", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "DecimalReturnType", "sensitive" : false, "setterDocumentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n@param decimalReturnType A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

\n@see DecimalReturnType", "setterMethodName" : "setDecimalReturnType", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "decimalReturnType", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "decimalReturnType", "variableType" : "String", "documentation" : "

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "ResultSetOptions", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "ResultSetOptions", "variableName" : "resultSetOptions", "variableType" : "ResultSetOptions", "documentation" : null, "simpleType" : "ResultSetOptions", "variableSetterType" : "ResultSetOptions" }, "wrapper" : false, "xmlNamespace" : null }, "RollbackTransactionRequest" : { "c2jName" : "RollbackTransactionRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The request parameters represent the input of a request to perform a rollback of a transaction.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : { "action" : "RollbackTransaction", "locationName" : null, "requestUri" : "/RollbackTransaction", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "beanStyleGetterMethodName" : "getResourceArn", "beanStyleSetterMethodName" : "setResourceArn", "c2jName" : "resourceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceArn(String)}.\n@param resourceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resourceArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resourceArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@return The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resourceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resourceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "ResourceArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "setterMethodName" : "setResourceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSecretArn", "beanStyleSetterMethodName" : "setSecretArn", "c2jName" : "secretArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #secretArn(String)}.\n@param secretArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #secretArn(String)", "deprecated" : false, "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "secretArn", "fluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "secretArn", "getterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@return The name or ARN of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "secretArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "secretArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SecretArn", "sensitive" : false, "setterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.", "setterMethodName" : "setSecretArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getTransactionId", "beanStyleSetterMethodName" : "setTransactionId", "c2jName" : "transactionId", "c2jShape" : "Id", "defaultConsumerFluentSetterDocumentation" : "

The identifier of the transaction to roll back.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionId(String)}.\n@param transactionId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionId(String)", "deprecated" : false, "documentation" : "

The identifier of the transaction to roll back.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionId", "fluentSetterDocumentation" : "

The identifier of the transaction to roll back.

\n@param transactionId The identifier of the transaction to roll back.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionId", "getterDocumentation" : "

The identifier of the transaction to roll back.

\n@return The identifier of the transaction to roll back.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionId", "sensitive" : false, "setterDocumentation" : "

The identifier of the transaction to roll back.

\n@param transactionId The identifier of the transaction to roll back.", "setterMethodName" : "setTransactionId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : "

The identifier of the transaction to roll back.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ResourceArn" : { "beanStyleGetterMethodName" : "getResourceArn", "beanStyleSetterMethodName" : "setResourceArn", "c2jName" : "resourceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceArn(String)}.\n@param resourceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resourceArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resourceArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@return The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resourceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resourceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "ResourceArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "setterMethodName" : "setResourceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "SecretArn" : { "beanStyleGetterMethodName" : "getSecretArn", "beanStyleSetterMethodName" : "setSecretArn", "c2jName" : "secretArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #secretArn(String)}.\n@param secretArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #secretArn(String)", "deprecated" : false, "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "secretArn", "fluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "secretArn", "getterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@return The name or ARN of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "secretArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "secretArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SecretArn", "sensitive" : false, "setterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.", "setterMethodName" : "setSecretArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "TransactionId" : { "beanStyleGetterMethodName" : "getTransactionId", "beanStyleSetterMethodName" : "setTransactionId", "c2jName" : "transactionId", "c2jShape" : "Id", "defaultConsumerFluentSetterDocumentation" : "

The identifier of the transaction to roll back.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionId(String)}.\n@param transactionId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionId(String)", "deprecated" : false, "documentation" : "

The identifier of the transaction to roll back.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionId", "fluentSetterDocumentation" : "

The identifier of the transaction to roll back.

\n@param transactionId The identifier of the transaction to roll back.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionId", "getterDocumentation" : "

The identifier of the transaction to roll back.

\n@return The identifier of the transaction to roll back.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionId", "sensitive" : false, "setterDocumentation" : "

The identifier of the transaction to roll back.

\n@param transactionId The identifier of the transaction to roll back.", "setterMethodName" : "setTransactionId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : "

The identifier of the transaction to roll back.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getResourceArn", "beanStyleSetterMethodName" : "setResourceArn", "c2jName" : "resourceArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #resourceArn(String)}.\n@param resourceArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resourceArn(String)", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resourceArn", "fluentSetterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resourceArn", "getterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@return The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resourceArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resourceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "ResourceArn", "sensitive" : false, "setterDocumentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

\n@param resourceArn The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.", "setterMethodName" : "setResourceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "resourceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getSecretArn", "beanStyleSetterMethodName" : "setSecretArn", "c2jName" : "secretArn", "c2jShape" : "Arn", "defaultConsumerFluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #secretArn(String)}.\n@param secretArn a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #secretArn(String)", "deprecated" : false, "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "secretArn", "fluentSetterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "secretArn", "getterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@return The name or ARN of the secret that enables access to the DB cluster.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "secretArn", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "secretArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "SecretArn", "sensitive" : false, "setterDocumentation" : "

The name or ARN of the secret that enables access to the DB cluster.

\n@param secretArn The name or ARN of the secret that enables access to the DB cluster.", "setterMethodName" : "setSecretArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "secretArn", "variableType" : "String", "documentation" : "

The name or ARN of the secret that enables access to the DB cluster.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getTransactionId", "beanStyleSetterMethodName" : "setTransactionId", "c2jName" : "transactionId", "c2jShape" : "Id", "defaultConsumerFluentSetterDocumentation" : "

The identifier of the transaction to roll back.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionId(String)}.\n@param transactionId a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionId(String)", "deprecated" : false, "documentation" : "

The identifier of the transaction to roll back.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionId", "fluentSetterDocumentation" : "

The identifier of the transaction to roll back.

\n@param transactionId The identifier of the transaction to roll back.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionId", "getterDocumentation" : "

The identifier of the transaction to roll back.

\n@return The identifier of the transaction to roll back.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionId", "sensitive" : false, "setterDocumentation" : "

The identifier of the transaction to roll back.

\n@param transactionId The identifier of the transaction to roll back.", "setterMethodName" : "setTransactionId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionId", "variableType" : "String", "documentation" : "

The identifier of the transaction to roll back.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "resourceArn", "secretArn", "transactionId" ], "shapeName" : "RollbackTransactionRequest", "simpleMethod" : false, "unmarshaller" : null, "variable" : { "variableDeclarationType" : "RollbackTransactionRequest", "variableName" : "rollbackTransactionRequest", "variableType" : "RollbackTransactionRequest", "documentation" : null, "simpleType" : "RollbackTransactionRequest", "variableSetterType" : "RollbackTransactionRequest" }, "wrapper" : false, "xmlNamespace" : null }, "RollbackTransactionResponse" : { "c2jName" : "RollbackTransactionResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The response elements represent the output of a request to perform a rollback of a transaction.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getTransactionStatus", "beanStyleSetterMethodName" : "setTransactionStatus", "c2jName" : "transactionStatus", "c2jShape" : "TransactionStatus", "defaultConsumerFluentSetterDocumentation" : "

The status of the rollback operation.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionStatus(String)}.\n@param transactionStatus a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionStatus(String)", "deprecated" : false, "documentation" : "

The status of the rollback operation.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionStatus", "fluentSetterDocumentation" : "

The status of the rollback operation.

\n@param transactionStatus The status of the rollback operation.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionStatus", "getterDocumentation" : "

The status of the rollback operation.

\n@return The status of the rollback operation.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionStatus", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionStatus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionStatus", "sensitive" : false, "setterDocumentation" : "

The status of the rollback operation.

\n@param transactionStatus The status of the rollback operation.", "setterMethodName" : "setTransactionStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionStatus", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionStatus", "variableType" : "String", "documentation" : "

The status of the rollback operation.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "TransactionStatus" : { "beanStyleGetterMethodName" : "getTransactionStatus", "beanStyleSetterMethodName" : "setTransactionStatus", "c2jName" : "transactionStatus", "c2jShape" : "TransactionStatus", "defaultConsumerFluentSetterDocumentation" : "

The status of the rollback operation.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionStatus(String)}.\n@param transactionStatus a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionStatus(String)", "deprecated" : false, "documentation" : "

The status of the rollback operation.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionStatus", "fluentSetterDocumentation" : "

The status of the rollback operation.

\n@param transactionStatus The status of the rollback operation.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionStatus", "getterDocumentation" : "

The status of the rollback operation.

\n@return The status of the rollback operation.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionStatus", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionStatus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionStatus", "sensitive" : false, "setterDocumentation" : "

The status of the rollback operation.

\n@param transactionStatus The status of the rollback operation.", "setterMethodName" : "setTransactionStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionStatus", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionStatus", "variableType" : "String", "documentation" : "

The status of the rollback operation.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getTransactionStatus", "beanStyleSetterMethodName" : "setTransactionStatus", "c2jName" : "transactionStatus", "c2jShape" : "TransactionStatus", "defaultConsumerFluentSetterDocumentation" : "

The status of the rollback operation.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #transactionStatus(String)}.\n@param transactionStatus a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #transactionStatus(String)", "deprecated" : false, "documentation" : "

The status of the rollback operation.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "transactionStatus", "fluentSetterDocumentation" : "

The status of the rollback operation.

\n@param transactionStatus The status of the rollback operation.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "transactionStatus", "getterDocumentation" : "

The status of the rollback operation.

\n@return The status of the rollback operation.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "transactionStatus", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "transactionStatus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "TransactionStatus", "sensitive" : false, "setterDocumentation" : "

The status of the rollback operation.

\n@param transactionStatus The status of the rollback operation.", "setterMethodName" : "setTransactionStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "transactionStatus", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "transactionStatus", "variableType" : "String", "documentation" : "

The status of the rollback operation.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "RollbackTransactionResponse", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "RollbackTransactionResponse", "variableName" : "rollbackTransactionResponse", "variableType" : "RollbackTransactionResponse", "documentation" : null, "simpleType" : "RollbackTransactionResponse", "variableSetterType" : "RollbackTransactionResponse" }, "wrapper" : false, "xmlNamespace" : null }, "ServiceUnavailableErrorException" : { "c2jName" : "ServiceUnavailableError", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The service specified by the resourceArn parameter is not available.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : "ServiceUnavailableError", "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : 503, "marshaller" : null, "members" : [ ], "membersAsMap" : { }, "nonStreamingMembers" : [ ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "ServiceUnavailableErrorException", "simpleMethod" : false, "unmarshaller" : null, "variable" : { "variableDeclarationType" : "ServiceUnavailableErrorException", "variableName" : "serviceUnavailableErrorException", "variableType" : "ServiceUnavailableErrorException", "documentation" : null, "simpleType" : "ServiceUnavailableErrorException", "variableSetterType" : "ServiceUnavailableErrorException" }, "wrapper" : false, "xmlNamespace" : null }, "SqlParameter" : { "c2jName" : "SqlParameter", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

A parameter used in a SQL statement.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getName", "beanStyleSetterMethodName" : "setName", "c2jName" : "name", "c2jShape" : "ParameterName", "defaultConsumerFluentSetterDocumentation" : "

The name of the parameter.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #name(String)}.\n@param name a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #name(String)", "deprecated" : false, "documentation" : "

The name of the parameter.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "name", "fluentSetterDocumentation" : "

The name of the parameter.

\n@param name The name of the parameter.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "name", "getterDocumentation" : "

The name of the parameter.

\n@return The name of the parameter.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "name", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "name", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Name", "sensitive" : false, "setterDocumentation" : "

The name of the parameter.

\n@param name The name of the parameter.", "setterMethodName" : "setName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "

The name of the parameter.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getValue", "beanStyleSetterMethodName" : "setValue", "c2jName" : "value", "c2jShape" : "Field", "defaultConsumerFluentSetterDocumentation" : "

The value of the parameter.

\nThis is a convenience that creates an instance of the {@link Field.Builder} avoiding the need to create one manually via {@link Field#builder()}.\n\nWhen the {@link Consumer} completes, {@link Field.Builder#build()} is called immediately and its result is passed to {@link #value(Field)}.\n@param value a consumer that will call methods on {@link Field.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #value(Field)", "deprecated" : false, "documentation" : "

The value of the parameter.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "value", "fluentSetterDocumentation" : "

The value of the parameter.

\n@param value The value of the parameter.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "value", "getterDocumentation" : "

The value of the parameter.

\n@return The value of the parameter.", "getterModel" : { "returnType" : "Field", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "value", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "value", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Value", "sensitive" : false, "setterDocumentation" : "

The value of the parameter.

\n@param value The value of the parameter.", "setterMethodName" : "setValue", "setterModel" : { "variableDeclarationType" : "Field", "variableName" : "value", "variableType" : "Field", "documentation" : null, "simpleType" : "Field", "variableSetterType" : "Field" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Field", "variableName" : "value", "variableType" : "Field", "documentation" : "

The value of the parameter.

", "simpleType" : "Field", "variableSetterType" : "Field" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "Name" : { "beanStyleGetterMethodName" : "getName", "beanStyleSetterMethodName" : "setName", "c2jName" : "name", "c2jShape" : "ParameterName", "defaultConsumerFluentSetterDocumentation" : "

The name of the parameter.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #name(String)}.\n@param name a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #name(String)", "deprecated" : false, "documentation" : "

The name of the parameter.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "name", "fluentSetterDocumentation" : "

The name of the parameter.

\n@param name The name of the parameter.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "name", "getterDocumentation" : "

The name of the parameter.

\n@return The name of the parameter.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "name", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "name", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Name", "sensitive" : false, "setterDocumentation" : "

The name of the parameter.

\n@param name The name of the parameter.", "setterMethodName" : "setName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "

The name of the parameter.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "Value" : { "beanStyleGetterMethodName" : "getValue", "beanStyleSetterMethodName" : "setValue", "c2jName" : "value", "c2jShape" : "Field", "defaultConsumerFluentSetterDocumentation" : "

The value of the parameter.

\nThis is a convenience that creates an instance of the {@link Field.Builder} avoiding the need to create one manually via {@link Field#builder()}.\n\nWhen the {@link Consumer} completes, {@link Field.Builder#build()} is called immediately and its result is passed to {@link #value(Field)}.\n@param value a consumer that will call methods on {@link Field.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #value(Field)", "deprecated" : false, "documentation" : "

The value of the parameter.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "value", "fluentSetterDocumentation" : "

The value of the parameter.

\n@param value The value of the parameter.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "value", "getterDocumentation" : "

The value of the parameter.

\n@return The value of the parameter.", "getterModel" : { "returnType" : "Field", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "value", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "value", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Value", "sensitive" : false, "setterDocumentation" : "

The value of the parameter.

\n@param value The value of the parameter.", "setterMethodName" : "setValue", "setterModel" : { "variableDeclarationType" : "Field", "variableName" : "value", "variableType" : "Field", "documentation" : null, "simpleType" : "Field", "variableSetterType" : "Field" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Field", "variableName" : "value", "variableType" : "Field", "documentation" : "

The value of the parameter.

", "simpleType" : "Field", "variableSetterType" : "Field" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getName", "beanStyleSetterMethodName" : "setName", "c2jName" : "name", "c2jShape" : "ParameterName", "defaultConsumerFluentSetterDocumentation" : "

The name of the parameter.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #name(String)}.\n@param name a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #name(String)", "deprecated" : false, "documentation" : "

The name of the parameter.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "name", "fluentSetterDocumentation" : "

The name of the parameter.

\n@param name The name of the parameter.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "name", "getterDocumentation" : "

The name of the parameter.

\n@return The name of the parameter.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "name", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "name", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "Name", "sensitive" : false, "setterDocumentation" : "

The name of the parameter.

\n@param name The name of the parameter.", "setterMethodName" : "setName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "

The name of the parameter.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getValue", "beanStyleSetterMethodName" : "setValue", "c2jName" : "value", "c2jShape" : "Field", "defaultConsumerFluentSetterDocumentation" : "

The value of the parameter.

\nThis is a convenience that creates an instance of the {@link Field.Builder} avoiding the need to create one manually via {@link Field#builder()}.\n\nWhen the {@link Consumer} completes, {@link Field.Builder#build()} is called immediately and its result is passed to {@link #value(Field)}.\n@param value a consumer that will call methods on {@link Field.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #value(Field)", "deprecated" : false, "documentation" : "

The value of the parameter.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "value", "fluentSetterDocumentation" : "

The value of the parameter.

\n@param value The value of the parameter.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "value", "getterDocumentation" : "

The value of the parameter.

\n@return The value of the parameter.", "getterModel" : { "returnType" : "Field", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "value", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "value", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Value", "sensitive" : false, "setterDocumentation" : "

The value of the parameter.

\n@param value The value of the parameter.", "setterMethodName" : "setValue", "setterModel" : { "variableDeclarationType" : "Field", "variableName" : "value", "variableType" : "Field", "documentation" : null, "simpleType" : "Field", "variableSetterType" : "Field" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Field", "variableName" : "value", "variableType" : "Field", "documentation" : "

The value of the parameter.

", "simpleType" : "Field", "variableSetterType" : "Field" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "SqlParameter", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "SqlParameter", "variableName" : "sqlParameter", "variableType" : "SqlParameter", "documentation" : null, "simpleType" : "SqlParameter", "variableSetterType" : "SqlParameter" }, "wrapper" : false, "xmlNamespace" : null }, "SqlStatementResult" : { "c2jName" : "SqlStatementResult", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The result of a SQL statement.

 <important> <p>This data type is deprecated.</p> </important> 
", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getNumberOfRecordsUpdated", "beanStyleSetterMethodName" : "setNumberOfRecordsUpdated", "c2jName" : "numberOfRecordsUpdated", "c2jShape" : "RecordsUpdated", "defaultConsumerFluentSetterDocumentation" : "

The number of records updated by a SQL statement.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #numberOfRecordsUpdated(Long)}.\n@param numberOfRecordsUpdated a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #numberOfRecordsUpdated(Long)", "deprecated" : false, "documentation" : "

The number of records updated by a SQL statement.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "numberOfRecordsUpdated", "fluentSetterDocumentation" : "

The number of records updated by a SQL statement.

\n@param numberOfRecordsUpdated The number of records updated by a SQL statement.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "numberOfRecordsUpdated", "getterDocumentation" : "

The number of records updated by a SQL statement.

\n@return The number of records updated by a SQL statement.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "numberOfRecordsUpdated", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "numberOfRecordsUpdated", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "NumberOfRecordsUpdated", "sensitive" : false, "setterDocumentation" : "

The number of records updated by a SQL statement.

\n@param numberOfRecordsUpdated The number of records updated by a SQL statement.", "setterMethodName" : "setNumberOfRecordsUpdated", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "numberOfRecordsUpdated", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "numberOfRecordsUpdated", "variableType" : "Long", "documentation" : "

The number of records updated by a SQL statement.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getResultFrame", "beanStyleSetterMethodName" : "setResultFrame", "c2jName" : "resultFrame", "c2jShape" : "ResultFrame", "defaultConsumerFluentSetterDocumentation" : "

The result set of the SQL statement.

\nThis is a convenience that creates an instance of the {@link ResultFrame.Builder} avoiding the need to create one manually via {@link ResultFrame#builder()}.\n\nWhen the {@link Consumer} completes, {@link ResultFrame.Builder#build()} is called immediately and its result is passed to {@link #resultFrame(ResultFrame)}.\n@param resultFrame a consumer that will call methods on {@link ResultFrame.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resultFrame(ResultFrame)", "deprecated" : false, "documentation" : "

The result set of the SQL statement.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resultFrame", "fluentSetterDocumentation" : "

The result set of the SQL statement.

\n@param resultFrame The result set of the SQL statement.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resultFrame", "getterDocumentation" : "

The result set of the SQL statement.

\n@return The result set of the SQL statement.", "getterModel" : { "returnType" : "ResultFrame", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resultFrame", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resultFrame", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "ResultFrame", "sensitive" : false, "setterDocumentation" : "

The result set of the SQL statement.

\n@param resultFrame The result set of the SQL statement.", "setterMethodName" : "setResultFrame", "setterModel" : { "variableDeclarationType" : "ResultFrame", "variableName" : "resultFrame", "variableType" : "ResultFrame", "documentation" : null, "simpleType" : "ResultFrame", "variableSetterType" : "ResultFrame" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ResultFrame", "variableName" : "resultFrame", "variableType" : "ResultFrame", "documentation" : "

The result set of the SQL statement.

", "simpleType" : "ResultFrame", "variableSetterType" : "ResultFrame" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "NumberOfRecordsUpdated" : { "beanStyleGetterMethodName" : "getNumberOfRecordsUpdated", "beanStyleSetterMethodName" : "setNumberOfRecordsUpdated", "c2jName" : "numberOfRecordsUpdated", "c2jShape" : "RecordsUpdated", "defaultConsumerFluentSetterDocumentation" : "

The number of records updated by a SQL statement.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #numberOfRecordsUpdated(Long)}.\n@param numberOfRecordsUpdated a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #numberOfRecordsUpdated(Long)", "deprecated" : false, "documentation" : "

The number of records updated by a SQL statement.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "numberOfRecordsUpdated", "fluentSetterDocumentation" : "

The number of records updated by a SQL statement.

\n@param numberOfRecordsUpdated The number of records updated by a SQL statement.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "numberOfRecordsUpdated", "getterDocumentation" : "

The number of records updated by a SQL statement.

\n@return The number of records updated by a SQL statement.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "numberOfRecordsUpdated", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "numberOfRecordsUpdated", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "NumberOfRecordsUpdated", "sensitive" : false, "setterDocumentation" : "

The number of records updated by a SQL statement.

\n@param numberOfRecordsUpdated The number of records updated by a SQL statement.", "setterMethodName" : "setNumberOfRecordsUpdated", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "numberOfRecordsUpdated", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "numberOfRecordsUpdated", "variableType" : "Long", "documentation" : "

The number of records updated by a SQL statement.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "ResultFrame" : { "beanStyleGetterMethodName" : "getResultFrame", "beanStyleSetterMethodName" : "setResultFrame", "c2jName" : "resultFrame", "c2jShape" : "ResultFrame", "defaultConsumerFluentSetterDocumentation" : "

The result set of the SQL statement.

\nThis is a convenience that creates an instance of the {@link ResultFrame.Builder} avoiding the need to create one manually via {@link ResultFrame#builder()}.\n\nWhen the {@link Consumer} completes, {@link ResultFrame.Builder#build()} is called immediately and its result is passed to {@link #resultFrame(ResultFrame)}.\n@param resultFrame a consumer that will call methods on {@link ResultFrame.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resultFrame(ResultFrame)", "deprecated" : false, "documentation" : "

The result set of the SQL statement.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resultFrame", "fluentSetterDocumentation" : "

The result set of the SQL statement.

\n@param resultFrame The result set of the SQL statement.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resultFrame", "getterDocumentation" : "

The result set of the SQL statement.

\n@return The result set of the SQL statement.", "getterModel" : { "returnType" : "ResultFrame", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resultFrame", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resultFrame", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "ResultFrame", "sensitive" : false, "setterDocumentation" : "

The result set of the SQL statement.

\n@param resultFrame The result set of the SQL statement.", "setterMethodName" : "setResultFrame", "setterModel" : { "variableDeclarationType" : "ResultFrame", "variableName" : "resultFrame", "variableType" : "ResultFrame", "documentation" : null, "simpleType" : "ResultFrame", "variableSetterType" : "ResultFrame" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ResultFrame", "variableName" : "resultFrame", "variableType" : "ResultFrame", "documentation" : "

The result set of the SQL statement.

", "simpleType" : "ResultFrame", "variableSetterType" : "ResultFrame" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getNumberOfRecordsUpdated", "beanStyleSetterMethodName" : "setNumberOfRecordsUpdated", "c2jName" : "numberOfRecordsUpdated", "c2jShape" : "RecordsUpdated", "defaultConsumerFluentSetterDocumentation" : "

The number of records updated by a SQL statement.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #numberOfRecordsUpdated(Long)}.\n@param numberOfRecordsUpdated a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #numberOfRecordsUpdated(Long)", "deprecated" : false, "documentation" : "

The number of records updated by a SQL statement.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "numberOfRecordsUpdated", "fluentSetterDocumentation" : "

The number of records updated by a SQL statement.

\n@param numberOfRecordsUpdated The number of records updated by a SQL statement.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "numberOfRecordsUpdated", "getterDocumentation" : "

The number of records updated by a SQL statement.

\n@return The number of records updated by a SQL statement.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "numberOfRecordsUpdated", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "numberOfRecordsUpdated", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "NumberOfRecordsUpdated", "sensitive" : false, "setterDocumentation" : "

The number of records updated by a SQL statement.

\n@param numberOfRecordsUpdated The number of records updated by a SQL statement.", "setterMethodName" : "setNumberOfRecordsUpdated", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "numberOfRecordsUpdated", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "numberOfRecordsUpdated", "variableType" : "Long", "documentation" : "

The number of records updated by a SQL statement.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getResultFrame", "beanStyleSetterMethodName" : "setResultFrame", "c2jName" : "resultFrame", "c2jShape" : "ResultFrame", "defaultConsumerFluentSetterDocumentation" : "

The result set of the SQL statement.

\nThis is a convenience that creates an instance of the {@link ResultFrame.Builder} avoiding the need to create one manually via {@link ResultFrame#builder()}.\n\nWhen the {@link Consumer} completes, {@link ResultFrame.Builder#build()} is called immediately and its result is passed to {@link #resultFrame(ResultFrame)}.\n@param resultFrame a consumer that will call methods on {@link ResultFrame.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #resultFrame(ResultFrame)", "deprecated" : false, "documentation" : "

The result set of the SQL statement.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "resultFrame", "fluentSetterDocumentation" : "

The result set of the SQL statement.

\n@param resultFrame The result set of the SQL statement.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "resultFrame", "getterDocumentation" : "

The result set of the SQL statement.

\n@return The result set of the SQL statement.", "getterModel" : { "returnType" : "ResultFrame", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "resultFrame", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "resultFrame", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "ResultFrame", "sensitive" : false, "setterDocumentation" : "

The result set of the SQL statement.

\n@param resultFrame The result set of the SQL statement.", "setterMethodName" : "setResultFrame", "setterModel" : { "variableDeclarationType" : "ResultFrame", "variableName" : "resultFrame", "variableType" : "ResultFrame", "documentation" : null, "simpleType" : "ResultFrame", "variableSetterType" : "ResultFrame" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "ResultFrame", "variableName" : "resultFrame", "variableType" : "ResultFrame", "documentation" : "

The result set of the SQL statement.

", "simpleType" : "ResultFrame", "variableSetterType" : "ResultFrame" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "SqlStatementResult", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "SqlStatementResult", "variableName" : "sqlStatementResult", "variableType" : "SqlStatementResult", "documentation" : null, "simpleType" : "SqlStatementResult", "variableSetterType" : "SqlStatementResult" }, "wrapper" : false, "xmlNamespace" : null }, "StatementTimeoutException" : { "c2jName" : "StatementTimeoutException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The execution of the SQL statement timed out.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : "StatementTimeoutException", "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : 400, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getDbConnectionId", "beanStyleSetterMethodName" : "setDbConnectionId", "c2jName" : "dbConnectionId", "c2jShape" : "Long", "defaultConsumerFluentSetterDocumentation" : "

The database connection ID that executed the SQL statement.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #dbConnectionId(Long)}.\n@param dbConnectionId a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #dbConnectionId(Long)", "deprecated" : false, "documentation" : "

The database connection ID that executed the SQL statement.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "dbConnectionId", "fluentSetterDocumentation" : "

The database connection ID that executed the SQL statement.

\n@param dbConnectionId The database connection ID that executed the SQL statement.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "dbConnectionId", "getterDocumentation" : "

The database connection ID that executed the SQL statement.

\n@return The database connection ID that executed the SQL statement.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "dbConnectionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "dbConnectionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "DbConnectionId", "sensitive" : false, "setterDocumentation" : "

The database connection ID that executed the SQL statement.

\n@param dbConnectionId The database connection ID that executed the SQL statement.", "setterMethodName" : "setDbConnectionId", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "dbConnectionId", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "dbConnectionId", "variableType" : "Long", "documentation" : "

The database connection ID that executed the SQL statement.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "DbConnectionId" : { "beanStyleGetterMethodName" : "getDbConnectionId", "beanStyleSetterMethodName" : "setDbConnectionId", "c2jName" : "dbConnectionId", "c2jShape" : "Long", "defaultConsumerFluentSetterDocumentation" : "

The database connection ID that executed the SQL statement.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #dbConnectionId(Long)}.\n@param dbConnectionId a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #dbConnectionId(Long)", "deprecated" : false, "documentation" : "

The database connection ID that executed the SQL statement.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "dbConnectionId", "fluentSetterDocumentation" : "

The database connection ID that executed the SQL statement.

\n@param dbConnectionId The database connection ID that executed the SQL statement.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "dbConnectionId", "getterDocumentation" : "

The database connection ID that executed the SQL statement.

\n@return The database connection ID that executed the SQL statement.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "dbConnectionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "dbConnectionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "DbConnectionId", "sensitive" : false, "setterDocumentation" : "

The database connection ID that executed the SQL statement.

\n@param dbConnectionId The database connection ID that executed the SQL statement.", "setterMethodName" : "setDbConnectionId", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "dbConnectionId", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "dbConnectionId", "variableType" : "Long", "documentation" : "

The database connection ID that executed the SQL statement.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getDbConnectionId", "beanStyleSetterMethodName" : "setDbConnectionId", "c2jName" : "dbConnectionId", "c2jShape" : "Long", "defaultConsumerFluentSetterDocumentation" : "

The database connection ID that executed the SQL statement.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #dbConnectionId(Long)}.\n@param dbConnectionId a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #dbConnectionId(Long)", "deprecated" : false, "documentation" : "

The database connection ID that executed the SQL statement.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "dbConnectionId", "fluentSetterDocumentation" : "

The database connection ID that executed the SQL statement.

\n@param dbConnectionId The database connection ID that executed the SQL statement.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "dbConnectionId", "getterDocumentation" : "

The database connection ID that executed the SQL statement.

\n@return The database connection ID that executed the SQL statement.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "dbConnectionId", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "dbConnectionId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "DbConnectionId", "sensitive" : false, "setterDocumentation" : "

The database connection ID that executed the SQL statement.

\n@param dbConnectionId The database connection ID that executed the SQL statement.", "setterMethodName" : "setDbConnectionId", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "dbConnectionId", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "dbConnectionId", "variableType" : "Long", "documentation" : "

The database connection ID that executed the SQL statement.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "StatementTimeoutException", "simpleMethod" : false, "unmarshaller" : null, "variable" : { "variableDeclarationType" : "StatementTimeoutException", "variableName" : "statementTimeoutException", "variableType" : "StatementTimeoutException", "documentation" : null, "simpleType" : "StatementTimeoutException", "variableSetterType" : "StatementTimeoutException" }, "wrapper" : false, "xmlNamespace" : null }, "StructValue" : { "c2jName" : "StructValue", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

A structure value returned by a call.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getAttributes", "beanStyleSetterMethodName" : "setAttributes", "c2jName" : "attributes", "c2jShape" : "ArrayValueList", "defaultConsumerFluentSetterDocumentation" : "

The attributes returned in the record.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #attributes(List)}.\n@param attributes a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #attributes(List)", "deprecated" : false, "documentation" : "

The attributes returned in the record.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "attributes", "fluentSetterDocumentation" : "

The attributes returned in the record.

\n@param attributes The attributes returned in the record.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "attributes", "getterDocumentation" : "

The attributes returned in the record.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The attributes returned in the record.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "attributes", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "attributes", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Value", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Value.Builder} avoiding the need to create one manually via {@link Value#builder()}.\n\nWhen the {@link Consumer} completes, {@link Value.Builder#build()} is called immediately and its result is passed to {@link #member(Value)}.\n@param member a consumer that will call methods on {@link Value.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Value)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Value", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : null, "simpleType" : "Value", "variableSetterType" : "Value" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : "", "simpleType" : "Value", "variableSetterType" : "Value" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Value", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Value", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Attributes", "sensitive" : false, "setterDocumentation" : "

The attributes returned in the record.

\n@param attributes The attributes returned in the record.", "setterMethodName" : "setAttributes", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "attributes", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "attributes", "variableType" : "java.util.List", "documentation" : "

The attributes returned in the record.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "Attributes" : { "beanStyleGetterMethodName" : "getAttributes", "beanStyleSetterMethodName" : "setAttributes", "c2jName" : "attributes", "c2jShape" : "ArrayValueList", "defaultConsumerFluentSetterDocumentation" : "

The attributes returned in the record.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #attributes(List)}.\n@param attributes a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #attributes(List)", "deprecated" : false, "documentation" : "

The attributes returned in the record.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "attributes", "fluentSetterDocumentation" : "

The attributes returned in the record.

\n@param attributes The attributes returned in the record.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "attributes", "getterDocumentation" : "

The attributes returned in the record.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The attributes returned in the record.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "attributes", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "attributes", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Value", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Value.Builder} avoiding the need to create one manually via {@link Value#builder()}.\n\nWhen the {@link Consumer} completes, {@link Value.Builder#build()} is called immediately and its result is passed to {@link #member(Value)}.\n@param member a consumer that will call methods on {@link Value.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Value)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Value", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : null, "simpleType" : "Value", "variableSetterType" : "Value" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : "", "simpleType" : "Value", "variableSetterType" : "Value" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Value", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Value", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Attributes", "sensitive" : false, "setterDocumentation" : "

The attributes returned in the record.

\n@param attributes The attributes returned in the record.", "setterMethodName" : "setAttributes", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "attributes", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "attributes", "variableType" : "java.util.List", "documentation" : "

The attributes returned in the record.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getAttributes", "beanStyleSetterMethodName" : "setAttributes", "c2jName" : "attributes", "c2jShape" : "ArrayValueList", "defaultConsumerFluentSetterDocumentation" : "

The attributes returned in the record.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #attributes(List)}.\n@param attributes a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #attributes(List)", "deprecated" : false, "documentation" : "

The attributes returned in the record.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "attributes", "fluentSetterDocumentation" : "

The attributes returned in the record.

\n@param attributes The attributes returned in the record.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "attributes", "getterDocumentation" : "

The attributes returned in the record.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return The attributes returned in the record.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "attributes", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "attributes", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Value", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Value.Builder} avoiding the need to create one manually via {@link Value#builder()}.\n\nWhen the {@link Consumer} completes, {@link Value.Builder#build()} is called immediately and its result is passed to {@link #member(Value)}.\n@param member a consumer that will call methods on {@link Value.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Value)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Value", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : null, "simpleType" : "Value", "variableSetterType" : "Value" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : "", "simpleType" : "Value", "variableSetterType" : "Value" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Value", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Value", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "Attributes", "sensitive" : false, "setterDocumentation" : "

The attributes returned in the record.

\n@param attributes The attributes returned in the record.", "setterMethodName" : "setAttributes", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "attributes", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "attributes", "variableType" : "java.util.List", "documentation" : "

The attributes returned in the record.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "StructValue", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "StructValue", "variableName" : "structValue", "variableType" : "StructValue", "documentation" : null, "simpleType" : "StructValue", "variableSetterType" : "StructValue" }, "wrapper" : false, "xmlNamespace" : null }, "UpdateResult" : { "c2jName" : "UpdateResult", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

The response elements represent the results of an update.

", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getGeneratedFields", "beanStyleSetterMethodName" : "setGeneratedFields", "c2jName" : "generatedFields", "c2jShape" : "FieldList", "defaultConsumerFluentSetterDocumentation" : "

Values for fields generated during the request.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #generatedFields(List)}.\n@param generatedFields a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #generatedFields(List)", "deprecated" : false, "documentation" : "

Values for fields generated during the request.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "generatedFields", "fluentSetterDocumentation" : "

Values for fields generated during the request.

\n@param generatedFields Values for fields generated during the request.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "generatedFields", "getterDocumentation" : "

Values for fields generated during the request.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return Values for fields generated during the request.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "generatedFields", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "generatedFields", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Field", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Field.Builder} avoiding the need to create one manually via {@link Field#builder()}.\n\nWhen the {@link Consumer} completes, {@link Field.Builder#build()} is called immediately and its result is passed to {@link #member(Field)}.\n@param member a consumer that will call methods on {@link Field.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Field)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Field", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Field", "variableName" : "member", "variableType" : "Field", "documentation" : null, "simpleType" : "Field", "variableSetterType" : "Field" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Field", "variableName" : "member", "variableType" : "Field", "documentation" : "", "simpleType" : "Field", "variableSetterType" : "Field" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Field", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Field", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "GeneratedFields", "sensitive" : false, "setterDocumentation" : "

Values for fields generated during the request.

\n@param generatedFields Values for fields generated during the request.", "setterMethodName" : "setGeneratedFields", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "generatedFields", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "generatedFields", "variableType" : "java.util.List", "documentation" : "

Values for fields generated during the request.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "GeneratedFields" : { "beanStyleGetterMethodName" : "getGeneratedFields", "beanStyleSetterMethodName" : "setGeneratedFields", "c2jName" : "generatedFields", "c2jShape" : "FieldList", "defaultConsumerFluentSetterDocumentation" : "

Values for fields generated during the request.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #generatedFields(List)}.\n@param generatedFields a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #generatedFields(List)", "deprecated" : false, "documentation" : "

Values for fields generated during the request.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "generatedFields", "fluentSetterDocumentation" : "

Values for fields generated during the request.

\n@param generatedFields Values for fields generated during the request.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "generatedFields", "getterDocumentation" : "

Values for fields generated during the request.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return Values for fields generated during the request.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "generatedFields", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "generatedFields", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Field", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Field.Builder} avoiding the need to create one manually via {@link Field#builder()}.\n\nWhen the {@link Consumer} completes, {@link Field.Builder#build()} is called immediately and its result is passed to {@link #member(Field)}.\n@param member a consumer that will call methods on {@link Field.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Field)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Field", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Field", "variableName" : "member", "variableType" : "Field", "documentation" : null, "simpleType" : "Field", "variableSetterType" : "Field" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Field", "variableName" : "member", "variableType" : "Field", "documentation" : "", "simpleType" : "Field", "variableSetterType" : "Field" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Field", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Field", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "GeneratedFields", "sensitive" : false, "setterDocumentation" : "

Values for fields generated during the request.

\n@param generatedFields Values for fields generated during the request.", "setterMethodName" : "setGeneratedFields", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "generatedFields", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "generatedFields", "variableType" : "java.util.List", "documentation" : "

Values for fields generated during the request.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getGeneratedFields", "beanStyleSetterMethodName" : "setGeneratedFields", "c2jName" : "generatedFields", "c2jShape" : "FieldList", "defaultConsumerFluentSetterDocumentation" : "

Values for fields generated during the request.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #generatedFields(List)}.\n@param generatedFields a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #generatedFields(List)", "deprecated" : false, "documentation" : "

Values for fields generated during the request.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "generatedFields", "fluentSetterDocumentation" : "

Values for fields generated during the request.

\n@param generatedFields Values for fields generated during the request.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "generatedFields", "getterDocumentation" : "

Values for fields generated during the request.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return Values for fields generated during the request.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "generatedFields", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "generatedFields", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Field", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Field.Builder} avoiding the need to create one manually via {@link Field#builder()}.\n\nWhen the {@link Consumer} completes, {@link Field.Builder#build()} is called immediately and its result is passed to {@link #member(Field)}.\n@param member a consumer that will call methods on {@link Field.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Field)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Field", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Field", "variableName" : "member", "variableType" : "Field", "documentation" : null, "simpleType" : "Field", "variableSetterType" : "Field" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Field", "variableName" : "member", "variableType" : "Field", "documentation" : "", "simpleType" : "Field", "variableSetterType" : "Field" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Field", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Field", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "GeneratedFields", "sensitive" : false, "setterDocumentation" : "

Values for fields generated during the request.

\n@param generatedFields Values for fields generated during the request.", "setterMethodName" : "setGeneratedFields", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "generatedFields", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "generatedFields", "variableType" : "java.util.List", "documentation" : "

Values for fields generated during the request.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "UpdateResult", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "UpdateResult", "variableName" : "updateResult", "variableType" : "UpdateResult", "documentation" : null, "simpleType" : "UpdateResult", "variableSetterType" : "UpdateResult" }, "wrapper" : false, "xmlNamespace" : null }, "Value" : { "c2jName" : "Value", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false, "staxTargetDepthOffset" : 0 }, "deprecated" : false, "documentation" : "

Contains the value of a column.

 <important> <p>This data type is deprecated.</p> </important> 
", "endpointDiscovery" : null, "enums" : null, "errorCode" : null, "event" : false, "eventStream" : false, "explicitEventPayloadMember" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasRequiresLengthMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "httpStatusCode" : null, "marshaller" : null, "members" : [ { "beanStyleGetterMethodName" : "getArrayValues", "beanStyleSetterMethodName" : "setArrayValues", "c2jName" : "arrayValues", "c2jShape" : "ArrayValueList", "defaultConsumerFluentSetterDocumentation" : "

An array of column values.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #arrayValues(List)}.\n@param arrayValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #arrayValues(List)", "deprecated" : false, "documentation" : "

An array of column values.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "arrayValues", "fluentSetterDocumentation" : "

An array of column values.

\n@param arrayValues An array of column values.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "arrayValues", "getterDocumentation" : "

An array of column values.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of column values.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "arrayValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "arrayValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Value", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Value.Builder} avoiding the need to create one manually via {@link Value#builder()}.\n\nWhen the {@link Consumer} completes, {@link Value.Builder#build()} is called immediately and its result is passed to {@link #member(Value)}.\n@param member a consumer that will call methods on {@link Value.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Value)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Value", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : null, "simpleType" : "Value", "variableSetterType" : "Value" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : "", "simpleType" : "Value", "variableSetterType" : "Value" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Value", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Value", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "ArrayValues", "sensitive" : false, "setterDocumentation" : "

An array of column values.

\n@param arrayValues An array of column values.", "setterMethodName" : "setArrayValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "arrayValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "arrayValues", "variableType" : "java.util.List", "documentation" : "

An array of column values.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getBigIntValue", "beanStyleSetterMethodName" : "setBigIntValue", "c2jName" : "bigIntValue", "c2jShape" : "BoxedLong", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of big integer data type.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #bigIntValue(Long)}.\n@param bigIntValue a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #bigIntValue(Long)", "deprecated" : false, "documentation" : "

A value for a column of big integer data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "bigIntValue", "fluentSetterDocumentation" : "

A value for a column of big integer data type.

\n@param bigIntValue A value for a column of big integer data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "bigIntValue", "getterDocumentation" : "

A value for a column of big integer data type.

\n@return A value for a column of big integer data type.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "bigIntValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "bigIntValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "BigIntValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of big integer data type.

\n@param bigIntValue A value for a column of big integer data type.", "setterMethodName" : "setBigIntValue", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "bigIntValue", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "bigIntValue", "variableType" : "Long", "documentation" : "

A value for a column of big integer data type.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getBitValue", "beanStyleSetterMethodName" : "setBitValue", "c2jName" : "bitValue", "c2jShape" : "BoxedBoolean", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of BIT data type.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #bitValue(Boolean)}.\n@param bitValue a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #bitValue(Boolean)", "deprecated" : false, "documentation" : "

A value for a column of BIT data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "bitValue", "fluentSetterDocumentation" : "

A value for a column of BIT data type.

\n@param bitValue A value for a column of BIT data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "bitValue", "getterDocumentation" : "

A value for a column of BIT data type.

\n@return A value for a column of BIT data type.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "bitValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "bitValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "BitValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of BIT data type.

\n@param bitValue A value for a column of BIT data type.", "setterMethodName" : "setBitValue", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "bitValue", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "bitValue", "variableType" : "Boolean", "documentation" : "

A value for a column of BIT data type.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getBlobValue", "beanStyleSetterMethodName" : "setBlobValue", "c2jName" : "blobValue", "c2jShape" : "Blob", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of BLOB data type.

\nThis is a convenience that creates an instance of the {@link SdkBytes.Builder} avoiding the need to create one manually via {@link SdkBytes#builder()}.\n\nWhen the {@link Consumer} completes, {@link SdkBytes.Builder#build()} is called immediately and its result is passed to {@link #blobValue(SdkBytes)}.\n@param blobValue a consumer that will call methods on {@link SdkBytes.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #blobValue(SdkBytes)", "deprecated" : false, "documentation" : "

A value for a column of BLOB data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "blobValue", "fluentSetterDocumentation" : "

A value for a column of BLOB data type.

\n@param blobValue A value for a column of BLOB data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "blobValue", "getterDocumentation" : "

A value for a column of BLOB data type.

\n@return A value for a column of BLOB data type.", "getterModel" : { "returnType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "blobValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "blobValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_BYTES", "name" : "BlobValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of BLOB data type.

\n@param blobValue A value for a column of BLOB data type.", "setterMethodName" : "setBlobValue", "setterModel" : { "variableDeclarationType" : "software.amazon.awssdk.core.SdkBytes", "variableName" : "blobValue", "variableType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : null, "simpleType" : "SdkBytes", "variableSetterType" : "software.amazon.awssdk.core.SdkBytes" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "software.amazon.awssdk.core.SdkBytes", "variableName" : "blobValue", "variableType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : "

A value for a column of BLOB data type.

", "simpleType" : "SdkBytes", "variableSetterType" : "software.amazon.awssdk.core.SdkBytes" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getDoubleValue", "beanStyleSetterMethodName" : "setDoubleValue", "c2jName" : "doubleValue", "c2jShape" : "BoxedDouble", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of double data type.

\nThis is a convenience that creates an instance of the {@link Double.Builder} avoiding the need to create one manually via {@link Double#builder()}.\n\nWhen the {@link Consumer} completes, {@link Double.Builder#build()} is called immediately and its result is passed to {@link #doubleValue(Double)}.\n@param doubleValue a consumer that will call methods on {@link Double.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #doubleValue(Double)", "deprecated" : false, "documentation" : "

A value for a column of double data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "doubleValue", "fluentSetterDocumentation" : "

A value for a column of double data type.

\n@param doubleValue A value for a column of double data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "doubleValue", "getterDocumentation" : "

A value for a column of double data type.

\n@return A value for a column of double data type.", "getterModel" : { "returnType" : "Double", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "doubleValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "doubleValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "DOUBLE", "name" : "DoubleValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of double data type.

\n@param doubleValue A value for a column of double data type.", "setterMethodName" : "setDoubleValue", "setterModel" : { "variableDeclarationType" : "Double", "variableName" : "doubleValue", "variableType" : "Double", "documentation" : null, "simpleType" : "Double", "variableSetterType" : "Double" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Double", "variableName" : "doubleValue", "variableType" : "Double", "documentation" : "

A value for a column of double data type.

", "simpleType" : "Double", "variableSetterType" : "Double" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getIntValue", "beanStyleSetterMethodName" : "setIntValue", "c2jName" : "intValue", "c2jShape" : "BoxedInteger", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of integer data type.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #intValue(Integer)}.\n@param intValue a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #intValue(Integer)", "deprecated" : false, "documentation" : "

A value for a column of integer data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "intValue", "fluentSetterDocumentation" : "

A value for a column of integer data type.

\n@param intValue A value for a column of integer data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "intValue", "getterDocumentation" : "

A value for a column of integer data type.

\n@return A value for a column of integer data type.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "intValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "intValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "IntValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of integer data type.

\n@param intValue A value for a column of integer data type.", "setterMethodName" : "setIntValue", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "intValue", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "intValue", "variableType" : "Integer", "documentation" : "

A value for a column of integer data type.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getIsNull", "beanStyleSetterMethodName" : "setIsNull", "c2jName" : "isNull", "c2jShape" : "BoxedBoolean", "defaultConsumerFluentSetterDocumentation" : "

A NULL value.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isNull(Boolean)}.\n@param isNull a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isNull(Boolean)", "deprecated" : false, "documentation" : "

A NULL value.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isNull", "fluentSetterDocumentation" : "

A NULL value.

\n@param isNull A NULL value.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isNull", "getterDocumentation" : "

A NULL value.

\n@return A NULL value.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isNull", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isNull", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsNull", "sensitive" : false, "setterDocumentation" : "

A NULL value.

\n@param isNull A NULL value.", "setterMethodName" : "setIsNull", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isNull", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isNull", "variableType" : "Boolean", "documentation" : "

A NULL value.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getRealValue", "beanStyleSetterMethodName" : "setRealValue", "c2jName" : "realValue", "c2jShape" : "BoxedFloat", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of real data type.

\nThis is a convenience that creates an instance of the {@link Float.Builder} avoiding the need to create one manually via {@link Float#builder()}.\n\nWhen the {@link Consumer} completes, {@link Float.Builder#build()} is called immediately and its result is passed to {@link #realValue(Float)}.\n@param realValue a consumer that will call methods on {@link Float.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #realValue(Float)", "deprecated" : false, "documentation" : "

A value for a column of real data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "realValue", "fluentSetterDocumentation" : "

A value for a column of real data type.

\n@param realValue A value for a column of real data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "realValue", "getterDocumentation" : "

A value for a column of real data type.

\n@return A value for a column of real data type.", "getterModel" : { "returnType" : "Float", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "realValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "realValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "FLOAT", "name" : "RealValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of real data type.

\n@param realValue A value for a column of real data type.", "setterMethodName" : "setRealValue", "setterModel" : { "variableDeclarationType" : "Float", "variableName" : "realValue", "variableType" : "Float", "documentation" : null, "simpleType" : "Float", "variableSetterType" : "Float" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Float", "variableName" : "realValue", "variableType" : "Float", "documentation" : "

A value for a column of real data type.

", "simpleType" : "Float", "variableSetterType" : "Float" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getStringValue", "beanStyleSetterMethodName" : "setStringValue", "c2jName" : "stringValue", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of string data type.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #stringValue(String)}.\n@param stringValue a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #stringValue(String)", "deprecated" : false, "documentation" : "

A value for a column of string data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "stringValue", "fluentSetterDocumentation" : "

A value for a column of string data type.

\n@param stringValue A value for a column of string data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "stringValue", "getterDocumentation" : "

A value for a column of string data type.

\n@return A value for a column of string data type.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "stringValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "stringValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "StringValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of string data type.

\n@param stringValue A value for a column of string data type.", "setterMethodName" : "setStringValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "stringValue", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "stringValue", "variableType" : "String", "documentation" : "

A value for a column of string data type.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getStructValue", "beanStyleSetterMethodName" : "setStructValue", "c2jName" : "structValue", "c2jShape" : "StructValue", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of STRUCT data type.

\nThis is a convenience that creates an instance of the {@link StructValue.Builder} avoiding the need to create one manually via {@link StructValue#builder()}.\n\nWhen the {@link Consumer} completes, {@link StructValue.Builder#build()} is called immediately and its result is passed to {@link #structValue(StructValue)}.\n@param structValue a consumer that will call methods on {@link StructValue.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #structValue(StructValue)", "deprecated" : false, "documentation" : "

A value for a column of STRUCT data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "structValue", "fluentSetterDocumentation" : "

A value for a column of STRUCT data type.

\n@param structValue A value for a column of STRUCT data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "structValue", "getterDocumentation" : "

A value for a column of STRUCT data type.

\n@return A value for a column of STRUCT data type.", "getterModel" : { "returnType" : "StructValue", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "structValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "structValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "StructValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of STRUCT data type.

\n@param structValue A value for a column of STRUCT data type.", "setterMethodName" : "setStructValue", "setterModel" : { "variableDeclarationType" : "StructValue", "variableName" : "structValue", "variableType" : "StructValue", "documentation" : null, "simpleType" : "StructValue", "variableSetterType" : "StructValue" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "StructValue", "variableName" : "structValue", "variableType" : "StructValue", "documentation" : "

A value for a column of STRUCT data type.

", "simpleType" : "StructValue", "variableSetterType" : "StructValue" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ArrayValues" : { "beanStyleGetterMethodName" : "getArrayValues", "beanStyleSetterMethodName" : "setArrayValues", "c2jName" : "arrayValues", "c2jShape" : "ArrayValueList", "defaultConsumerFluentSetterDocumentation" : "

An array of column values.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #arrayValues(List)}.\n@param arrayValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #arrayValues(List)", "deprecated" : false, "documentation" : "

An array of column values.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "arrayValues", "fluentSetterDocumentation" : "

An array of column values.

\n@param arrayValues An array of column values.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "arrayValues", "getterDocumentation" : "

An array of column values.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of column values.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "arrayValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "arrayValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Value", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Value.Builder} avoiding the need to create one manually via {@link Value#builder()}.\n\nWhen the {@link Consumer} completes, {@link Value.Builder#build()} is called immediately and its result is passed to {@link #member(Value)}.\n@param member a consumer that will call methods on {@link Value.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Value)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Value", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : null, "simpleType" : "Value", "variableSetterType" : "Value" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : "", "simpleType" : "Value", "variableSetterType" : "Value" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Value", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Value", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "ArrayValues", "sensitive" : false, "setterDocumentation" : "

An array of column values.

\n@param arrayValues An array of column values.", "setterMethodName" : "setArrayValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "arrayValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "arrayValues", "variableType" : "java.util.List", "documentation" : "

An array of column values.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "BigIntValue" : { "beanStyleGetterMethodName" : "getBigIntValue", "beanStyleSetterMethodName" : "setBigIntValue", "c2jName" : "bigIntValue", "c2jShape" : "BoxedLong", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of big integer data type.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #bigIntValue(Long)}.\n@param bigIntValue a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #bigIntValue(Long)", "deprecated" : false, "documentation" : "

A value for a column of big integer data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "bigIntValue", "fluentSetterDocumentation" : "

A value for a column of big integer data type.

\n@param bigIntValue A value for a column of big integer data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "bigIntValue", "getterDocumentation" : "

A value for a column of big integer data type.

\n@return A value for a column of big integer data type.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "bigIntValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "bigIntValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "BigIntValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of big integer data type.

\n@param bigIntValue A value for a column of big integer data type.", "setterMethodName" : "setBigIntValue", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "bigIntValue", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "bigIntValue", "variableType" : "Long", "documentation" : "

A value for a column of big integer data type.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "BitValue" : { "beanStyleGetterMethodName" : "getBitValue", "beanStyleSetterMethodName" : "setBitValue", "c2jName" : "bitValue", "c2jShape" : "BoxedBoolean", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of BIT data type.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #bitValue(Boolean)}.\n@param bitValue a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #bitValue(Boolean)", "deprecated" : false, "documentation" : "

A value for a column of BIT data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "bitValue", "fluentSetterDocumentation" : "

A value for a column of BIT data type.

\n@param bitValue A value for a column of BIT data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "bitValue", "getterDocumentation" : "

A value for a column of BIT data type.

\n@return A value for a column of BIT data type.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "bitValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "bitValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "BitValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of BIT data type.

\n@param bitValue A value for a column of BIT data type.", "setterMethodName" : "setBitValue", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "bitValue", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "bitValue", "variableType" : "Boolean", "documentation" : "

A value for a column of BIT data type.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "BlobValue" : { "beanStyleGetterMethodName" : "getBlobValue", "beanStyleSetterMethodName" : "setBlobValue", "c2jName" : "blobValue", "c2jShape" : "Blob", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of BLOB data type.

\nThis is a convenience that creates an instance of the {@link SdkBytes.Builder} avoiding the need to create one manually via {@link SdkBytes#builder()}.\n\nWhen the {@link Consumer} completes, {@link SdkBytes.Builder#build()} is called immediately and its result is passed to {@link #blobValue(SdkBytes)}.\n@param blobValue a consumer that will call methods on {@link SdkBytes.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #blobValue(SdkBytes)", "deprecated" : false, "documentation" : "

A value for a column of BLOB data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "blobValue", "fluentSetterDocumentation" : "

A value for a column of BLOB data type.

\n@param blobValue A value for a column of BLOB data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "blobValue", "getterDocumentation" : "

A value for a column of BLOB data type.

\n@return A value for a column of BLOB data type.", "getterModel" : { "returnType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "blobValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "blobValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_BYTES", "name" : "BlobValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of BLOB data type.

\n@param blobValue A value for a column of BLOB data type.", "setterMethodName" : "setBlobValue", "setterModel" : { "variableDeclarationType" : "software.amazon.awssdk.core.SdkBytes", "variableName" : "blobValue", "variableType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : null, "simpleType" : "SdkBytes", "variableSetterType" : "software.amazon.awssdk.core.SdkBytes" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "software.amazon.awssdk.core.SdkBytes", "variableName" : "blobValue", "variableType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : "

A value for a column of BLOB data type.

", "simpleType" : "SdkBytes", "variableSetterType" : "software.amazon.awssdk.core.SdkBytes" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "DoubleValue" : { "beanStyleGetterMethodName" : "getDoubleValue", "beanStyleSetterMethodName" : "setDoubleValue", "c2jName" : "doubleValue", "c2jShape" : "BoxedDouble", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of double data type.

\nThis is a convenience that creates an instance of the {@link Double.Builder} avoiding the need to create one manually via {@link Double#builder()}.\n\nWhen the {@link Consumer} completes, {@link Double.Builder#build()} is called immediately and its result is passed to {@link #doubleValue(Double)}.\n@param doubleValue a consumer that will call methods on {@link Double.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #doubleValue(Double)", "deprecated" : false, "documentation" : "

A value for a column of double data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "doubleValue", "fluentSetterDocumentation" : "

A value for a column of double data type.

\n@param doubleValue A value for a column of double data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "doubleValue", "getterDocumentation" : "

A value for a column of double data type.

\n@return A value for a column of double data type.", "getterModel" : { "returnType" : "Double", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "doubleValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "doubleValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "DOUBLE", "name" : "DoubleValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of double data type.

\n@param doubleValue A value for a column of double data type.", "setterMethodName" : "setDoubleValue", "setterModel" : { "variableDeclarationType" : "Double", "variableName" : "doubleValue", "variableType" : "Double", "documentation" : null, "simpleType" : "Double", "variableSetterType" : "Double" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Double", "variableName" : "doubleValue", "variableType" : "Double", "documentation" : "

A value for a column of double data type.

", "simpleType" : "Double", "variableSetterType" : "Double" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "IntValue" : { "beanStyleGetterMethodName" : "getIntValue", "beanStyleSetterMethodName" : "setIntValue", "c2jName" : "intValue", "c2jShape" : "BoxedInteger", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of integer data type.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #intValue(Integer)}.\n@param intValue a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #intValue(Integer)", "deprecated" : false, "documentation" : "

A value for a column of integer data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "intValue", "fluentSetterDocumentation" : "

A value for a column of integer data type.

\n@param intValue A value for a column of integer data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "intValue", "getterDocumentation" : "

A value for a column of integer data type.

\n@return A value for a column of integer data type.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "intValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "intValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "IntValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of integer data type.

\n@param intValue A value for a column of integer data type.", "setterMethodName" : "setIntValue", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "intValue", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "intValue", "variableType" : "Integer", "documentation" : "

A value for a column of integer data type.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "IsNull" : { "beanStyleGetterMethodName" : "getIsNull", "beanStyleSetterMethodName" : "setIsNull", "c2jName" : "isNull", "c2jShape" : "BoxedBoolean", "defaultConsumerFluentSetterDocumentation" : "

A NULL value.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isNull(Boolean)}.\n@param isNull a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isNull(Boolean)", "deprecated" : false, "documentation" : "

A NULL value.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isNull", "fluentSetterDocumentation" : "

A NULL value.

\n@param isNull A NULL value.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isNull", "getterDocumentation" : "

A NULL value.

\n@return A NULL value.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isNull", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isNull", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsNull", "sensitive" : false, "setterDocumentation" : "

A NULL value.

\n@param isNull A NULL value.", "setterMethodName" : "setIsNull", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isNull", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isNull", "variableType" : "Boolean", "documentation" : "

A NULL value.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "RealValue" : { "beanStyleGetterMethodName" : "getRealValue", "beanStyleSetterMethodName" : "setRealValue", "c2jName" : "realValue", "c2jShape" : "BoxedFloat", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of real data type.

\nThis is a convenience that creates an instance of the {@link Float.Builder} avoiding the need to create one manually via {@link Float#builder()}.\n\nWhen the {@link Consumer} completes, {@link Float.Builder#build()} is called immediately and its result is passed to {@link #realValue(Float)}.\n@param realValue a consumer that will call methods on {@link Float.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #realValue(Float)", "deprecated" : false, "documentation" : "

A value for a column of real data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "realValue", "fluentSetterDocumentation" : "

A value for a column of real data type.

\n@param realValue A value for a column of real data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "realValue", "getterDocumentation" : "

A value for a column of real data type.

\n@return A value for a column of real data type.", "getterModel" : { "returnType" : "Float", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "realValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "realValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "FLOAT", "name" : "RealValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of real data type.

\n@param realValue A value for a column of real data type.", "setterMethodName" : "setRealValue", "setterModel" : { "variableDeclarationType" : "Float", "variableName" : "realValue", "variableType" : "Float", "documentation" : null, "simpleType" : "Float", "variableSetterType" : "Float" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Float", "variableName" : "realValue", "variableType" : "Float", "documentation" : "

A value for a column of real data type.

", "simpleType" : "Float", "variableSetterType" : "Float" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "StringValue" : { "beanStyleGetterMethodName" : "getStringValue", "beanStyleSetterMethodName" : "setStringValue", "c2jName" : "stringValue", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of string data type.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #stringValue(String)}.\n@param stringValue a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #stringValue(String)", "deprecated" : false, "documentation" : "

A value for a column of string data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "stringValue", "fluentSetterDocumentation" : "

A value for a column of string data type.

\n@param stringValue A value for a column of string data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "stringValue", "getterDocumentation" : "

A value for a column of string data type.

\n@return A value for a column of string data type.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "stringValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "stringValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "StringValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of string data type.

\n@param stringValue A value for a column of string data type.", "setterMethodName" : "setStringValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "stringValue", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "stringValue", "variableType" : "String", "documentation" : "

A value for a column of string data type.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "StructValue" : { "beanStyleGetterMethodName" : "getStructValue", "beanStyleSetterMethodName" : "setStructValue", "c2jName" : "structValue", "c2jShape" : "StructValue", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of STRUCT data type.

\nThis is a convenience that creates an instance of the {@link StructValue.Builder} avoiding the need to create one manually via {@link StructValue#builder()}.\n\nWhen the {@link Consumer} completes, {@link StructValue.Builder#build()} is called immediately and its result is passed to {@link #structValue(StructValue)}.\n@param structValue a consumer that will call methods on {@link StructValue.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #structValue(StructValue)", "deprecated" : false, "documentation" : "

A value for a column of STRUCT data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "structValue", "fluentSetterDocumentation" : "

A value for a column of STRUCT data type.

\n@param structValue A value for a column of STRUCT data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "structValue", "getterDocumentation" : "

A value for a column of STRUCT data type.

\n@return A value for a column of STRUCT data type.", "getterModel" : { "returnType" : "StructValue", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "structValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "structValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "StructValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of STRUCT data type.

\n@param structValue A value for a column of STRUCT data type.", "setterMethodName" : "setStructValue", "setterModel" : { "variableDeclarationType" : "StructValue", "variableName" : "structValue", "variableType" : "StructValue", "documentation" : null, "simpleType" : "StructValue", "variableSetterType" : "StructValue" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "StructValue", "variableName" : "structValue", "variableType" : "StructValue", "documentation" : "

A value for a column of STRUCT data type.

", "simpleType" : "StructValue", "variableSetterType" : "StructValue" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } }, "nonStreamingMembers" : [ { "beanStyleGetterMethodName" : "getArrayValues", "beanStyleSetterMethodName" : "setArrayValues", "c2jName" : "arrayValues", "c2jShape" : "ArrayValueList", "defaultConsumerFluentSetterDocumentation" : "

An array of column values.

\nThis is a convenience that creates an instance of the {@link List.Builder} avoiding the need to create one manually via {@link List#builder()}.\n\nWhen the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its result is passed to {@link #arrayValues(List)}.\n@param arrayValues a consumer that will call methods on {@link List.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #arrayValues(List)", "deprecated" : false, "documentation" : "

An array of column values.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "arrayValues", "fluentSetterDocumentation" : "

An array of column values.

\n@param arrayValues An array of column values.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "arrayValues", "getterDocumentation" : "

An array of column values.

\n

\nAttempts to modify the collection returned by this method will result in an UnsupportedOperationException.\n

\n@return An array of column values.", "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "arrayValues", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "arrayValues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "beanStyleGetterMethodName" : "getMember", "beanStyleSetterMethodName" : "setMember", "c2jName" : "member", "c2jShape" : "Value", "defaultConsumerFluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\nThis is a convenience that creates an instance of the {@link Value.Builder} avoiding the need to create one manually via {@link Value#builder()}.\n\nWhen the {@link Consumer} completes, {@link Value.Builder#build()} is called immediately and its result is passed to {@link #member(Value)}.\n@param member a consumer that will call methods on {@link Value.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #member(Value)", "deprecated" : false, "documentation" : "", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "member", "fluentSetterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "member", "getterDocumentation" : "Returns the value of the Member property for this object.\n@return The value of the Member property for this object.", "getterModel" : { "returnType" : "Value", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "member", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "Member", "sensitive" : false, "setterDocumentation" : "Sets the value of the Member property for this object.\n\n@param member The new value for the Member property for this object.", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : null, "simpleType" : "Value", "variableSetterType" : "Value" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Value", "variableName" : "member", "variableType" : "Value", "documentation" : "", "simpleType" : "Value", "variableSetterType" : "Value" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Value", "map" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "simple" : false, "simpleType" : "Value", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingType" : "LIST", "name" : "ArrayValues", "sensitive" : false, "setterDocumentation" : "

An array of column values.

\n@param arrayValues An array of column values.", "setterMethodName" : "setArrayValues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "arrayValues", "variableType" : "java.util.List", "documentation" : null, "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "arrayValues", "variableType" : "java.util.List", "documentation" : "

An array of column values.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getBigIntValue", "beanStyleSetterMethodName" : "setBigIntValue", "c2jName" : "bigIntValue", "c2jShape" : "BoxedLong", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of big integer data type.

\nThis is a convenience that creates an instance of the {@link Long.Builder} avoiding the need to create one manually via {@link Long#builder()}.\n\nWhen the {@link Consumer} completes, {@link Long.Builder#build()} is called immediately and its result is passed to {@link #bigIntValue(Long)}.\n@param bigIntValue a consumer that will call methods on {@link Long.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #bigIntValue(Long)", "deprecated" : false, "documentation" : "

A value for a column of big integer data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "bigIntValue", "fluentSetterDocumentation" : "

A value for a column of big integer data type.

\n@param bigIntValue A value for a column of big integer data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "bigIntValue", "getterDocumentation" : "

A value for a column of big integer data type.

\n@return A value for a column of big integer data type.", "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "bigIntValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "bigIntValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "LONG", "name" : "BigIntValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of big integer data type.

\n@param bigIntValue A value for a column of big integer data type.", "setterMethodName" : "setBigIntValue", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "bigIntValue", "variableType" : "Long", "documentation" : null, "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Long", "variableName" : "bigIntValue", "variableType" : "Long", "documentation" : "

A value for a column of big integer data type.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getBitValue", "beanStyleSetterMethodName" : "setBitValue", "c2jName" : "bitValue", "c2jShape" : "BoxedBoolean", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of BIT data type.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #bitValue(Boolean)}.\n@param bitValue a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #bitValue(Boolean)", "deprecated" : false, "documentation" : "

A value for a column of BIT data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "bitValue", "fluentSetterDocumentation" : "

A value for a column of BIT data type.

\n@param bitValue A value for a column of BIT data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "bitValue", "getterDocumentation" : "

A value for a column of BIT data type.

\n@return A value for a column of BIT data type.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "bitValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "bitValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "BitValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of BIT data type.

\n@param bitValue A value for a column of BIT data type.", "setterMethodName" : "setBitValue", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "bitValue", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "bitValue", "variableType" : "Boolean", "documentation" : "

A value for a column of BIT data type.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getBlobValue", "beanStyleSetterMethodName" : "setBlobValue", "c2jName" : "blobValue", "c2jShape" : "Blob", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of BLOB data type.

\nThis is a convenience that creates an instance of the {@link SdkBytes.Builder} avoiding the need to create one manually via {@link SdkBytes#builder()}.\n\nWhen the {@link Consumer} completes, {@link SdkBytes.Builder#build()} is called immediately and its result is passed to {@link #blobValue(SdkBytes)}.\n@param blobValue a consumer that will call methods on {@link SdkBytes.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #blobValue(SdkBytes)", "deprecated" : false, "documentation" : "

A value for a column of BLOB data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "blobValue", "fluentSetterDocumentation" : "

A value for a column of BLOB data type.

\n@param blobValue A value for a column of BLOB data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "blobValue", "getterDocumentation" : "

A value for a column of BLOB data type.

\n@return A value for a column of BLOB data type.", "getterModel" : { "returnType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "blobValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "blobValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_BYTES", "name" : "BlobValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of BLOB data type.

\n@param blobValue A value for a column of BLOB data type.", "setterMethodName" : "setBlobValue", "setterModel" : { "variableDeclarationType" : "software.amazon.awssdk.core.SdkBytes", "variableName" : "blobValue", "variableType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : null, "simpleType" : "SdkBytes", "variableSetterType" : "software.amazon.awssdk.core.SdkBytes" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "software.amazon.awssdk.core.SdkBytes", "variableName" : "blobValue", "variableType" : "software.amazon.awssdk.core.SdkBytes", "documentation" : "

A value for a column of BLOB data type.

", "simpleType" : "SdkBytes", "variableSetterType" : "software.amazon.awssdk.core.SdkBytes" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getDoubleValue", "beanStyleSetterMethodName" : "setDoubleValue", "c2jName" : "doubleValue", "c2jShape" : "BoxedDouble", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of double data type.

\nThis is a convenience that creates an instance of the {@link Double.Builder} avoiding the need to create one manually via {@link Double#builder()}.\n\nWhen the {@link Consumer} completes, {@link Double.Builder#build()} is called immediately and its result is passed to {@link #doubleValue(Double)}.\n@param doubleValue a consumer that will call methods on {@link Double.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #doubleValue(Double)", "deprecated" : false, "documentation" : "

A value for a column of double data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "doubleValue", "fluentSetterDocumentation" : "

A value for a column of double data type.

\n@param doubleValue A value for a column of double data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "doubleValue", "getterDocumentation" : "

A value for a column of double data type.

\n@return A value for a column of double data type.", "getterModel" : { "returnType" : "Double", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "doubleValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "doubleValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "DOUBLE", "name" : "DoubleValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of double data type.

\n@param doubleValue A value for a column of double data type.", "setterMethodName" : "setDoubleValue", "setterModel" : { "variableDeclarationType" : "Double", "variableName" : "doubleValue", "variableType" : "Double", "documentation" : null, "simpleType" : "Double", "variableSetterType" : "Double" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Double", "variableName" : "doubleValue", "variableType" : "Double", "documentation" : "

A value for a column of double data type.

", "simpleType" : "Double", "variableSetterType" : "Double" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getIntValue", "beanStyleSetterMethodName" : "setIntValue", "c2jName" : "intValue", "c2jShape" : "BoxedInteger", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of integer data type.

\nThis is a convenience that creates an instance of the {@link Integer.Builder} avoiding the need to create one manually via {@link Integer#builder()}.\n\nWhen the {@link Consumer} completes, {@link Integer.Builder#build()} is called immediately and its result is passed to {@link #intValue(Integer)}.\n@param intValue a consumer that will call methods on {@link Integer.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #intValue(Integer)", "deprecated" : false, "documentation" : "

A value for a column of integer data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "intValue", "fluentSetterDocumentation" : "

A value for a column of integer data type.

\n@param intValue A value for a column of integer data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "intValue", "getterDocumentation" : "

A value for a column of integer data type.

\n@return A value for a column of integer data type.", "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "intValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "intValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "INTEGER", "name" : "IntValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of integer data type.

\n@param intValue A value for a column of integer data type.", "setterMethodName" : "setIntValue", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "intValue", "variableType" : "Integer", "documentation" : null, "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Integer", "variableName" : "intValue", "variableType" : "Integer", "documentation" : "

A value for a column of integer data type.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getIsNull", "beanStyleSetterMethodName" : "setIsNull", "c2jName" : "isNull", "c2jShape" : "BoxedBoolean", "defaultConsumerFluentSetterDocumentation" : "

A NULL value.

\nThis is a convenience that creates an instance of the {@link Boolean.Builder} avoiding the need to create one manually via {@link Boolean#builder()}.\n\nWhen the {@link Consumer} completes, {@link Boolean.Builder#build()} is called immediately and its result is passed to {@link #isNull(Boolean)}.\n@param isNull a consumer that will call methods on {@link Boolean.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #isNull(Boolean)", "deprecated" : false, "documentation" : "

A NULL value.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "isNull", "fluentSetterDocumentation" : "

A NULL value.

\n@param isNull A NULL value.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "isNull", "getterDocumentation" : "

A NULL value.

\n@return A NULL value.", "getterModel" : { "returnType" : "Boolean", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "isNull", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "isNull", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "BOOLEAN", "name" : "IsNull", "sensitive" : false, "setterDocumentation" : "

A NULL value.

\n@param isNull A NULL value.", "setterMethodName" : "setIsNull", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "isNull", "variableType" : "Boolean", "documentation" : null, "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "isNull", "variableType" : "Boolean", "documentation" : "

A NULL value.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getRealValue", "beanStyleSetterMethodName" : "setRealValue", "c2jName" : "realValue", "c2jShape" : "BoxedFloat", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of real data type.

\nThis is a convenience that creates an instance of the {@link Float.Builder} avoiding the need to create one manually via {@link Float#builder()}.\n\nWhen the {@link Consumer} completes, {@link Float.Builder#build()} is called immediately and its result is passed to {@link #realValue(Float)}.\n@param realValue a consumer that will call methods on {@link Float.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #realValue(Float)", "deprecated" : false, "documentation" : "

A value for a column of real data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "realValue", "fluentSetterDocumentation" : "

A value for a column of real data type.

\n@param realValue A value for a column of real data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "realValue", "getterDocumentation" : "

A value for a column of real data type.

\n@return A value for a column of real data type.", "getterModel" : { "returnType" : "Float", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "realValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "realValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "FLOAT", "name" : "RealValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of real data type.

\n@param realValue A value for a column of real data type.", "setterMethodName" : "setRealValue", "setterModel" : { "variableDeclarationType" : "Float", "variableName" : "realValue", "variableType" : "Float", "documentation" : null, "simpleType" : "Float", "variableSetterType" : "Float" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "Float", "variableName" : "realValue", "variableType" : "Float", "documentation" : "

A value for a column of real data type.

", "simpleType" : "Float", "variableSetterType" : "Float" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getStringValue", "beanStyleSetterMethodName" : "setStringValue", "c2jName" : "stringValue", "c2jShape" : "String", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of string data type.

\nThis is a convenience that creates an instance of the {@link String.Builder} avoiding the need to create one manually via {@link String#builder()}.\n\nWhen the {@link Consumer} completes, {@link String.Builder#build()} is called immediately and its result is passed to {@link #stringValue(String)}.\n@param stringValue a consumer that will call methods on {@link String.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #stringValue(String)", "deprecated" : false, "documentation" : "

A value for a column of string data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "stringValue", "fluentSetterDocumentation" : "

A value for a column of string data type.

\n@param stringValue A value for a column of string data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "stringValue", "getterDocumentation" : "

A value for a column of string data type.

\n@return A value for a column of string data type.", "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "stringValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "stringValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "STRING", "name" : "StringValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of string data type.

\n@param stringValue A value for a column of string data type.", "setterMethodName" : "setStringValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "stringValue", "variableType" : "String", "documentation" : null, "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "String", "variableName" : "stringValue", "variableType" : "String", "documentation" : "

A value for a column of string data type.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null }, { "beanStyleGetterMethodName" : "getStructValue", "beanStyleSetterMethodName" : "setStructValue", "c2jName" : "structValue", "c2jShape" : "StructValue", "defaultConsumerFluentSetterDocumentation" : "

A value for a column of STRUCT data type.

\nThis is a convenience that creates an instance of the {@link StructValue.Builder} avoiding the need to create one manually via {@link StructValue#builder()}.\n\nWhen the {@link Consumer} completes, {@link StructValue.Builder#build()} is called immediately and its result is passed to {@link #structValue(StructValue)}.\n@param structValue a consumer that will call methods on {@link StructValue.Builder}\n@return Returns a reference to this object so that method calls can be chained together.\n@see #structValue(StructValue)", "deprecated" : false, "documentation" : "

A value for a column of STRUCT data type.

", "endpointDiscoveryId" : false, "enumType" : null, "eventHeader" : false, "eventPayload" : false, "fluentEnumGetterMethodName" : null, "fluentEnumSetterMethodName" : null, "fluentGetterMethodName" : "structValue", "fluentSetterDocumentation" : "

A value for a column of STRUCT data type.

\n@param structValue A value for a column of STRUCT data type.\n@return Returns a reference to this object so that method calls can be chained together.", "fluentSetterMethodName" : "structValue", "getterDocumentation" : "

A value for a column of STRUCT data type.

\n@return A value for a column of STRUCT data type.", "getterModel" : { "returnType" : "StructValue", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "structValue", "queryString" : false, "requiresLength" : false, "statusCode" : false, "unmarshallLocationName" : "structValue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "jsonValue" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingType" : "SDK_POJO", "name" : "StructValue", "sensitive" : false, "setterDocumentation" : "

A value for a column of STRUCT data type.

\n@param structValue A value for a column of STRUCT data type.", "setterMethodName" : "setStructValue", "setterModel" : { "variableDeclarationType" : "StructValue", "variableName" : "structValue", "variableType" : "StructValue", "documentation" : null, "simpleType" : "StructValue", "variableSetterType" : "StructValue" }, "simple" : false, "timestampFormat" : null, "variable" : { "variableDeclarationType" : "StructValue", "variableName" : "structValue", "variableType" : "StructValue", "documentation" : "

A value for a column of STRUCT data type.

", "simpleType" : "StructValue", "variableSetterType" : "StructValue" }, "xmlAttribute" : false, "xmlNameSpaceUri" : null } ], "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "Value", "simpleMethod" : false, "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "Value", "variableName" : "value", "variableType" : "Value", "documentation" : null, "simpleType" : "Value", "variableSetterType" : "Value" }, "wrapper" : false, "xmlNamespace" : null } }, "customAuthorizers" : { }, "customRetryPolicy" : null, "examples" : { "examples" : { }, "version" : null }, "fileHeader" : "/*\n * Copyright 2014-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License.\n */\n", "sdkBaseResponseFqcn" : "software.amazon.awssdk.awscore.AwsResponse", "sdkModeledExceptionBaseClassName" : "RdsDataException", "sdkModeledExceptionBaseFqcn" : "software.amazon.awssdk.services.rdsdata.model.RdsDataException", "sdkRequestBaseClassName" : "RdsDataRequest", "sdkResponseBaseClassName" : "RdsDataResponse" }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy