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

models.batch-2016-08-10-intermediate.json Maven / Gradle / Ivy

{
  "customizationConfig" : {
    "additionalShapeConstructors" : null,
    "authPolicyActions" : {
      "actionPrefix" : null,
      "fileNamePrefix" : null,
      "skip" : true
    },
    "calculateCRC32FromCompressedData" : false,
    "convenienceTypeOverloads" : [ ],
    "customClientConfigFactory" : null,
    "customCodeTemplates" : null,
    "customErrorCodeFieldName" : null,
    "customExceptionUnmarshallerImpl" : null,
    "customFileHeader" : null,
    "customResponseMetadataClassName" : null,
    "customServiceMetadata" : null,
    "customServiceNameForRequest" : null,
    "customSignerProvider" : null,
    "deprecatedSuppressions" : null,
    "operationModifiers" : null,
    "operationsWithResponseStreamContentLengthValidation" : null,
    "presignersFqcn" : null,
    "renameShapes" : null,
    "requestMetrics" : null,
    "requiredParamValidationEnabled" : false,
    "sdkModeledExceptionBaseClassName" : null,
    "sendEmptyAutoConstructedListAsEmptyList" : null,
    "sendExplicitlyEmptyListsForQuery" : false,
    "serviceClientHoldInputStream" : false,
    "shapeModifiers" : null,
    "shapeSubstitutions" : null,
    "simpleMethods" : null,
    "skipInterfaceAdditions" : false,
    "skipSmokeTests" : false,
    "transformDirectory" : "transform",
    "useAutoConstructList" : false,
    "useAutoConstructMap" : false
  },
  "metadata" : {
    "apiVersion" : "2016-08-10",
    "asyncClient" : "AWSBatchAsyncClient",
    "asyncClientBuilderClassName" : "AWSBatchAsyncClientBuilder",
    "asyncInterface" : "AWSBatchAsync",
    "cborProtocol" : false,
    "checksumFormat" : null,
    "contentType" : "",
    "cucumberModuleInjectorClassName" : "AWSBatchModuleInjector",
    "defaultEndpoint" : "batch.us-east-1.amazonaws.com",
    "defaultEndpointWithoutHttpProtocol" : "batch.us-east-1.amazonaws.com",
    "defaultRegion" : null,
    "documentation" : "

AWS Batch enables you to run batch computing workloads on the AWS Cloud. Batch computing is a common way for developers, scientists, and engineers to access large amounts of compute resources, and AWS Batch removes the undifferentiated heavy lifting of configuring and managing the required infrastructure. AWS Batch will be familiar to users of traditional batch computing software. This service can efficiently provision resources in response to jobs submitted in order to eliminate capacity constraints, reduce compute costs, and deliver results quickly.

As a fully managed service, AWS Batch enables developers, scientists, and engineers to run batch computing workloads of any scale. AWS Batch automatically provisions compute resources and optimizes the workload distribution based on the quantity and scale of the workloads. With AWS Batch, there is no need to install or manage batch computing software, which allows you to focus on analyzing results and solving problems. AWS Batch reduces operational complexities, saves time, and reduces costs, which makes it easy for developers, scientists, and engineers to run their batch jobs in the AWS Cloud.

", "endpointPrefix" : "batch", "hasApiWithStreamInput" : false, "ionProtocol" : false, "jsonProtocol" : true, "jsonVersion" : "1.1", "packageName" : "com.amazonaws.services.batch", "packagePath" : "com/amazonaws/services/batch", "protocol" : "rest-json", "protocolDefaultExceptionUmarshallerImpl" : null, "protocolFactory" : "com.amazonaws.protocol.json.SdkJsonProtocolFactory", "requestBaseFqcn" : "com.amazonaws.AmazonWebServiceRequest", "requiresApiKey" : false, "requiresIamSigners" : false, "serviceAbbreviation" : "AWS Batch", "serviceFullName" : "AWS Batch", "serviceName" : "AWS Batch", "signingName" : "batch", "smokeTestsPackageName" : "com.amazonaws.services.batch.smoketests", "syncClient" : "AWSBatchClient", "syncClientBuilderClassName" : "AWSBatchClientBuilder", "syncInterface" : "AWSBatch", "uid" : "batch-2016-08-10", "unmarshallerClassSuffix" : "JsonUnmarshaller", "unmarshallerContextClassName" : "JsonUnmarshallerContext", "xmlProtocol" : false }, "operations" : { "CancelJob" : { "asyncCallableType" : "java.util.concurrent.Callable", "asyncFutureType" : "java.util.concurrent.Future", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "asyncReturnType" : "CancelJobResult", "authenticated" : true, "deprecated" : false, "documentation" : "

Cancels jobs in an AWS Batch job queue. Jobs that are in the SUBMITTED, PENDING, or RUNNABLE state are cancelled. Jobs that have progressed to STARTING or RUNNING are not cancelled (but the API operation still succeeds, even if no jobs are cancelled); these jobs must be terminated with the TerminateJob operation.

", "exceptions" : [ { "exceptionName" : "ClientException", "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

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

These errors are usually caused by a server issue.

", "httpStatusCode" : 500 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "CancelJobRequest", "variableName" : "cancelJobRequest", "variableType" : "CancelJobRequest", "documentation" : "", "simpleType" : "CancelJobRequest", "variableSetterType" : "CancelJobRequest" }, "inputStreamPropertyName" : null, "methodName" : "cancelJob", "operationName" : "CancelJob", "returnType" : { "returnType" : "CancelJobResult", "documentation" : null }, "syncReturnType" : "CancelJobResult" }, "CreateComputeEnvironment" : { "asyncCallableType" : "java.util.concurrent.Callable", "asyncFutureType" : "java.util.concurrent.Future", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "asyncReturnType" : "CreateComputeEnvironmentResult", "authenticated" : true, "deprecated" : false, "documentation" : "

Creates an AWS Batch compute environment. You can create MANAGED or UNMANAGEDcompute environments.

In a managed compute environment, AWS Batch manages the compute resources within the environment, based on the compute resources that you specify. Instances launched into a managed compute environment use the latest Amazon ECS-optimized AMI. You can choose to use Amazon EC2 On-Demand instances in your managed compute environment, or you can use Amazon EC2 Spot instances that only launch when the Spot bid price is below a specified percentage of the On-Demand price.

In an unmanaged compute environment, you can manage your own compute resources. This provides more compute resource configuration options, such as using a custom AMI, but you must ensure that your AMI meets the Amazon ECS container instance AMI specification. For more information, see Container Instance AMIs in the Amazon EC2 Container Service Developer Guide. After you have created your unmanaged compute environment, you can use the DescribeComputeEnvironments operation to find the Amazon ECS cluster that is associated with it and then manually launch your container instances into that Amazon ECS cluster. For more information, see Launching an Amazon ECS Container Instance in the Amazon EC2 Container Service Developer Guide.

", "exceptions" : [ { "exceptionName" : "ClientException", "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

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

These errors are usually caused by a server issue.

", "httpStatusCode" : 500 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "CreateComputeEnvironmentRequest", "variableName" : "createComputeEnvironmentRequest", "variableType" : "CreateComputeEnvironmentRequest", "documentation" : "", "simpleType" : "CreateComputeEnvironmentRequest", "variableSetterType" : "CreateComputeEnvironmentRequest" }, "inputStreamPropertyName" : null, "methodName" : "createComputeEnvironment", "operationName" : "CreateComputeEnvironment", "returnType" : { "returnType" : "CreateComputeEnvironmentResult", "documentation" : null }, "syncReturnType" : "CreateComputeEnvironmentResult" }, "CreateJobQueue" : { "asyncCallableType" : "java.util.concurrent.Callable", "asyncFutureType" : "java.util.concurrent.Future", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "asyncReturnType" : "CreateJobQueueResult", "authenticated" : true, "deprecated" : false, "documentation" : "

Creates an AWS Batch job queue. When you create a job queue, you associate one or more compute environments to the queue and assign an order of preference for the compute environments.

You also set a priority to the job queue that determines the order in which the AWS Batch scheduler places jobs onto its associated compute environments. For example, if a compute environment is associated with more than one job queue, the job queue with a higher priority is given preference for scheduling jobs to that compute environment.

", "exceptions" : [ { "exceptionName" : "ClientException", "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

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

These errors are usually caused by a server issue.

", "httpStatusCode" : 500 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "CreateJobQueueRequest", "variableName" : "createJobQueueRequest", "variableType" : "CreateJobQueueRequest", "documentation" : "", "simpleType" : "CreateJobQueueRequest", "variableSetterType" : "CreateJobQueueRequest" }, "inputStreamPropertyName" : null, "methodName" : "createJobQueue", "operationName" : "CreateJobQueue", "returnType" : { "returnType" : "CreateJobQueueResult", "documentation" : null }, "syncReturnType" : "CreateJobQueueResult" }, "DeleteComputeEnvironment" : { "asyncCallableType" : "java.util.concurrent.Callable", "asyncFutureType" : "java.util.concurrent.Future", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "asyncReturnType" : "DeleteComputeEnvironmentResult", "authenticated" : true, "deprecated" : false, "documentation" : "

Deletes an AWS Batch compute environment.

Before you can delete a compute environment, you must set its state to DISABLED with the UpdateComputeEnvironment API operation and disassociate it from any job queues with the UpdateJobQueue API operation.

", "exceptions" : [ { "exceptionName" : "ClientException", "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

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

These errors are usually caused by a server issue.

", "httpStatusCode" : 500 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "DeleteComputeEnvironmentRequest", "variableName" : "deleteComputeEnvironmentRequest", "variableType" : "DeleteComputeEnvironmentRequest", "documentation" : "", "simpleType" : "DeleteComputeEnvironmentRequest", "variableSetterType" : "DeleteComputeEnvironmentRequest" }, "inputStreamPropertyName" : null, "methodName" : "deleteComputeEnvironment", "operationName" : "DeleteComputeEnvironment", "returnType" : { "returnType" : "DeleteComputeEnvironmentResult", "documentation" : null }, "syncReturnType" : "DeleteComputeEnvironmentResult" }, "DeleteJobQueue" : { "asyncCallableType" : "java.util.concurrent.Callable", "asyncFutureType" : "java.util.concurrent.Future", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "asyncReturnType" : "DeleteJobQueueResult", "authenticated" : true, "deprecated" : false, "documentation" : "

Deletes the specified job queue. You must first disable submissions for a queue with the UpdateJobQueue operation and terminate any jobs that have not completed with the TerminateJob.

It is not necessary to disassociate compute environments from a queue before submitting a DeleteJobQueue request.

", "exceptions" : [ { "exceptionName" : "ClientException", "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

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

These errors are usually caused by a server issue.

", "httpStatusCode" : 500 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "DeleteJobQueueRequest", "variableName" : "deleteJobQueueRequest", "variableType" : "DeleteJobQueueRequest", "documentation" : "", "simpleType" : "DeleteJobQueueRequest", "variableSetterType" : "DeleteJobQueueRequest" }, "inputStreamPropertyName" : null, "methodName" : "deleteJobQueue", "operationName" : "DeleteJobQueue", "returnType" : { "returnType" : "DeleteJobQueueResult", "documentation" : null }, "syncReturnType" : "DeleteJobQueueResult" }, "DeregisterJobDefinition" : { "asyncCallableType" : "java.util.concurrent.Callable", "asyncFutureType" : "java.util.concurrent.Future", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "asyncReturnType" : "DeregisterJobDefinitionResult", "authenticated" : true, "deprecated" : false, "documentation" : "

Deregisters an AWS Batch job definition.

", "exceptions" : [ { "exceptionName" : "ClientException", "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

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

These errors are usually caused by a server issue.

", "httpStatusCode" : 500 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "DeregisterJobDefinitionRequest", "variableName" : "deregisterJobDefinitionRequest", "variableType" : "DeregisterJobDefinitionRequest", "documentation" : "", "simpleType" : "DeregisterJobDefinitionRequest", "variableSetterType" : "DeregisterJobDefinitionRequest" }, "inputStreamPropertyName" : null, "methodName" : "deregisterJobDefinition", "operationName" : "DeregisterJobDefinition", "returnType" : { "returnType" : "DeregisterJobDefinitionResult", "documentation" : null }, "syncReturnType" : "DeregisterJobDefinitionResult" }, "DescribeComputeEnvironments" : { "asyncCallableType" : "java.util.concurrent.Callable", "asyncFutureType" : "java.util.concurrent.Future", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "asyncReturnType" : "DescribeComputeEnvironmentsResult", "authenticated" : true, "deprecated" : false, "documentation" : "

Describes one or more of your compute environments.

If you are using an unmanaged compute environment, you can use the DescribeComputeEnvironment operation to determine the ecsClusterArn that you should launch your Amazon ECS container instances into.

", "exceptions" : [ { "exceptionName" : "ClientException", "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

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

These errors are usually caused by a server issue.

", "httpStatusCode" : 500 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "DescribeComputeEnvironmentsRequest", "variableName" : "describeComputeEnvironmentsRequest", "variableType" : "DescribeComputeEnvironmentsRequest", "documentation" : "", "simpleType" : "DescribeComputeEnvironmentsRequest", "variableSetterType" : "DescribeComputeEnvironmentsRequest" }, "inputStreamPropertyName" : null, "methodName" : "describeComputeEnvironments", "operationName" : "DescribeComputeEnvironments", "returnType" : { "returnType" : "DescribeComputeEnvironmentsResult", "documentation" : null }, "syncReturnType" : "DescribeComputeEnvironmentsResult" }, "DescribeJobDefinitions" : { "asyncCallableType" : "java.util.concurrent.Callable", "asyncFutureType" : "java.util.concurrent.Future", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "asyncReturnType" : "DescribeJobDefinitionsResult", "authenticated" : true, "deprecated" : false, "documentation" : "

Describes a list of job definitions. You can specify a status (such as ACTIVE) to only return job definitions that match that status.

", "exceptions" : [ { "exceptionName" : "ClientException", "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

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

These errors are usually caused by a server issue.

", "httpStatusCode" : 500 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "DescribeJobDefinitionsRequest", "variableName" : "describeJobDefinitionsRequest", "variableType" : "DescribeJobDefinitionsRequest", "documentation" : "", "simpleType" : "DescribeJobDefinitionsRequest", "variableSetterType" : "DescribeJobDefinitionsRequest" }, "inputStreamPropertyName" : null, "methodName" : "describeJobDefinitions", "operationName" : "DescribeJobDefinitions", "returnType" : { "returnType" : "DescribeJobDefinitionsResult", "documentation" : null }, "syncReturnType" : "DescribeJobDefinitionsResult" }, "DescribeJobQueues" : { "asyncCallableType" : "java.util.concurrent.Callable", "asyncFutureType" : "java.util.concurrent.Future", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "asyncReturnType" : "DescribeJobQueuesResult", "authenticated" : true, "deprecated" : false, "documentation" : "

Describes one or more of your job queues.

", "exceptions" : [ { "exceptionName" : "ClientException", "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

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

These errors are usually caused by a server issue.

", "httpStatusCode" : 500 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "DescribeJobQueuesRequest", "variableName" : "describeJobQueuesRequest", "variableType" : "DescribeJobQueuesRequest", "documentation" : "", "simpleType" : "DescribeJobQueuesRequest", "variableSetterType" : "DescribeJobQueuesRequest" }, "inputStreamPropertyName" : null, "methodName" : "describeJobQueues", "operationName" : "DescribeJobQueues", "returnType" : { "returnType" : "DescribeJobQueuesResult", "documentation" : null }, "syncReturnType" : "DescribeJobQueuesResult" }, "DescribeJobs" : { "asyncCallableType" : "java.util.concurrent.Callable", "asyncFutureType" : "java.util.concurrent.Future", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "asyncReturnType" : "DescribeJobsResult", "authenticated" : true, "deprecated" : false, "documentation" : "

Describes a list of AWS Batch jobs.

", "exceptions" : [ { "exceptionName" : "ClientException", "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

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

These errors are usually caused by a server issue.

", "httpStatusCode" : 500 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "DescribeJobsRequest", "variableName" : "describeJobsRequest", "variableType" : "DescribeJobsRequest", "documentation" : "", "simpleType" : "DescribeJobsRequest", "variableSetterType" : "DescribeJobsRequest" }, "inputStreamPropertyName" : null, "methodName" : "describeJobs", "operationName" : "DescribeJobs", "returnType" : { "returnType" : "DescribeJobsResult", "documentation" : null }, "syncReturnType" : "DescribeJobsResult" }, "ListJobs" : { "asyncCallableType" : "java.util.concurrent.Callable", "asyncFutureType" : "java.util.concurrent.Future", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "asyncReturnType" : "ListJobsResult", "authenticated" : true, "deprecated" : false, "documentation" : "

Returns a list of task jobs for a specified job queue. You can filter the results by job status with the jobStatus parameter.

", "exceptions" : [ { "exceptionName" : "ClientException", "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

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

These errors are usually caused by a server issue.

", "httpStatusCode" : 500 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "ListJobsRequest", "variableName" : "listJobsRequest", "variableType" : "ListJobsRequest", "documentation" : "", "simpleType" : "ListJobsRequest", "variableSetterType" : "ListJobsRequest" }, "inputStreamPropertyName" : null, "methodName" : "listJobs", "operationName" : "ListJobs", "returnType" : { "returnType" : "ListJobsResult", "documentation" : null }, "syncReturnType" : "ListJobsResult" }, "RegisterJobDefinition" : { "asyncCallableType" : "java.util.concurrent.Callable", "asyncFutureType" : "java.util.concurrent.Future", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "asyncReturnType" : "RegisterJobDefinitionResult", "authenticated" : true, "deprecated" : false, "documentation" : "

Registers an AWS Batch job definition.

", "exceptions" : [ { "exceptionName" : "ClientException", "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

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

These errors are usually caused by a server issue.

", "httpStatusCode" : 500 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "RegisterJobDefinitionRequest", "variableName" : "registerJobDefinitionRequest", "variableType" : "RegisterJobDefinitionRequest", "documentation" : "", "simpleType" : "RegisterJobDefinitionRequest", "variableSetterType" : "RegisterJobDefinitionRequest" }, "inputStreamPropertyName" : null, "methodName" : "registerJobDefinition", "operationName" : "RegisterJobDefinition", "returnType" : { "returnType" : "RegisterJobDefinitionResult", "documentation" : null }, "syncReturnType" : "RegisterJobDefinitionResult" }, "SubmitJob" : { "asyncCallableType" : "java.util.concurrent.Callable", "asyncFutureType" : "java.util.concurrent.Future", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "asyncReturnType" : "SubmitJobResult", "authenticated" : true, "deprecated" : false, "documentation" : "

Submits an AWS Batch job from a job definition. Parameters specified during SubmitJob override parameters defined in the job definition.

", "exceptions" : [ { "exceptionName" : "ClientException", "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

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

These errors are usually caused by a server issue.

", "httpStatusCode" : 500 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "SubmitJobRequest", "variableName" : "submitJobRequest", "variableType" : "SubmitJobRequest", "documentation" : "", "simpleType" : "SubmitJobRequest", "variableSetterType" : "SubmitJobRequest" }, "inputStreamPropertyName" : null, "methodName" : "submitJob", "operationName" : "SubmitJob", "returnType" : { "returnType" : "SubmitJobResult", "documentation" : null }, "syncReturnType" : "SubmitJobResult" }, "TerminateJob" : { "asyncCallableType" : "java.util.concurrent.Callable", "asyncFutureType" : "java.util.concurrent.Future", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "asyncReturnType" : "TerminateJobResult", "authenticated" : true, "deprecated" : false, "documentation" : "

Terminates jobs in a job queue. Jobs that are in the STARTING or RUNNING state are terminated, which causes them to transition to FAILED. Jobs that have not progressed to the STARTING state are cancelled.

", "exceptions" : [ { "exceptionName" : "ClientException", "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

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

These errors are usually caused by a server issue.

", "httpStatusCode" : 500 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "TerminateJobRequest", "variableName" : "terminateJobRequest", "variableType" : "TerminateJobRequest", "documentation" : "", "simpleType" : "TerminateJobRequest", "variableSetterType" : "TerminateJobRequest" }, "inputStreamPropertyName" : null, "methodName" : "terminateJob", "operationName" : "TerminateJob", "returnType" : { "returnType" : "TerminateJobResult", "documentation" : null }, "syncReturnType" : "TerminateJobResult" }, "UpdateComputeEnvironment" : { "asyncCallableType" : "java.util.concurrent.Callable", "asyncFutureType" : "java.util.concurrent.Future", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "asyncReturnType" : "UpdateComputeEnvironmentResult", "authenticated" : true, "deprecated" : false, "documentation" : "

Updates an AWS Batch compute environment.

", "exceptions" : [ { "exceptionName" : "ClientException", "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

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

These errors are usually caused by a server issue.

", "httpStatusCode" : 500 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "UpdateComputeEnvironmentRequest", "variableName" : "updateComputeEnvironmentRequest", "variableType" : "UpdateComputeEnvironmentRequest", "documentation" : "", "simpleType" : "UpdateComputeEnvironmentRequest", "variableSetterType" : "UpdateComputeEnvironmentRequest" }, "inputStreamPropertyName" : null, "methodName" : "updateComputeEnvironment", "operationName" : "UpdateComputeEnvironment", "returnType" : { "returnType" : "UpdateComputeEnvironmentResult", "documentation" : null }, "syncReturnType" : "UpdateComputeEnvironmentResult" }, "UpdateJobQueue" : { "asyncCallableType" : "java.util.concurrent.Callable", "asyncFutureType" : "java.util.concurrent.Future", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "asyncReturnType" : "UpdateJobQueueResult", "authenticated" : true, "deprecated" : false, "documentation" : "

Updates a job queue.

", "exceptions" : [ { "exceptionName" : "ClientException", "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

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

These errors are usually caused by a server issue.

", "httpStatusCode" : 500 } ], "hasBlobMemberAsPayload" : false, "input" : { "variableDeclarationType" : "UpdateJobQueueRequest", "variableName" : "updateJobQueueRequest", "variableType" : "UpdateJobQueueRequest", "documentation" : "", "simpleType" : "UpdateJobQueueRequest", "variableSetterType" : "UpdateJobQueueRequest" }, "inputStreamPropertyName" : null, "methodName" : "updateJobQueue", "operationName" : "UpdateJobQueue", "returnType" : { "returnType" : "UpdateJobQueueResult", "documentation" : null }, "syncReturnType" : "UpdateJobQueueResult" } }, "shapes" : { "CEState" : { "c2jName" : "CEState", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : [ { "name" : "ENABLED", "value" : "ENABLED" }, { "name" : "DISABLED", "value" : "DISABLED" } ], "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : null, "membersAsMap" : { }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "CEState", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "CEState", "variableName" : "cEState", "variableType" : "CEState", "documentation" : null, "simpleType" : "CEState", "variableSetterType" : "CEState" }, "wrapper" : false }, "CEStatus" : { "c2jName" : "CEStatus", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : [ { "name" : "CREATING", "value" : "CREATING" }, { "name" : "UPDATING", "value" : "UPDATING" }, { "name" : "DELETING", "value" : "DELETING" }, { "name" : "DELETED", "value" : "DELETED" }, { "name" : "VALID", "value" : "VALID" }, { "name" : "INVALID", "value" : "INVALID" } ], "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : null, "membersAsMap" : { }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "CEStatus", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "CEStatus", "variableName" : "cEStatus", "variableType" : "CEStatus", "documentation" : null, "simpleType" : "CEStatus", "variableSetterType" : "CEStatus" }, "wrapper" : false }, "CEType" : { "c2jName" : "CEType", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : [ { "name" : "MANAGED", "value" : "MANAGED" }, { "name" : "UNMANAGED", "value" : "UNMANAGED" } ], "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : null, "membersAsMap" : { }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "CEType", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "CEType", "variableName" : "cEType", "variableType" : "CEType", "documentation" : null, "simpleType" : "CEType", "variableSetterType" : "CEType" }, "wrapper" : false }, "CRType" : { "c2jName" : "CRType", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : [ { "name" : "EC2", "value" : "EC2" }, { "name" : "SPOT", "value" : "SPOT" } ], "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : null, "membersAsMap" : { }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "CRType", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "CRType", "variableName" : "cRType", "variableType" : "CRType", "documentation" : null, "simpleType" : "CRType", "variableSetterType" : "CRType" }, "wrapper" : false }, "CancelJobRequest" : { "c2jName" : "CancelJobRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : { "action" : "CancelJob", "locationName" : null, "requestUri" : "/v1/canceljob", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "c2jName" : "jobId", "c2jShape" : "String", "deprecated" : false, "documentation" : "

A list of up to 100 job IDs to cancel.

", "enumType" : null, "fluentSetterDocumentation" : "/**

A list of up to 100 job IDs to cancel.

\n@param jobId A list of up to 100 job IDs to cancel.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobId", "getterDocumentation" : "/**

A list of up to 100 job IDs to cancel.

\n@return A list of up to 100 job IDs to cancel.*/", "getterMethodName" : "getJobId", "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" : "jobId", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobId", "setterDocumentation" : "/**

A list of up to 100 job IDs to cancel.

\n@param jobId A list of up to 100 job IDs to cancel.*/", "setterMethodName" : "setJobId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

A list of up to 100 job IDs to cancel.

\n@param jobId A list of up to 100 job IDs to cancel.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "

A list of up to 100 job IDs to cancel.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "reason", "c2jShape" : "String", "deprecated" : false, "documentation" : "

A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

", "enumType" : null, "fluentSetterDocumentation" : "/**

A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

\n@param reason A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withReason", "getterDocumentation" : "/**

A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

\n@return A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.*/", "getterMethodName" : "getReason", "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" : "reason", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "reason", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Reason", "setterDocumentation" : "/**

A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

\n@param reason A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.*/", "setterMethodName" : "setReason", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "reason", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

\n@param reason A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "reason", "variableType" : "String", "documentation" : "

A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "JobId" : { "c2jName" : "jobId", "c2jShape" : "String", "deprecated" : false, "documentation" : "

A list of up to 100 job IDs to cancel.

", "enumType" : null, "fluentSetterDocumentation" : "/**

A list of up to 100 job IDs to cancel.

\n@param jobId A list of up to 100 job IDs to cancel.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobId", "getterDocumentation" : "/**

A list of up to 100 job IDs to cancel.

\n@return A list of up to 100 job IDs to cancel.*/", "getterMethodName" : "getJobId", "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" : "jobId", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobId", "setterDocumentation" : "/**

A list of up to 100 job IDs to cancel.

\n@param jobId A list of up to 100 job IDs to cancel.*/", "setterMethodName" : "setJobId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

A list of up to 100 job IDs to cancel.

\n@param jobId A list of up to 100 job IDs to cancel.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "

A list of up to 100 job IDs to cancel.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Reason" : { "c2jName" : "reason", "c2jShape" : "String", "deprecated" : false, "documentation" : "

A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

", "enumType" : null, "fluentSetterDocumentation" : "/**

A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

\n@param reason A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withReason", "getterDocumentation" : "/**

A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

\n@return A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.*/", "getterMethodName" : "getReason", "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" : "reason", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "reason", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Reason", "setterDocumentation" : "/**

A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

\n@param reason A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.*/", "setterMethodName" : "setReason", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "reason", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

\n@param reason A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "reason", "variableType" : "String", "documentation" : "

A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobId", "reason" ], "shapeName" : "CancelJobRequest", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "CancelJobRequest", "variableName" : "cancelJobRequest", "variableType" : "CancelJobRequest", "documentation" : null, "simpleType" : "CancelJobRequest", "variableSetterType" : "CancelJobRequest" }, "wrapper" : false }, "CancelJobResult" : { "c2jName" : "CancelJobResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : null, "membersAsMap" : { }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "CancelJobResult", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "CancelJobResult", "variableName" : "cancelJobResult", "variableType" : "CancelJobResult", "documentation" : null, "simpleType" : "CancelJobResult", "variableSetterType" : "CancelJobResult" }, "wrapper" : false }, "ClientException" : { "c2jName" : "ClientException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

", "enums" : null, "errorCode" : "ClientException", "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ ], "membersAsMap" : { }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "ClientException", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "ClientException", "variableName" : "clientException", "variableType" : "ClientException", "documentation" : null, "simpleType" : "ClientException", "variableSetterType" : "ClientException" }, "wrapper" : false }, "ComputeEnvironmentDetail" : { "c2jName" : "ComputeEnvironmentDetail", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

An object representing an AWS Batch compute environment.

", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "computeEnvironmentName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The name of the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The name of the compute environment.

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

The name of the compute environment.

\n@return The name of the compute environment.*/", "getterMethodName" : "getComputeEnvironmentName", "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" : "computeEnvironmentName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironmentName", "setterDocumentation" : "/**

The name of the compute environment.

\n@param computeEnvironmentName The name of the compute environment.*/", "setterMethodName" : "setComputeEnvironmentName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The name of the compute environment.

\n@param computeEnvironmentName The name of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentName", "variableType" : "String", "documentation" : "

The name of the compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "computeEnvironmentArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the compute environment.

\n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironmentArn", "getterDocumentation" : "/**

The Amazon Resource Name (ARN) of the compute environment.

\n@return The Amazon Resource Name (ARN) of the compute environment.*/", "getterMethodName" : "getComputeEnvironmentArn", "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" : "computeEnvironmentArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironmentArn", "setterDocumentation" : "/**

The Amazon Resource Name (ARN) of the compute environment.

\n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.*/", "setterMethodName" : "setComputeEnvironmentArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the compute environment.

\n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "ecsClusterArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.

\n@param ecsClusterArn The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withEcsClusterArn", "getterDocumentation" : "/**

The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.

\n@return The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.*/", "getterMethodName" : "getEcsClusterArn", "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" : "ecsClusterArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "ecsClusterArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "EcsClusterArn", "setterDocumentation" : "/**

The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.

\n@param ecsClusterArn The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.*/", "setterMethodName" : "setEcsClusterArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "ecsClusterArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.

\n@param ecsClusterArn The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "ecsClusterArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "type", "c2jShape" : "CEType", "deprecated" : false, "documentation" : "

The type of the compute environment.

", "enumType" : "CEType", "fluentSetterDocumentation" : "/**

The type of the compute environment.

\n@param type The type of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEType*/", "fluentSetterMethodName" : "withType", "getterDocumentation" : "/**

The type of the compute environment.

\n@return The type of the compute environment.\n@see CEType*/", "getterMethodName" : "getType", "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" : "type", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "type", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Type", "setterDocumentation" : "/**

The type of the compute environment.

\n@param type The type of the compute environment.\n@see CEType*/", "setterMethodName" : "setType", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The type of the compute environment.

\n@param type The type of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEType*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "

The type of the compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "state", "c2jShape" : "CEState", "deprecated" : false, "documentation" : "

The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.

", "enumType" : "CEState", "fluentSetterDocumentation" : "/**

The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.

\n@param state The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEState*/", "fluentSetterMethodName" : "withState", "getterDocumentation" : "/**

The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.

\n@return The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.\n@see CEState*/", "getterMethodName" : "getState", "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" : "state", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "state", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "State", "setterDocumentation" : "/**

The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.

\n@param state The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.\n@see CEState*/", "setterMethodName" : "setState", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.

\n@param state The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEState*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "

The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "status", "c2jShape" : "CEStatus", "deprecated" : false, "documentation" : "

The current status of the compute environment (for example, CREATING or VALID).

", "enumType" : "CEStatus", "fluentSetterDocumentation" : "/**

The current status of the compute environment (for example, CREATING or VALID).

\n@param status The current status of the compute environment (for example, CREATING or VALID).\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEStatus*/", "fluentSetterMethodName" : "withStatus", "getterDocumentation" : "/**

The current status of the compute environment (for example, CREATING or VALID).

\n@return The current status of the compute environment (for example, CREATING or VALID).\n@see CEStatus*/", "getterMethodName" : "getStatus", "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" : "status", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "status", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Status", "setterDocumentation" : "/**

The current status of the compute environment (for example, CREATING or VALID).

\n@param status The current status of the compute environment (for example, CREATING or VALID).\n@see CEStatus*/", "setterMethodName" : "setStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The current status of the compute environment (for example, CREATING or VALID).

\n@param status The current status of the compute environment (for example, CREATING or VALID).\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEStatus*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "

The current status of the compute environment (for example, CREATING or VALID).

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "statusReason", "c2jShape" : "String", "deprecated" : false, "documentation" : "

A short, human-readable string to provide additional details about the current status of the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

A short, human-readable string to provide additional details about the current status of the compute environment.

\n@param statusReason A short, human-readable string to provide additional details about the current status of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withStatusReason", "getterDocumentation" : "/**

A short, human-readable string to provide additional details about the current status of the compute environment.

\n@return A short, human-readable string to provide additional details about the current status of the compute environment.*/", "getterMethodName" : "getStatusReason", "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" : "statusReason", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "statusReason", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "StatusReason", "setterDocumentation" : "/**

A short, human-readable string to provide additional details about the current status of the compute environment.

\n@param statusReason A short, human-readable string to provide additional details about the current status of the compute environment.*/", "setterMethodName" : "setStatusReason", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "statusReason", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

A short, human-readable string to provide additional details about the current status of the compute environment.

\n@param statusReason A short, human-readable string to provide additional details about the current status of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "statusReason", "variableType" : "String", "documentation" : "

A short, human-readable string to provide additional details about the current status of the compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "computeResources", "c2jShape" : "ComputeResource", "deprecated" : false, "documentation" : "

The compute resources defined for the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The compute resources defined for the compute environment.

\n@param computeResources The compute resources defined for the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeResources", "getterDocumentation" : "/**

The compute resources defined for the compute environment.

\n@return The compute resources defined for the compute environment.*/", "getterMethodName" : "getComputeResources", "getterModel" : { "returnType" : "ComputeResource", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "computeResources", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeResources", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "ComputeResources", "setterDocumentation" : "/**

The compute resources defined for the compute environment.

\n@param computeResources The compute resources defined for the compute environment.*/", "setterMethodName" : "setComputeResources", "setterModel" : { "variableDeclarationType" : "ComputeResource", "variableName" : "computeResources", "variableType" : "ComputeResource", "documentation" : "", "simpleType" : "ComputeResource", "variableSetterType" : "ComputeResource" }, "simple" : false, "varargSetterDocumentation" : "/**

The compute resources defined for the compute environment.

\n@param computeResources The compute resources defined for the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ComputeResource", "variableName" : "computeResources", "variableType" : "ComputeResource", "documentation" : "

The compute resources defined for the compute environment.

", "simpleType" : "ComputeResource", "variableSetterType" : "ComputeResource" }, "xmlNameSpaceUri" : null }, { "c2jName" : "serviceRole", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.

\n@param serviceRole The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withServiceRole", "getterDocumentation" : "/**

The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.

\n@return The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.*/", "getterMethodName" : "getServiceRole", "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" : "serviceRole", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "serviceRole", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ServiceRole", "setterDocumentation" : "/**

The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.

\n@param serviceRole The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.*/", "setterMethodName" : "setServiceRole", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "serviceRole", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.

\n@param serviceRole The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "serviceRole", "variableType" : "String", "documentation" : "

The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ComputeEnvironmentArn" : { "c2jName" : "computeEnvironmentArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the compute environment.

\n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironmentArn", "getterDocumentation" : "/**

The Amazon Resource Name (ARN) of the compute environment.

\n@return The Amazon Resource Name (ARN) of the compute environment.*/", "getterMethodName" : "getComputeEnvironmentArn", "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" : "computeEnvironmentArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironmentArn", "setterDocumentation" : "/**

The Amazon Resource Name (ARN) of the compute environment.

\n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.*/", "setterMethodName" : "setComputeEnvironmentArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the compute environment.

\n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "ComputeEnvironmentName" : { "c2jName" : "computeEnvironmentName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The name of the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The name of the compute environment.

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

The name of the compute environment.

\n@return The name of the compute environment.*/", "getterMethodName" : "getComputeEnvironmentName", "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" : "computeEnvironmentName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironmentName", "setterDocumentation" : "/**

The name of the compute environment.

\n@param computeEnvironmentName The name of the compute environment.*/", "setterMethodName" : "setComputeEnvironmentName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The name of the compute environment.

\n@param computeEnvironmentName The name of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentName", "variableType" : "String", "documentation" : "

The name of the compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "ComputeResources" : { "c2jName" : "computeResources", "c2jShape" : "ComputeResource", "deprecated" : false, "documentation" : "

The compute resources defined for the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The compute resources defined for the compute environment.

\n@param computeResources The compute resources defined for the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeResources", "getterDocumentation" : "/**

The compute resources defined for the compute environment.

\n@return The compute resources defined for the compute environment.*/", "getterMethodName" : "getComputeResources", "getterModel" : { "returnType" : "ComputeResource", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "computeResources", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeResources", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "ComputeResources", "setterDocumentation" : "/**

The compute resources defined for the compute environment.

\n@param computeResources The compute resources defined for the compute environment.*/", "setterMethodName" : "setComputeResources", "setterModel" : { "variableDeclarationType" : "ComputeResource", "variableName" : "computeResources", "variableType" : "ComputeResource", "documentation" : "", "simpleType" : "ComputeResource", "variableSetterType" : "ComputeResource" }, "simple" : false, "varargSetterDocumentation" : "/**

The compute resources defined for the compute environment.

\n@param computeResources The compute resources defined for the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ComputeResource", "variableName" : "computeResources", "variableType" : "ComputeResource", "documentation" : "

The compute resources defined for the compute environment.

", "simpleType" : "ComputeResource", "variableSetterType" : "ComputeResource" }, "xmlNameSpaceUri" : null }, "EcsClusterArn" : { "c2jName" : "ecsClusterArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.

\n@param ecsClusterArn The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withEcsClusterArn", "getterDocumentation" : "/**

The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.

\n@return The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.*/", "getterMethodName" : "getEcsClusterArn", "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" : "ecsClusterArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "ecsClusterArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "EcsClusterArn", "setterDocumentation" : "/**

The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.

\n@param ecsClusterArn The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.*/", "setterMethodName" : "setEcsClusterArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "ecsClusterArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.

\n@param ecsClusterArn The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "ecsClusterArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "ServiceRole" : { "c2jName" : "serviceRole", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.

\n@param serviceRole The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withServiceRole", "getterDocumentation" : "/**

The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.

\n@return The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.*/", "getterMethodName" : "getServiceRole", "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" : "serviceRole", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "serviceRole", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ServiceRole", "setterDocumentation" : "/**

The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.

\n@param serviceRole The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.*/", "setterMethodName" : "setServiceRole", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "serviceRole", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.

\n@param serviceRole The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "serviceRole", "variableType" : "String", "documentation" : "

The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "State" : { "c2jName" : "state", "c2jShape" : "CEState", "deprecated" : false, "documentation" : "

The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.

", "enumType" : "CEState", "fluentSetterDocumentation" : "/**

The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.

\n@param state The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEState*/", "fluentSetterMethodName" : "withState", "getterDocumentation" : "/**

The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.

\n@return The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.\n@see CEState*/", "getterMethodName" : "getState", "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" : "state", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "state", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "State", "setterDocumentation" : "/**

The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.

\n@param state The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.\n@see CEState*/", "setterMethodName" : "setState", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.

\n@param state The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEState*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "

The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Status" : { "c2jName" : "status", "c2jShape" : "CEStatus", "deprecated" : false, "documentation" : "

The current status of the compute environment (for example, CREATING or VALID).

", "enumType" : "CEStatus", "fluentSetterDocumentation" : "/**

The current status of the compute environment (for example, CREATING or VALID).

\n@param status The current status of the compute environment (for example, CREATING or VALID).\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEStatus*/", "fluentSetterMethodName" : "withStatus", "getterDocumentation" : "/**

The current status of the compute environment (for example, CREATING or VALID).

\n@return The current status of the compute environment (for example, CREATING or VALID).\n@see CEStatus*/", "getterMethodName" : "getStatus", "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" : "status", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "status", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Status", "setterDocumentation" : "/**

The current status of the compute environment (for example, CREATING or VALID).

\n@param status The current status of the compute environment (for example, CREATING or VALID).\n@see CEStatus*/", "setterMethodName" : "setStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The current status of the compute environment (for example, CREATING or VALID).

\n@param status The current status of the compute environment (for example, CREATING or VALID).\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEStatus*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "

The current status of the compute environment (for example, CREATING or VALID).

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "StatusReason" : { "c2jName" : "statusReason", "c2jShape" : "String", "deprecated" : false, "documentation" : "

A short, human-readable string to provide additional details about the current status of the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

A short, human-readable string to provide additional details about the current status of the compute environment.

\n@param statusReason A short, human-readable string to provide additional details about the current status of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withStatusReason", "getterDocumentation" : "/**

A short, human-readable string to provide additional details about the current status of the compute environment.

\n@return A short, human-readable string to provide additional details about the current status of the compute environment.*/", "getterMethodName" : "getStatusReason", "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" : "statusReason", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "statusReason", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "StatusReason", "setterDocumentation" : "/**

A short, human-readable string to provide additional details about the current status of the compute environment.

\n@param statusReason A short, human-readable string to provide additional details about the current status of the compute environment.*/", "setterMethodName" : "setStatusReason", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "statusReason", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

A short, human-readable string to provide additional details about the current status of the compute environment.

\n@param statusReason A short, human-readable string to provide additional details about the current status of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "statusReason", "variableType" : "String", "documentation" : "

A short, human-readable string to provide additional details about the current status of the compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Type" : { "c2jName" : "type", "c2jShape" : "CEType", "deprecated" : false, "documentation" : "

The type of the compute environment.

", "enumType" : "CEType", "fluentSetterDocumentation" : "/**

The type of the compute environment.

\n@param type The type of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEType*/", "fluentSetterMethodName" : "withType", "getterDocumentation" : "/**

The type of the compute environment.

\n@return The type of the compute environment.\n@see CEType*/", "getterMethodName" : "getType", "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" : "type", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "type", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Type", "setterDocumentation" : "/**

The type of the compute environment.

\n@param type The type of the compute environment.\n@see CEType*/", "setterMethodName" : "setType", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The type of the compute environment.

\n@param type The type of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEType*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "

The type of the compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "computeEnvironmentName", "computeEnvironmentArn", "ecsClusterArn" ], "shapeName" : "ComputeEnvironmentDetail", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "ComputeEnvironmentDetail", "variableName" : "computeEnvironmentDetail", "variableType" : "ComputeEnvironmentDetail", "documentation" : null, "simpleType" : "ComputeEnvironmentDetail", "variableSetterType" : "ComputeEnvironmentDetail" }, "wrapper" : false }, "ComputeEnvironmentOrder" : { "c2jName" : "ComputeEnvironmentOrder", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

The order in which compute environments are tried for job placement within a queue. Compute environments are tried in ascending order. For example, if two compute environments are associated with a job queue, the compute environment with a lower order integer value is tried for job placement first.

", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "order", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The order of the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The order of the compute environment.

\n@param order The order of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withOrder", "getterDocumentation" : "/**

The order of the compute environment.

\n@return The order of the compute environment.*/", "getterMethodName" : "getOrder", "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" : "order", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "order", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Order", "setterDocumentation" : "/**

The order of the compute environment.

\n@param order The order of the compute environment.*/", "setterMethodName" : "setOrder", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "order", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The order of the compute environment.

\n@param order The order of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "order", "variableType" : "Integer", "documentation" : "

The order of the compute environment.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "computeEnvironment", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the compute environment.

\n@param computeEnvironment The Amazon Resource Name (ARN) of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironment", "getterDocumentation" : "/**

The Amazon Resource Name (ARN) of the compute environment.

\n@return The Amazon Resource Name (ARN) of the compute environment.*/", "getterMethodName" : "getComputeEnvironment", "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" : "computeEnvironment", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironment", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironment", "setterDocumentation" : "/**

The Amazon Resource Name (ARN) of the compute environment.

\n@param computeEnvironment The Amazon Resource Name (ARN) of the compute environment.*/", "setterMethodName" : "setComputeEnvironment", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironment", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the compute environment.

\n@param computeEnvironment The Amazon Resource Name (ARN) of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironment", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ComputeEnvironment" : { "c2jName" : "computeEnvironment", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the compute environment.

\n@param computeEnvironment The Amazon Resource Name (ARN) of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironment", "getterDocumentation" : "/**

The Amazon Resource Name (ARN) of the compute environment.

\n@return The Amazon Resource Name (ARN) of the compute environment.*/", "getterMethodName" : "getComputeEnvironment", "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" : "computeEnvironment", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironment", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironment", "setterDocumentation" : "/**

The Amazon Resource Name (ARN) of the compute environment.

\n@param computeEnvironment The Amazon Resource Name (ARN) of the compute environment.*/", "setterMethodName" : "setComputeEnvironment", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironment", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the compute environment.

\n@param computeEnvironment The Amazon Resource Name (ARN) of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironment", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Order" : { "c2jName" : "order", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The order of the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The order of the compute environment.

\n@param order The order of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withOrder", "getterDocumentation" : "/**

The order of the compute environment.

\n@return The order of the compute environment.*/", "getterMethodName" : "getOrder", "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" : "order", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "order", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Order", "setterDocumentation" : "/**

The order of the compute environment.

\n@param order The order of the compute environment.*/", "setterMethodName" : "setOrder", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "order", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The order of the compute environment.

\n@param order The order of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "order", "variableType" : "Integer", "documentation" : "

The order of the compute environment.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "order", "computeEnvironment" ], "shapeName" : "ComputeEnvironmentOrder", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "ComputeEnvironmentOrder", "variableName" : "computeEnvironmentOrder", "variableType" : "ComputeEnvironmentOrder", "documentation" : null, "simpleType" : "ComputeEnvironmentOrder", "variableSetterType" : "ComputeEnvironmentOrder" }, "wrapper" : false }, "ComputeResource" : { "c2jName" : "ComputeResource", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

An object representing an AWS Batch compute resource.

", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "type", "c2jShape" : "CRType", "deprecated" : false, "documentation" : "

The type of compute environment.

", "enumType" : "CRType", "fluentSetterDocumentation" : "/**

The type of compute environment.

\n@param type The type of compute environment.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CRType*/", "fluentSetterMethodName" : "withType", "getterDocumentation" : "/**

The type of compute environment.

\n@return The type of compute environment.\n@see CRType*/", "getterMethodName" : "getType", "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" : "type", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "type", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Type", "setterDocumentation" : "/**

The type of compute environment.

\n@param type The type of compute environment.\n@see CRType*/", "setterMethodName" : "setType", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The type of compute environment.

\n@param type The type of compute environment.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CRType*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "

The type of compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "minvCpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The minimum number of EC2 vCPUs that an environment should maintain.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The minimum number of EC2 vCPUs that an environment should maintain.

\n@param minvCpus The minimum number of EC2 vCPUs that an environment should maintain.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMinvCpus", "getterDocumentation" : "/**

The minimum number of EC2 vCPUs that an environment should maintain.

\n@return The minimum number of EC2 vCPUs that an environment should maintain.*/", "getterMethodName" : "getMinvCpus", "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" : "minvCpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "minvCpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "MinvCpus", "setterDocumentation" : "/**

The minimum number of EC2 vCPUs that an environment should maintain.

\n@param minvCpus The minimum number of EC2 vCPUs that an environment should maintain.*/", "setterMethodName" : "setMinvCpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "minvCpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The minimum number of EC2 vCPUs that an environment should maintain.

\n@param minvCpus The minimum number of EC2 vCPUs that an environment should maintain.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "minvCpus", "variableType" : "Integer", "documentation" : "

The minimum number of EC2 vCPUs that an environment should maintain.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "maxvCpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The maximum number of EC2 vCPUs that an environment can reach.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The maximum number of EC2 vCPUs that an environment can reach.

\n@param maxvCpus The maximum number of EC2 vCPUs that an environment can reach.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMaxvCpus", "getterDocumentation" : "/**

The maximum number of EC2 vCPUs that an environment can reach.

\n@return The maximum number of EC2 vCPUs that an environment can reach.*/", "getterMethodName" : "getMaxvCpus", "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" : "maxvCpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "maxvCpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "MaxvCpus", "setterDocumentation" : "/**

The maximum number of EC2 vCPUs that an environment can reach.

\n@param maxvCpus The maximum number of EC2 vCPUs that an environment can reach.*/", "setterMethodName" : "setMaxvCpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "maxvCpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The maximum number of EC2 vCPUs that an environment can reach.

\n@param maxvCpus The maximum number of EC2 vCPUs that an environment can reach.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "maxvCpus", "variableType" : "Integer", "documentation" : "

The maximum number of EC2 vCPUs that an environment can reach.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "desiredvCpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The desired number of EC2 vCPUS in the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The desired number of EC2 vCPUS in the compute environment.

\n@param desiredvCpus The desired number of EC2 vCPUS in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withDesiredvCpus", "getterDocumentation" : "/**

The desired number of EC2 vCPUS in the compute environment.

\n@return The desired number of EC2 vCPUS in the compute environment.*/", "getterMethodName" : "getDesiredvCpus", "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" : "desiredvCpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "desiredvCpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "DesiredvCpus", "setterDocumentation" : "/**

The desired number of EC2 vCPUS in the compute environment.

\n@param desiredvCpus The desired number of EC2 vCPUS in the compute environment.*/", "setterMethodName" : "setDesiredvCpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "desiredvCpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The desired number of EC2 vCPUS in the compute environment.

\n@param desiredvCpus The desired number of EC2 vCPUS in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "desiredvCpus", "variableType" : "Integer", "documentation" : "

The desired number of EC2 vCPUS in the compute environment.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "instanceTypes", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

The instances types that may launched.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The instances types that may launched.

\n@param instanceTypes The instances types that may launched.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withInstanceTypes", "getterDocumentation" : "/**

The instances types that may launched.

\n@return The instances types that may launched.*/", "getterMethodName" : "getInstanceTypes", "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" : "instanceTypes", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "instanceTypes", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "InstanceTypes", "setterDocumentation" : "/**

The instances types that may launched.

\n@param instanceTypes The instances types that may launched.*/", "setterMethodName" : "setInstanceTypes", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "instanceTypes", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

The instances types that may launched.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setInstanceTypes(java.util.Collection)} or {@link #withInstanceTypes(java.util.Collection)} if you want to override the existing values.

\n@param instanceTypes The instances types that may launched.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "instanceTypes", "variableType" : "java.util.List", "documentation" : "

The instances types that may launched.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "subnets", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

The VPC subnets into which the compute resources are launched.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The VPC subnets into which the compute resources are launched.

\n@param subnets The VPC subnets into which the compute resources are launched.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withSubnets", "getterDocumentation" : "/**

The VPC subnets into which the compute resources are launched.

\n@return The VPC subnets into which the compute resources are launched.*/", "getterMethodName" : "getSubnets", "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" : "subnets", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "subnets", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Subnets", "setterDocumentation" : "/**

The VPC subnets into which the compute resources are launched.

\n@param subnets The VPC subnets into which the compute resources are launched.*/", "setterMethodName" : "setSubnets", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "subnets", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

The VPC subnets into which the compute resources are launched.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setSubnets(java.util.Collection)} or {@link #withSubnets(java.util.Collection)} if you want to override the existing values.

\n@param subnets The VPC subnets into which the compute resources are launched.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "subnets", "variableType" : "java.util.List", "documentation" : "

The VPC subnets into which the compute resources are launched.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "securityGroupIds", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

The EC2 security group that is associated with instances launched in the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The EC2 security group that is associated with instances launched in the compute environment.

\n@param securityGroupIds The EC2 security group that is associated with instances launched in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withSecurityGroupIds", "getterDocumentation" : "/**

The EC2 security group that is associated with instances launched in the compute environment.

\n@return The EC2 security group that is associated with instances launched in the compute environment.*/", "getterMethodName" : "getSecurityGroupIds", "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" : "securityGroupIds", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "securityGroupIds", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "SecurityGroupIds", "setterDocumentation" : "/**

The EC2 security group that is associated with instances launched in the compute environment.

\n@param securityGroupIds The EC2 security group that is associated with instances launched in the compute environment.*/", "setterMethodName" : "setSecurityGroupIds", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "securityGroupIds", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

The EC2 security group that is associated with instances launched in the compute environment.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setSecurityGroupIds(java.util.Collection)} or {@link #withSecurityGroupIds(java.util.Collection)} if you want to override the existing values.

\n@param securityGroupIds The EC2 security group that is associated with instances launched in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "securityGroupIds", "variableType" : "java.util.List", "documentation" : "

The EC2 security group that is associated with instances launched in the compute environment.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "ec2KeyPair", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The EC2 key pair that is used for instances launched in the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The EC2 key pair that is used for instances launched in the compute environment.

\n@param ec2KeyPair The EC2 key pair that is used for instances launched in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withEc2KeyPair", "getterDocumentation" : "/**

The EC2 key pair that is used for instances launched in the compute environment.

\n@return The EC2 key pair that is used for instances launched in the compute environment.*/", "getterMethodName" : "getEc2KeyPair", "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" : "ec2KeyPair", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "ec2KeyPair", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Ec2KeyPair", "setterDocumentation" : "/**

The EC2 key pair that is used for instances launched in the compute environment.

\n@param ec2KeyPair The EC2 key pair that is used for instances launched in the compute environment.*/", "setterMethodName" : "setEc2KeyPair", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "ec2KeyPair", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The EC2 key pair that is used for instances launched in the compute environment.

\n@param ec2KeyPair The EC2 key pair that is used for instances launched in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "ec2KeyPair", "variableType" : "String", "documentation" : "

The EC2 key pair that is used for instances launched in the compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "instanceRole", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.

\n@param instanceRole The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withInstanceRole", "getterDocumentation" : "/**

The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.

\n@return The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.*/", "getterMethodName" : "getInstanceRole", "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" : "instanceRole", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "instanceRole", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "InstanceRole", "setterDocumentation" : "/**

The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.

\n@param instanceRole The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.*/", "setterMethodName" : "setInstanceRole", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "instanceRole", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.

\n@param instanceRole The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "instanceRole", "variableType" : "String", "documentation" : "

The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "tags", "c2jShape" : "TagsMap", "deprecated" : false, "documentation" : "

Key-value pair tags to be applied to resources that are launched in the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

Key-value pair tags to be applied to resources that are launched in the compute environment.

\n@param tags Key-value pair tags to be applied to resources that are launched in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withTags", "getterDocumentation" : "/**

Key-value pair tags to be applied to resources that are launched in the compute environment.

\n@return Key-value pair tags to be applied to resources that are launched in the compute environment.*/", "getterMethodName" : "getTags", "getterModel" : { "returnType" : "java.util.Map", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "tags", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "tags", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : true, "mapModel" : { "implType" : "java.util.HashMap", "interfaceType" : "java.util.Map", "keyLocationName" : "key", "keyModel" : null, "keyType" : "String", "valueLocationName" : "value", "valueModel" : { "c2jName" : "value", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withValue", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getValue", "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" : "value", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "value", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Value", "setterDocumentation" : "/**\n@param value */", "setterMethodName" : "setValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "valueType" : "String", "entryType" : "Map.Entry", "keySimple" : true, "templateImplType" : "java.util.HashMap", "templateType" : "java.util.Map", "valueList" : false, "valueSimple" : true }, "marshallingTargetClass" : "Map", "marshallingType" : "MAP", "name" : "Tags", "setterDocumentation" : "/**

Key-value pair tags to be applied to resources that are launched in the compute environment.

\n@param tags Key-value pair tags to be applied to resources that are launched in the compute environment.*/", "setterMethodName" : "setTags", "setterModel" : { "variableDeclarationType" : "java.util.Map", "variableName" : "tags", "variableType" : "java.util.Map", "documentation" : "", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "simple" : false, "varargSetterDocumentation" : "/**

Key-value pair tags to be applied to resources that are launched in the compute environment.

\n@param tags Key-value pair tags to be applied to resources that are launched in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.Map", "variableName" : "tags", "variableType" : "java.util.Map", "documentation" : "

Key-value pair tags to be applied to resources that are launched in the compute environment.

", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "xmlNameSpaceUri" : null }, { "c2jName" : "bidPercentage", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.

\n@param bidPercentage The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withBidPercentage", "getterDocumentation" : "/**

The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.

\n@return The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.*/", "getterMethodName" : "getBidPercentage", "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" : "bidPercentage", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "bidPercentage", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "BidPercentage", "setterDocumentation" : "/**

The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.

\n@param bidPercentage The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.*/", "setterMethodName" : "setBidPercentage", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "bidPercentage", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.

\n@param bidPercentage The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "bidPercentage", "variableType" : "Integer", "documentation" : "

The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "spotIamFleetRole", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.

\n@param spotIamFleetRole The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withSpotIamFleetRole", "getterDocumentation" : "/**

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.

\n@return The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.*/", "getterMethodName" : "getSpotIamFleetRole", "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" : "spotIamFleetRole", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "spotIamFleetRole", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "SpotIamFleetRole", "setterDocumentation" : "/**

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.

\n@param spotIamFleetRole The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.*/", "setterMethodName" : "setSpotIamFleetRole", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "spotIamFleetRole", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.

\n@param spotIamFleetRole The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "spotIamFleetRole", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "BidPercentage" : { "c2jName" : "bidPercentage", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.

\n@param bidPercentage The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withBidPercentage", "getterDocumentation" : "/**

The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.

\n@return The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.*/", "getterMethodName" : "getBidPercentage", "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" : "bidPercentage", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "bidPercentage", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "BidPercentage", "setterDocumentation" : "/**

The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.

\n@param bidPercentage The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.*/", "setterMethodName" : "setBidPercentage", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "bidPercentage", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.

\n@param bidPercentage The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "bidPercentage", "variableType" : "Integer", "documentation" : "

The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "DesiredvCpus" : { "c2jName" : "desiredvCpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The desired number of EC2 vCPUS in the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The desired number of EC2 vCPUS in the compute environment.

\n@param desiredvCpus The desired number of EC2 vCPUS in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withDesiredvCpus", "getterDocumentation" : "/**

The desired number of EC2 vCPUS in the compute environment.

\n@return The desired number of EC2 vCPUS in the compute environment.*/", "getterMethodName" : "getDesiredvCpus", "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" : "desiredvCpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "desiredvCpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "DesiredvCpus", "setterDocumentation" : "/**

The desired number of EC2 vCPUS in the compute environment.

\n@param desiredvCpus The desired number of EC2 vCPUS in the compute environment.*/", "setterMethodName" : "setDesiredvCpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "desiredvCpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The desired number of EC2 vCPUS in the compute environment.

\n@param desiredvCpus The desired number of EC2 vCPUS in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "desiredvCpus", "variableType" : "Integer", "documentation" : "

The desired number of EC2 vCPUS in the compute environment.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "Ec2KeyPair" : { "c2jName" : "ec2KeyPair", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The EC2 key pair that is used for instances launched in the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The EC2 key pair that is used for instances launched in the compute environment.

\n@param ec2KeyPair The EC2 key pair that is used for instances launched in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withEc2KeyPair", "getterDocumentation" : "/**

The EC2 key pair that is used for instances launched in the compute environment.

\n@return The EC2 key pair that is used for instances launched in the compute environment.*/", "getterMethodName" : "getEc2KeyPair", "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" : "ec2KeyPair", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "ec2KeyPair", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Ec2KeyPair", "setterDocumentation" : "/**

The EC2 key pair that is used for instances launched in the compute environment.

\n@param ec2KeyPair The EC2 key pair that is used for instances launched in the compute environment.*/", "setterMethodName" : "setEc2KeyPair", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "ec2KeyPair", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The EC2 key pair that is used for instances launched in the compute environment.

\n@param ec2KeyPair The EC2 key pair that is used for instances launched in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "ec2KeyPair", "variableType" : "String", "documentation" : "

The EC2 key pair that is used for instances launched in the compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "InstanceRole" : { "c2jName" : "instanceRole", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.

\n@param instanceRole The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withInstanceRole", "getterDocumentation" : "/**

The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.

\n@return The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.*/", "getterMethodName" : "getInstanceRole", "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" : "instanceRole", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "instanceRole", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "InstanceRole", "setterDocumentation" : "/**

The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.

\n@param instanceRole The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.*/", "setterMethodName" : "setInstanceRole", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "instanceRole", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.

\n@param instanceRole The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "instanceRole", "variableType" : "String", "documentation" : "

The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "InstanceTypes" : { "c2jName" : "instanceTypes", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

The instances types that may launched.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The instances types that may launched.

\n@param instanceTypes The instances types that may launched.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withInstanceTypes", "getterDocumentation" : "/**

The instances types that may launched.

\n@return The instances types that may launched.*/", "getterMethodName" : "getInstanceTypes", "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" : "instanceTypes", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "instanceTypes", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "InstanceTypes", "setterDocumentation" : "/**

The instances types that may launched.

\n@param instanceTypes The instances types that may launched.*/", "setterMethodName" : "setInstanceTypes", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "instanceTypes", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

The instances types that may launched.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setInstanceTypes(java.util.Collection)} or {@link #withInstanceTypes(java.util.Collection)} if you want to override the existing values.

\n@param instanceTypes The instances types that may launched.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "instanceTypes", "variableType" : "java.util.List", "documentation" : "

The instances types that may launched.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "MaxvCpus" : { "c2jName" : "maxvCpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The maximum number of EC2 vCPUs that an environment can reach.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The maximum number of EC2 vCPUs that an environment can reach.

\n@param maxvCpus The maximum number of EC2 vCPUs that an environment can reach.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMaxvCpus", "getterDocumentation" : "/**

The maximum number of EC2 vCPUs that an environment can reach.

\n@return The maximum number of EC2 vCPUs that an environment can reach.*/", "getterMethodName" : "getMaxvCpus", "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" : "maxvCpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "maxvCpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "MaxvCpus", "setterDocumentation" : "/**

The maximum number of EC2 vCPUs that an environment can reach.

\n@param maxvCpus The maximum number of EC2 vCPUs that an environment can reach.*/", "setterMethodName" : "setMaxvCpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "maxvCpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The maximum number of EC2 vCPUs that an environment can reach.

\n@param maxvCpus The maximum number of EC2 vCPUs that an environment can reach.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "maxvCpus", "variableType" : "Integer", "documentation" : "

The maximum number of EC2 vCPUs that an environment can reach.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "MinvCpus" : { "c2jName" : "minvCpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The minimum number of EC2 vCPUs that an environment should maintain.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The minimum number of EC2 vCPUs that an environment should maintain.

\n@param minvCpus The minimum number of EC2 vCPUs that an environment should maintain.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMinvCpus", "getterDocumentation" : "/**

The minimum number of EC2 vCPUs that an environment should maintain.

\n@return The minimum number of EC2 vCPUs that an environment should maintain.*/", "getterMethodName" : "getMinvCpus", "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" : "minvCpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "minvCpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "MinvCpus", "setterDocumentation" : "/**

The minimum number of EC2 vCPUs that an environment should maintain.

\n@param minvCpus The minimum number of EC2 vCPUs that an environment should maintain.*/", "setterMethodName" : "setMinvCpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "minvCpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The minimum number of EC2 vCPUs that an environment should maintain.

\n@param minvCpus The minimum number of EC2 vCPUs that an environment should maintain.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "minvCpus", "variableType" : "Integer", "documentation" : "

The minimum number of EC2 vCPUs that an environment should maintain.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "SecurityGroupIds" : { "c2jName" : "securityGroupIds", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

The EC2 security group that is associated with instances launched in the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The EC2 security group that is associated with instances launched in the compute environment.

\n@param securityGroupIds The EC2 security group that is associated with instances launched in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withSecurityGroupIds", "getterDocumentation" : "/**

The EC2 security group that is associated with instances launched in the compute environment.

\n@return The EC2 security group that is associated with instances launched in the compute environment.*/", "getterMethodName" : "getSecurityGroupIds", "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" : "securityGroupIds", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "securityGroupIds", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "SecurityGroupIds", "setterDocumentation" : "/**

The EC2 security group that is associated with instances launched in the compute environment.

\n@param securityGroupIds The EC2 security group that is associated with instances launched in the compute environment.*/", "setterMethodName" : "setSecurityGroupIds", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "securityGroupIds", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

The EC2 security group that is associated with instances launched in the compute environment.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setSecurityGroupIds(java.util.Collection)} or {@link #withSecurityGroupIds(java.util.Collection)} if you want to override the existing values.

\n@param securityGroupIds The EC2 security group that is associated with instances launched in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "securityGroupIds", "variableType" : "java.util.List", "documentation" : "

The EC2 security group that is associated with instances launched in the compute environment.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "SpotIamFleetRole" : { "c2jName" : "spotIamFleetRole", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.

\n@param spotIamFleetRole The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withSpotIamFleetRole", "getterDocumentation" : "/**

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.

\n@return The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.*/", "getterMethodName" : "getSpotIamFleetRole", "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" : "spotIamFleetRole", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "spotIamFleetRole", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "SpotIamFleetRole", "setterDocumentation" : "/**

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.

\n@param spotIamFleetRole The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.*/", "setterMethodName" : "setSpotIamFleetRole", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "spotIamFleetRole", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.

\n@param spotIamFleetRole The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "spotIamFleetRole", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Subnets" : { "c2jName" : "subnets", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

The VPC subnets into which the compute resources are launched.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The VPC subnets into which the compute resources are launched.

\n@param subnets The VPC subnets into which the compute resources are launched.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withSubnets", "getterDocumentation" : "/**

The VPC subnets into which the compute resources are launched.

\n@return The VPC subnets into which the compute resources are launched.*/", "getterMethodName" : "getSubnets", "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" : "subnets", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "subnets", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Subnets", "setterDocumentation" : "/**

The VPC subnets into which the compute resources are launched.

\n@param subnets The VPC subnets into which the compute resources are launched.*/", "setterMethodName" : "setSubnets", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "subnets", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

The VPC subnets into which the compute resources are launched.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setSubnets(java.util.Collection)} or {@link #withSubnets(java.util.Collection)} if you want to override the existing values.

\n@param subnets The VPC subnets into which the compute resources are launched.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "subnets", "variableType" : "java.util.List", "documentation" : "

The VPC subnets into which the compute resources are launched.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "Tags" : { "c2jName" : "tags", "c2jShape" : "TagsMap", "deprecated" : false, "documentation" : "

Key-value pair tags to be applied to resources that are launched in the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

Key-value pair tags to be applied to resources that are launched in the compute environment.

\n@param tags Key-value pair tags to be applied to resources that are launched in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withTags", "getterDocumentation" : "/**

Key-value pair tags to be applied to resources that are launched in the compute environment.

\n@return Key-value pair tags to be applied to resources that are launched in the compute environment.*/", "getterMethodName" : "getTags", "getterModel" : { "returnType" : "java.util.Map", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "tags", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "tags", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : true, "mapModel" : { "implType" : "java.util.HashMap", "interfaceType" : "java.util.Map", "keyLocationName" : "key", "keyModel" : null, "keyType" : "String", "valueLocationName" : "value", "valueModel" : { "c2jName" : "value", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withValue", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getValue", "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" : "value", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "value", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Value", "setterDocumentation" : "/**\n@param value */", "setterMethodName" : "setValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "valueType" : "String", "entryType" : "Map.Entry", "keySimple" : true, "templateImplType" : "java.util.HashMap", "templateType" : "java.util.Map", "valueList" : false, "valueSimple" : true }, "marshallingTargetClass" : "Map", "marshallingType" : "MAP", "name" : "Tags", "setterDocumentation" : "/**

Key-value pair tags to be applied to resources that are launched in the compute environment.

\n@param tags Key-value pair tags to be applied to resources that are launched in the compute environment.*/", "setterMethodName" : "setTags", "setterModel" : { "variableDeclarationType" : "java.util.Map", "variableName" : "tags", "variableType" : "java.util.Map", "documentation" : "", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "simple" : false, "varargSetterDocumentation" : "/**

Key-value pair tags to be applied to resources that are launched in the compute environment.

\n@param tags Key-value pair tags to be applied to resources that are launched in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.Map", "variableName" : "tags", "variableType" : "java.util.Map", "documentation" : "

Key-value pair tags to be applied to resources that are launched in the compute environment.

", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "xmlNameSpaceUri" : null }, "Type" : { "c2jName" : "type", "c2jShape" : "CRType", "deprecated" : false, "documentation" : "

The type of compute environment.

", "enumType" : "CRType", "fluentSetterDocumentation" : "/**

The type of compute environment.

\n@param type The type of compute environment.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CRType*/", "fluentSetterMethodName" : "withType", "getterDocumentation" : "/**

The type of compute environment.

\n@return The type of compute environment.\n@see CRType*/", "getterMethodName" : "getType", "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" : "type", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "type", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Type", "setterDocumentation" : "/**

The type of compute environment.

\n@param type The type of compute environment.\n@see CRType*/", "setterMethodName" : "setType", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The type of compute environment.

\n@param type The type of compute environment.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CRType*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "

The type of compute environment.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "type", "minvCpus", "maxvCpus", "instanceTypes", "subnets", "securityGroupIds", "instanceRole" ], "shapeName" : "ComputeResource", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "ComputeResource", "variableName" : "computeResource", "variableType" : "ComputeResource", "documentation" : null, "simpleType" : "ComputeResource", "variableSetterType" : "ComputeResource" }, "wrapper" : false }, "ComputeResourceUpdate" : { "c2jName" : "ComputeResourceUpdate", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

An object representing the attributes of a compute environment that can be updated.

", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "minvCpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The minimum number of EC2 vCPUs that an environment should maintain.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The minimum number of EC2 vCPUs that an environment should maintain.

\n@param minvCpus The minimum number of EC2 vCPUs that an environment should maintain.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMinvCpus", "getterDocumentation" : "/**

The minimum number of EC2 vCPUs that an environment should maintain.

\n@return The minimum number of EC2 vCPUs that an environment should maintain.*/", "getterMethodName" : "getMinvCpus", "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" : "minvCpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "minvCpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "MinvCpus", "setterDocumentation" : "/**

The minimum number of EC2 vCPUs that an environment should maintain.

\n@param minvCpus The minimum number of EC2 vCPUs that an environment should maintain.*/", "setterMethodName" : "setMinvCpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "minvCpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The minimum number of EC2 vCPUs that an environment should maintain.

\n@param minvCpus The minimum number of EC2 vCPUs that an environment should maintain.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "minvCpus", "variableType" : "Integer", "documentation" : "

The minimum number of EC2 vCPUs that an environment should maintain.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "maxvCpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The maximum number of EC2 vCPUs that an environment can reach.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The maximum number of EC2 vCPUs that an environment can reach.

\n@param maxvCpus The maximum number of EC2 vCPUs that an environment can reach.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMaxvCpus", "getterDocumentation" : "/**

The maximum number of EC2 vCPUs that an environment can reach.

\n@return The maximum number of EC2 vCPUs that an environment can reach.*/", "getterMethodName" : "getMaxvCpus", "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" : "maxvCpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "maxvCpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "MaxvCpus", "setterDocumentation" : "/**

The maximum number of EC2 vCPUs that an environment can reach.

\n@param maxvCpus The maximum number of EC2 vCPUs that an environment can reach.*/", "setterMethodName" : "setMaxvCpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "maxvCpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The maximum number of EC2 vCPUs that an environment can reach.

\n@param maxvCpus The maximum number of EC2 vCPUs that an environment can reach.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "maxvCpus", "variableType" : "Integer", "documentation" : "

The maximum number of EC2 vCPUs that an environment can reach.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "desiredvCpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The desired number of EC2 vCPUS in the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The desired number of EC2 vCPUS in the compute environment.

\n@param desiredvCpus The desired number of EC2 vCPUS in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withDesiredvCpus", "getterDocumentation" : "/**

The desired number of EC2 vCPUS in the compute environment.

\n@return The desired number of EC2 vCPUS in the compute environment.*/", "getterMethodName" : "getDesiredvCpus", "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" : "desiredvCpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "desiredvCpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "DesiredvCpus", "setterDocumentation" : "/**

The desired number of EC2 vCPUS in the compute environment.

\n@param desiredvCpus The desired number of EC2 vCPUS in the compute environment.*/", "setterMethodName" : "setDesiredvCpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "desiredvCpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The desired number of EC2 vCPUS in the compute environment.

\n@param desiredvCpus The desired number of EC2 vCPUS in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "desiredvCpus", "variableType" : "Integer", "documentation" : "

The desired number of EC2 vCPUS in the compute environment.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "DesiredvCpus" : { "c2jName" : "desiredvCpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The desired number of EC2 vCPUS in the compute environment.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The desired number of EC2 vCPUS in the compute environment.

\n@param desiredvCpus The desired number of EC2 vCPUS in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withDesiredvCpus", "getterDocumentation" : "/**

The desired number of EC2 vCPUS in the compute environment.

\n@return The desired number of EC2 vCPUS in the compute environment.*/", "getterMethodName" : "getDesiredvCpus", "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" : "desiredvCpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "desiredvCpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "DesiredvCpus", "setterDocumentation" : "/**

The desired number of EC2 vCPUS in the compute environment.

\n@param desiredvCpus The desired number of EC2 vCPUS in the compute environment.*/", "setterMethodName" : "setDesiredvCpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "desiredvCpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The desired number of EC2 vCPUS in the compute environment.

\n@param desiredvCpus The desired number of EC2 vCPUS in the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "desiredvCpus", "variableType" : "Integer", "documentation" : "

The desired number of EC2 vCPUS in the compute environment.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "MaxvCpus" : { "c2jName" : "maxvCpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The maximum number of EC2 vCPUs that an environment can reach.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The maximum number of EC2 vCPUs that an environment can reach.

\n@param maxvCpus The maximum number of EC2 vCPUs that an environment can reach.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMaxvCpus", "getterDocumentation" : "/**

The maximum number of EC2 vCPUs that an environment can reach.

\n@return The maximum number of EC2 vCPUs that an environment can reach.*/", "getterMethodName" : "getMaxvCpus", "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" : "maxvCpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "maxvCpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "MaxvCpus", "setterDocumentation" : "/**

The maximum number of EC2 vCPUs that an environment can reach.

\n@param maxvCpus The maximum number of EC2 vCPUs that an environment can reach.*/", "setterMethodName" : "setMaxvCpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "maxvCpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The maximum number of EC2 vCPUs that an environment can reach.

\n@param maxvCpus The maximum number of EC2 vCPUs that an environment can reach.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "maxvCpus", "variableType" : "Integer", "documentation" : "

The maximum number of EC2 vCPUs that an environment can reach.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "MinvCpus" : { "c2jName" : "minvCpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The minimum number of EC2 vCPUs that an environment should maintain.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The minimum number of EC2 vCPUs that an environment should maintain.

\n@param minvCpus The minimum number of EC2 vCPUs that an environment should maintain.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMinvCpus", "getterDocumentation" : "/**

The minimum number of EC2 vCPUs that an environment should maintain.

\n@return The minimum number of EC2 vCPUs that an environment should maintain.*/", "getterMethodName" : "getMinvCpus", "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" : "minvCpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "minvCpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "MinvCpus", "setterDocumentation" : "/**

The minimum number of EC2 vCPUs that an environment should maintain.

\n@param minvCpus The minimum number of EC2 vCPUs that an environment should maintain.*/", "setterMethodName" : "setMinvCpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "minvCpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The minimum number of EC2 vCPUs that an environment should maintain.

\n@param minvCpus The minimum number of EC2 vCPUs that an environment should maintain.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "minvCpus", "variableType" : "Integer", "documentation" : "

The minimum number of EC2 vCPUs that an environment should maintain.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "ComputeResourceUpdate", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "ComputeResourceUpdate", "variableName" : "computeResourceUpdate", "variableType" : "ComputeResourceUpdate", "documentation" : null, "simpleType" : "ComputeResourceUpdate", "variableSetterType" : "ComputeResourceUpdate" }, "wrapper" : false }, "ContainerDetail" : { "c2jName" : "ContainerDetail", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

An object representing the details of a container that is part of a job.

", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "image", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The image used to start the container.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The image used to start the container.

\n@param image The image used to start the container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withImage", "getterDocumentation" : "/**

The image used to start the container.

\n@return The image used to start the container.*/", "getterMethodName" : "getImage", "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" : "image", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "image", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Image", "setterDocumentation" : "/**

The image used to start the container.

\n@param image The image used to start the container.*/", "setterMethodName" : "setImage", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "image", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The image used to start the container.

\n@param image The image used to start the container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "image", "variableType" : "String", "documentation" : "

The image used to start the container.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "vcpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The number of VCPUs allocated for the job.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The number of VCPUs allocated for the job.

\n@param vcpus The number of VCPUs allocated for the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withVcpus", "getterDocumentation" : "/**

The number of VCPUs allocated for the job.

\n@return The number of VCPUs allocated for the job.*/", "getterMethodName" : "getVcpus", "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" : "vcpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "vcpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Vcpus", "setterDocumentation" : "/**

The number of VCPUs allocated for the job.

\n@param vcpus The number of VCPUs allocated for the job.*/", "setterMethodName" : "setVcpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "vcpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The number of VCPUs allocated for the job.

\n@param vcpus The number of VCPUs allocated for the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "vcpus", "variableType" : "Integer", "documentation" : "

The number of VCPUs allocated for the job.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "memory", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The number of MiB of memory reserved for the job.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The number of MiB of memory reserved for the job.

\n@param memory The number of MiB of memory reserved for the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMemory", "getterDocumentation" : "/**

The number of MiB of memory reserved for the job.

\n@return The number of MiB of memory reserved for the job.*/", "getterMethodName" : "getMemory", "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" : "memory", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "memory", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Memory", "setterDocumentation" : "/**

The number of MiB of memory reserved for the job.

\n@param memory The number of MiB of memory reserved for the job.*/", "setterMethodName" : "setMemory", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "memory", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The number of MiB of memory reserved for the job.

\n@param memory The number of MiB of memory reserved for the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "memory", "variableType" : "Integer", "documentation" : "

The number of MiB of memory reserved for the job.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "command", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

The command that is passed to the container.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The command that is passed to the container.

\n@param command The command that is passed to the container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withCommand", "getterDocumentation" : "/**

The command that is passed to the container.

\n@return The command that is passed to the container.*/", "getterMethodName" : "getCommand", "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" : "command", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "command", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Command", "setterDocumentation" : "/**

The command that is passed to the container.

\n@param command The command that is passed to the container.*/", "setterMethodName" : "setCommand", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "command", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

The command that is passed to the container.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setCommand(java.util.Collection)} or {@link #withCommand(java.util.Collection)} if you want to override the existing values.

\n@param command The command that is passed to the container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "command", "variableType" : "java.util.List", "documentation" : "

The command that is passed to the container.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "jobRoleArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) associated with the job upon execution.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The Amazon Resource Name (ARN) associated with the job upon execution.

\n@param jobRoleArn The Amazon Resource Name (ARN) associated with the job upon execution.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobRoleArn", "getterDocumentation" : "/**

The Amazon Resource Name (ARN) associated with the job upon execution.

\n@return The Amazon Resource Name (ARN) associated with the job upon execution.*/", "getterMethodName" : "getJobRoleArn", "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" : "jobRoleArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobRoleArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobRoleArn", "setterDocumentation" : "/**

The Amazon Resource Name (ARN) associated with the job upon execution.

\n@param jobRoleArn The Amazon Resource Name (ARN) associated with the job upon execution.*/", "setterMethodName" : "setJobRoleArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobRoleArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The Amazon Resource Name (ARN) associated with the job upon execution.

\n@param jobRoleArn The Amazon Resource Name (ARN) associated with the job upon execution.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobRoleArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) associated with the job upon execution.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "volumes", "c2jShape" : "Volumes", "deprecated" : false, "documentation" : "

A list of volumes associated with the job.

", "enumType" : null, "fluentSetterDocumentation" : "/**

A list of volumes associated with the job.

\n@param volumes A list of volumes associated with the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withVolumes", "getterDocumentation" : "/**

A list of volumes associated with the job.

\n@return A list of volumes associated with the job.*/", "getterMethodName" : "getVolumes", "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" : "volumes", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "volumes", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "Volume", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "Volume", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Volume", "variableName" : "member", "variableType" : "Volume", "documentation" : "", "simpleType" : "Volume", "variableSetterType" : "Volume" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Volume", "variableName" : "member", "variableType" : "Volume", "documentation" : "", "simpleType" : "Volume", "variableSetterType" : "Volume" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Volume", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "Volume", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Volumes", "setterDocumentation" : "/**

A list of volumes associated with the job.

\n@param volumes A list of volumes associated with the job.*/", "setterMethodName" : "setVolumes", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "volumes", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

A list of volumes associated with the job.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setVolumes(java.util.Collection)} or {@link #withVolumes(java.util.Collection)} if you want to override the existing values.

\n@param volumes A list of volumes associated with the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "volumes", "variableType" : "java.util.List", "documentation" : "

A list of volumes associated with the job.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "environment", "c2jShape" : "EnvironmentVariables", "deprecated" : false, "documentation" : "

The environment variables to pass to a container.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The environment variables to pass to a container.

\n@param environment The environment variables to pass to a container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withEnvironment", "getterDocumentation" : "/**

The environment variables to pass to a container.

\n@return The environment variables to pass to a container.*/", "getterMethodName" : "getEnvironment", "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" : "environment", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "environment", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "KeyValuePair", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "KeyValuePair", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "KeyValuePair", "variableName" : "member", "variableType" : "KeyValuePair", "documentation" : "", "simpleType" : "KeyValuePair", "variableSetterType" : "KeyValuePair" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "KeyValuePair", "variableName" : "member", "variableType" : "KeyValuePair", "documentation" : "", "simpleType" : "KeyValuePair", "variableSetterType" : "KeyValuePair" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "KeyValuePair", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "KeyValuePair", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Environment", "setterDocumentation" : "/**

The environment variables to pass to a container.

\n@param environment The environment variables to pass to a container.*/", "setterMethodName" : "setEnvironment", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "environment", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

The environment variables to pass to a container.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setEnvironment(java.util.Collection)} or {@link #withEnvironment(java.util.Collection)} if you want to override the existing values.

\n@param environment The environment variables to pass to a container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "environment", "variableType" : "java.util.List", "documentation" : "

The environment variables to pass to a container.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "mountPoints", "c2jShape" : "MountPoints", "deprecated" : false, "documentation" : "

The mount points for data volumes in your container.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The mount points for data volumes in your container.

\n@param mountPoints The mount points for data volumes in your container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMountPoints", "getterDocumentation" : "/**

The mount points for data volumes in your container.

\n@return The mount points for data volumes in your container.*/", "getterMethodName" : "getMountPoints", "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" : "mountPoints", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "mountPoints", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "MountPoint", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "MountPoint", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "MountPoint", "variableName" : "member", "variableType" : "MountPoint", "documentation" : "", "simpleType" : "MountPoint", "variableSetterType" : "MountPoint" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "MountPoint", "variableName" : "member", "variableType" : "MountPoint", "documentation" : "", "simpleType" : "MountPoint", "variableSetterType" : "MountPoint" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "MountPoint", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "MountPoint", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "MountPoints", "setterDocumentation" : "/**

The mount points for data volumes in your container.

\n@param mountPoints The mount points for data volumes in your container.*/", "setterMethodName" : "setMountPoints", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "mountPoints", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

The mount points for data volumes in your container.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setMountPoints(java.util.Collection)} or {@link #withMountPoints(java.util.Collection)} if you want to override the existing values.

\n@param mountPoints The mount points for data volumes in your container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "mountPoints", "variableType" : "java.util.List", "documentation" : "

The mount points for data volumes in your container.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "readonlyRootFilesystem", "c2jShape" : "Boolean", "deprecated" : false, "documentation" : "

When this parameter is true, the container is given read-only access to its root file system.

", "enumType" : null, "fluentSetterDocumentation" : "/**

When this parameter is true, the container is given read-only access to its root file system.

\n@param readonlyRootFilesystem When this parameter is true, the container is given read-only access to its root file system.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withReadonlyRootFilesystem", "getterDocumentation" : "/**

When this parameter is true, the container is given read-only access to its root file system.

\n@return When this parameter is true, the container is given read-only access to its root file system.*/", "getterMethodName" : "getReadonlyRootFilesystem", "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" : "readonlyRootFilesystem", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "readonlyRootFilesystem", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Boolean", "marshallingType" : "BOOLEAN", "name" : "ReadonlyRootFilesystem", "setterDocumentation" : "/**

When this parameter is true, the container is given read-only access to its root file system.

\n@param readonlyRootFilesystem When this parameter is true, the container is given read-only access to its root file system.*/", "setterMethodName" : "setReadonlyRootFilesystem", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "readonlyRootFilesystem", "variableType" : "Boolean", "documentation" : "", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "varargSetterDocumentation" : "/**

When this parameter is true, the container is given read-only access to its root file system.

\n@param readonlyRootFilesystem When this parameter is true, the container is given read-only access to its root file system.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "readonlyRootFilesystem", "variableType" : "Boolean", "documentation" : "

When this parameter is true, the container is given read-only access to its root file system.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlNameSpaceUri" : null }, { "c2jName" : "ulimits", "c2jShape" : "Ulimits", "deprecated" : false, "documentation" : "

A list of ulimit values to set in the container.

", "enumType" : null, "fluentSetterDocumentation" : "/**

A list of ulimit values to set in the container.

\n@param ulimits A list of ulimit values to set in the container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withUlimits", "getterDocumentation" : "/**

A list of ulimit values to set in the container.

\n@return A list of ulimit values to set in the container.*/", "getterMethodName" : "getUlimits", "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" : "ulimits", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "ulimits", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "Ulimit", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "Ulimit", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Ulimit", "variableName" : "member", "variableType" : "Ulimit", "documentation" : "", "simpleType" : "Ulimit", "variableSetterType" : "Ulimit" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Ulimit", "variableName" : "member", "variableType" : "Ulimit", "documentation" : "", "simpleType" : "Ulimit", "variableSetterType" : "Ulimit" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Ulimit", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "Ulimit", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Ulimits", "setterDocumentation" : "/**

A list of ulimit values to set in the container.

\n@param ulimits A list of ulimit values to set in the container.*/", "setterMethodName" : "setUlimits", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "ulimits", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

A list of ulimit values to set in the container.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setUlimits(java.util.Collection)} or {@link #withUlimits(java.util.Collection)} if you want to override the existing values.

\n@param ulimits A list of ulimit values to set in the container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "ulimits", "variableType" : "java.util.List", "documentation" : "

A list of ulimit values to set in the container.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "privileged", "c2jShape" : "Boolean", "deprecated" : false, "documentation" : "

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).

", "enumType" : null, "fluentSetterDocumentation" : "/**

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).

\n@param privileged When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withPrivileged", "getterDocumentation" : "/**

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).

\n@return When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).*/", "getterMethodName" : "getPrivileged", "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" : "privileged", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "privileged", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Boolean", "marshallingType" : "BOOLEAN", "name" : "Privileged", "setterDocumentation" : "/**

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).

\n@param privileged When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).*/", "setterMethodName" : "setPrivileged", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "privileged", "variableType" : "Boolean", "documentation" : "", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "varargSetterDocumentation" : "/**

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).

\n@param privileged When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "privileged", "variableType" : "Boolean", "documentation" : "

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlNameSpaceUri" : null }, { "c2jName" : "user", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The user name to use inside the container.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The user name to use inside the container.

\n@param user The user name to use inside the container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withUser", "getterDocumentation" : "/**

The user name to use inside the container.

\n@return The user name to use inside the container.*/", "getterMethodName" : "getUser", "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" : "user", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "user", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "User", "setterDocumentation" : "/**

The user name to use inside the container.

\n@param user The user name to use inside the container.*/", "setterMethodName" : "setUser", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "user", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The user name to use inside the container.

\n@param user The user name to use inside the container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "user", "variableType" : "String", "documentation" : "

The user name to use inside the container.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "exitCode", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The exit code to return upon completion.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The exit code to return upon completion.

\n@param exitCode The exit code to return upon completion.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withExitCode", "getterDocumentation" : "/**

The exit code to return upon completion.

\n@return The exit code to return upon completion.*/", "getterMethodName" : "getExitCode", "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" : "exitCode", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "exitCode", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "ExitCode", "setterDocumentation" : "/**

The exit code to return upon completion.

\n@param exitCode The exit code to return upon completion.*/", "setterMethodName" : "setExitCode", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "exitCode", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The exit code to return upon completion.

\n@param exitCode The exit code to return upon completion.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "exitCode", "variableType" : "Integer", "documentation" : "

The exit code to return upon completion.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "reason", "c2jShape" : "String", "deprecated" : false, "documentation" : "

A short (255 max characters) human-readable string to provide additional details about a running or stopped container.

", "enumType" : null, "fluentSetterDocumentation" : "/**

A short (255 max characters) human-readable string to provide additional details about a running or stopped container.

\n@param reason A short (255 max characters) human-readable string to provide additional details about a running or stopped container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withReason", "getterDocumentation" : "/**

A short (255 max characters) human-readable string to provide additional details about a running or stopped container.

\n@return A short (255 max characters) human-readable string to provide additional details about a running or stopped container.*/", "getterMethodName" : "getReason", "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" : "reason", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "reason", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Reason", "setterDocumentation" : "/**

A short (255 max characters) human-readable string to provide additional details about a running or stopped container.

\n@param reason A short (255 max characters) human-readable string to provide additional details about a running or stopped container.*/", "setterMethodName" : "setReason", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "reason", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

A short (255 max characters) human-readable string to provide additional details about a running or stopped container.

\n@param reason A short (255 max characters) human-readable string to provide additional details about a running or stopped container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "reason", "variableType" : "String", "documentation" : "

A short (255 max characters) human-readable string to provide additional details about a running or stopped container.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "containerInstanceArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the container instance on which the container is running.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the container instance on which the container is running.

\n@param containerInstanceArn The Amazon Resource Name (ARN) of the container instance on which the container is running.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withContainerInstanceArn", "getterDocumentation" : "/**

The Amazon Resource Name (ARN) of the container instance on which the container is running.

\n@return The Amazon Resource Name (ARN) of the container instance on which the container is running.*/", "getterMethodName" : "getContainerInstanceArn", "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" : "containerInstanceArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "containerInstanceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ContainerInstanceArn", "setterDocumentation" : "/**

The Amazon Resource Name (ARN) of the container instance on which the container is running.

\n@param containerInstanceArn The Amazon Resource Name (ARN) of the container instance on which the container is running.*/", "setterMethodName" : "setContainerInstanceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "containerInstanceArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the container instance on which the container is running.

\n@param containerInstanceArn The Amazon Resource Name (ARN) of the container instance on which the container is running.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "containerInstanceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the container instance on which the container is running.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "Command" : { "c2jName" : "command", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

The command that is passed to the container.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The command that is passed to the container.

\n@param command The command that is passed to the container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withCommand", "getterDocumentation" : "/**

The command that is passed to the container.

\n@return The command that is passed to the container.*/", "getterMethodName" : "getCommand", "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" : "command", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "command", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Command", "setterDocumentation" : "/**

The command that is passed to the container.

\n@param command The command that is passed to the container.*/", "setterMethodName" : "setCommand", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "command", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

The command that is passed to the container.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setCommand(java.util.Collection)} or {@link #withCommand(java.util.Collection)} if you want to override the existing values.

\n@param command The command that is passed to the container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "command", "variableType" : "java.util.List", "documentation" : "

The command that is passed to the container.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "ContainerInstanceArn" : { "c2jName" : "containerInstanceArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) of the container instance on which the container is running.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the container instance on which the container is running.

\n@param containerInstanceArn The Amazon Resource Name (ARN) of the container instance on which the container is running.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withContainerInstanceArn", "getterDocumentation" : "/**

The Amazon Resource Name (ARN) of the container instance on which the container is running.

\n@return The Amazon Resource Name (ARN) of the container instance on which the container is running.*/", "getterMethodName" : "getContainerInstanceArn", "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" : "containerInstanceArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "containerInstanceArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ContainerInstanceArn", "setterDocumentation" : "/**

The Amazon Resource Name (ARN) of the container instance on which the container is running.

\n@param containerInstanceArn The Amazon Resource Name (ARN) of the container instance on which the container is running.*/", "setterMethodName" : "setContainerInstanceArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "containerInstanceArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The Amazon Resource Name (ARN) of the container instance on which the container is running.

\n@param containerInstanceArn The Amazon Resource Name (ARN) of the container instance on which the container is running.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "containerInstanceArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) of the container instance on which the container is running.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Environment" : { "c2jName" : "environment", "c2jShape" : "EnvironmentVariables", "deprecated" : false, "documentation" : "

The environment variables to pass to a container.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The environment variables to pass to a container.

\n@param environment The environment variables to pass to a container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withEnvironment", "getterDocumentation" : "/**

The environment variables to pass to a container.

\n@return The environment variables to pass to a container.*/", "getterMethodName" : "getEnvironment", "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" : "environment", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "environment", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "KeyValuePair", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "KeyValuePair", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "KeyValuePair", "variableName" : "member", "variableType" : "KeyValuePair", "documentation" : "", "simpleType" : "KeyValuePair", "variableSetterType" : "KeyValuePair" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "KeyValuePair", "variableName" : "member", "variableType" : "KeyValuePair", "documentation" : "", "simpleType" : "KeyValuePair", "variableSetterType" : "KeyValuePair" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "KeyValuePair", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "KeyValuePair", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Environment", "setterDocumentation" : "/**

The environment variables to pass to a container.

\n@param environment The environment variables to pass to a container.*/", "setterMethodName" : "setEnvironment", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "environment", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

The environment variables to pass to a container.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setEnvironment(java.util.Collection)} or {@link #withEnvironment(java.util.Collection)} if you want to override the existing values.

\n@param environment The environment variables to pass to a container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "environment", "variableType" : "java.util.List", "documentation" : "

The environment variables to pass to a container.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "ExitCode" : { "c2jName" : "exitCode", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The exit code to return upon completion.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The exit code to return upon completion.

\n@param exitCode The exit code to return upon completion.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withExitCode", "getterDocumentation" : "/**

The exit code to return upon completion.

\n@return The exit code to return upon completion.*/", "getterMethodName" : "getExitCode", "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" : "exitCode", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "exitCode", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "ExitCode", "setterDocumentation" : "/**

The exit code to return upon completion.

\n@param exitCode The exit code to return upon completion.*/", "setterMethodName" : "setExitCode", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "exitCode", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The exit code to return upon completion.

\n@param exitCode The exit code to return upon completion.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "exitCode", "variableType" : "Integer", "documentation" : "

The exit code to return upon completion.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "Image" : { "c2jName" : "image", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The image used to start the container.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The image used to start the container.

\n@param image The image used to start the container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withImage", "getterDocumentation" : "/**

The image used to start the container.

\n@return The image used to start the container.*/", "getterMethodName" : "getImage", "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" : "image", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "image", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Image", "setterDocumentation" : "/**

The image used to start the container.

\n@param image The image used to start the container.*/", "setterMethodName" : "setImage", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "image", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The image used to start the container.

\n@param image The image used to start the container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "image", "variableType" : "String", "documentation" : "

The image used to start the container.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "JobRoleArn" : { "c2jName" : "jobRoleArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The Amazon Resource Name (ARN) associated with the job upon execution.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The Amazon Resource Name (ARN) associated with the job upon execution.

\n@param jobRoleArn The Amazon Resource Name (ARN) associated with the job upon execution.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobRoleArn", "getterDocumentation" : "/**

The Amazon Resource Name (ARN) associated with the job upon execution.

\n@return The Amazon Resource Name (ARN) associated with the job upon execution.*/", "getterMethodName" : "getJobRoleArn", "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" : "jobRoleArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobRoleArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobRoleArn", "setterDocumentation" : "/**

The Amazon Resource Name (ARN) associated with the job upon execution.

\n@param jobRoleArn The Amazon Resource Name (ARN) associated with the job upon execution.*/", "setterMethodName" : "setJobRoleArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobRoleArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The Amazon Resource Name (ARN) associated with the job upon execution.

\n@param jobRoleArn The Amazon Resource Name (ARN) associated with the job upon execution.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobRoleArn", "variableType" : "String", "documentation" : "

The Amazon Resource Name (ARN) associated with the job upon execution.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Memory" : { "c2jName" : "memory", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The number of MiB of memory reserved for the job.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The number of MiB of memory reserved for the job.

\n@param memory The number of MiB of memory reserved for the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMemory", "getterDocumentation" : "/**

The number of MiB of memory reserved for the job.

\n@return The number of MiB of memory reserved for the job.*/", "getterMethodName" : "getMemory", "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" : "memory", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "memory", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Memory", "setterDocumentation" : "/**

The number of MiB of memory reserved for the job.

\n@param memory The number of MiB of memory reserved for the job.*/", "setterMethodName" : "setMemory", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "memory", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The number of MiB of memory reserved for the job.

\n@param memory The number of MiB of memory reserved for the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "memory", "variableType" : "Integer", "documentation" : "

The number of MiB of memory reserved for the job.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "MountPoints" : { "c2jName" : "mountPoints", "c2jShape" : "MountPoints", "deprecated" : false, "documentation" : "

The mount points for data volumes in your container.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The mount points for data volumes in your container.

\n@param mountPoints The mount points for data volumes in your container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMountPoints", "getterDocumentation" : "/**

The mount points for data volumes in your container.

\n@return The mount points for data volumes in your container.*/", "getterMethodName" : "getMountPoints", "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" : "mountPoints", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "mountPoints", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "MountPoint", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "MountPoint", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "MountPoint", "variableName" : "member", "variableType" : "MountPoint", "documentation" : "", "simpleType" : "MountPoint", "variableSetterType" : "MountPoint" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "MountPoint", "variableName" : "member", "variableType" : "MountPoint", "documentation" : "", "simpleType" : "MountPoint", "variableSetterType" : "MountPoint" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "MountPoint", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "MountPoint", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "MountPoints", "setterDocumentation" : "/**

The mount points for data volumes in your container.

\n@param mountPoints The mount points for data volumes in your container.*/", "setterMethodName" : "setMountPoints", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "mountPoints", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

The mount points for data volumes in your container.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setMountPoints(java.util.Collection)} or {@link #withMountPoints(java.util.Collection)} if you want to override the existing values.

\n@param mountPoints The mount points for data volumes in your container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "mountPoints", "variableType" : "java.util.List", "documentation" : "

The mount points for data volumes in your container.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "Privileged" : { "c2jName" : "privileged", "c2jShape" : "Boolean", "deprecated" : false, "documentation" : "

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).

", "enumType" : null, "fluentSetterDocumentation" : "/**

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).

\n@param privileged When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withPrivileged", "getterDocumentation" : "/**

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).

\n@return When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).*/", "getterMethodName" : "getPrivileged", "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" : "privileged", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "privileged", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Boolean", "marshallingType" : "BOOLEAN", "name" : "Privileged", "setterDocumentation" : "/**

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).

\n@param privileged When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).*/", "setterMethodName" : "setPrivileged", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "privileged", "variableType" : "Boolean", "documentation" : "", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "varargSetterDocumentation" : "/**

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).

\n@param privileged When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "privileged", "variableType" : "Boolean", "documentation" : "

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlNameSpaceUri" : null }, "ReadonlyRootFilesystem" : { "c2jName" : "readonlyRootFilesystem", "c2jShape" : "Boolean", "deprecated" : false, "documentation" : "

When this parameter is true, the container is given read-only access to its root file system.

", "enumType" : null, "fluentSetterDocumentation" : "/**

When this parameter is true, the container is given read-only access to its root file system.

\n@param readonlyRootFilesystem When this parameter is true, the container is given read-only access to its root file system.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withReadonlyRootFilesystem", "getterDocumentation" : "/**

When this parameter is true, the container is given read-only access to its root file system.

\n@return When this parameter is true, the container is given read-only access to its root file system.*/", "getterMethodName" : "getReadonlyRootFilesystem", "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" : "readonlyRootFilesystem", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "readonlyRootFilesystem", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Boolean", "marshallingType" : "BOOLEAN", "name" : "ReadonlyRootFilesystem", "setterDocumentation" : "/**

When this parameter is true, the container is given read-only access to its root file system.

\n@param readonlyRootFilesystem When this parameter is true, the container is given read-only access to its root file system.*/", "setterMethodName" : "setReadonlyRootFilesystem", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "readonlyRootFilesystem", "variableType" : "Boolean", "documentation" : "", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "varargSetterDocumentation" : "/**

When this parameter is true, the container is given read-only access to its root file system.

\n@param readonlyRootFilesystem When this parameter is true, the container is given read-only access to its root file system.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "readonlyRootFilesystem", "variableType" : "Boolean", "documentation" : "

When this parameter is true, the container is given read-only access to its root file system.

", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlNameSpaceUri" : null }, "Reason" : { "c2jName" : "reason", "c2jShape" : "String", "deprecated" : false, "documentation" : "

A short (255 max characters) human-readable string to provide additional details about a running or stopped container.

", "enumType" : null, "fluentSetterDocumentation" : "/**

A short (255 max characters) human-readable string to provide additional details about a running or stopped container.

\n@param reason A short (255 max characters) human-readable string to provide additional details about a running or stopped container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withReason", "getterDocumentation" : "/**

A short (255 max characters) human-readable string to provide additional details about a running or stopped container.

\n@return A short (255 max characters) human-readable string to provide additional details about a running or stopped container.*/", "getterMethodName" : "getReason", "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" : "reason", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "reason", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Reason", "setterDocumentation" : "/**

A short (255 max characters) human-readable string to provide additional details about a running or stopped container.

\n@param reason A short (255 max characters) human-readable string to provide additional details about a running or stopped container.*/", "setterMethodName" : "setReason", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "reason", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

A short (255 max characters) human-readable string to provide additional details about a running or stopped container.

\n@param reason A short (255 max characters) human-readable string to provide additional details about a running or stopped container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "reason", "variableType" : "String", "documentation" : "

A short (255 max characters) human-readable string to provide additional details about a running or stopped container.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Ulimits" : { "c2jName" : "ulimits", "c2jShape" : "Ulimits", "deprecated" : false, "documentation" : "

A list of ulimit values to set in the container.

", "enumType" : null, "fluentSetterDocumentation" : "/**

A list of ulimit values to set in the container.

\n@param ulimits A list of ulimit values to set in the container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withUlimits", "getterDocumentation" : "/**

A list of ulimit values to set in the container.

\n@return A list of ulimit values to set in the container.*/", "getterMethodName" : "getUlimits", "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" : "ulimits", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "ulimits", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "Ulimit", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "Ulimit", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Ulimit", "variableName" : "member", "variableType" : "Ulimit", "documentation" : "", "simpleType" : "Ulimit", "variableSetterType" : "Ulimit" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Ulimit", "variableName" : "member", "variableType" : "Ulimit", "documentation" : "", "simpleType" : "Ulimit", "variableSetterType" : "Ulimit" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Ulimit", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "Ulimit", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Ulimits", "setterDocumentation" : "/**

A list of ulimit values to set in the container.

\n@param ulimits A list of ulimit values to set in the container.*/", "setterMethodName" : "setUlimits", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "ulimits", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

A list of ulimit values to set in the container.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setUlimits(java.util.Collection)} or {@link #withUlimits(java.util.Collection)} if you want to override the existing values.

\n@param ulimits A list of ulimit values to set in the container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "ulimits", "variableType" : "java.util.List", "documentation" : "

A list of ulimit values to set in the container.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "User" : { "c2jName" : "user", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The user name to use inside the container.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The user name to use inside the container.

\n@param user The user name to use inside the container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withUser", "getterDocumentation" : "/**

The user name to use inside the container.

\n@return The user name to use inside the container.*/", "getterMethodName" : "getUser", "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" : "user", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "user", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "User", "setterDocumentation" : "/**

The user name to use inside the container.

\n@param user The user name to use inside the container.*/", "setterMethodName" : "setUser", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "user", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

The user name to use inside the container.

\n@param user The user name to use inside the container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "user", "variableType" : "String", "documentation" : "

The user name to use inside the container.

", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Vcpus" : { "c2jName" : "vcpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The number of VCPUs allocated for the job.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The number of VCPUs allocated for the job.

\n@param vcpus The number of VCPUs allocated for the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withVcpus", "getterDocumentation" : "/**

The number of VCPUs allocated for the job.

\n@return The number of VCPUs allocated for the job.*/", "getterMethodName" : "getVcpus", "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" : "vcpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "vcpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Vcpus", "setterDocumentation" : "/**

The number of VCPUs allocated for the job.

\n@param vcpus The number of VCPUs allocated for the job.*/", "setterMethodName" : "setVcpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "vcpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The number of VCPUs allocated for the job.

\n@param vcpus The number of VCPUs allocated for the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "vcpus", "variableType" : "Integer", "documentation" : "

The number of VCPUs allocated for the job.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "Volumes" : { "c2jName" : "volumes", "c2jShape" : "Volumes", "deprecated" : false, "documentation" : "

A list of volumes associated with the job.

", "enumType" : null, "fluentSetterDocumentation" : "/**

A list of volumes associated with the job.

\n@param volumes A list of volumes associated with the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withVolumes", "getterDocumentation" : "/**

A list of volumes associated with the job.

\n@return A list of volumes associated with the job.*/", "getterMethodName" : "getVolumes", "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" : "volumes", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "volumes", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "Volume", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "Volume", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Volume", "variableName" : "member", "variableType" : "Volume", "documentation" : "", "simpleType" : "Volume", "variableSetterType" : "Volume" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Volume", "variableName" : "member", "variableType" : "Volume", "documentation" : "", "simpleType" : "Volume", "variableSetterType" : "Volume" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Volume", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "Volume", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Volumes", "setterDocumentation" : "/**

A list of volumes associated with the job.

\n@param volumes A list of volumes associated with the job.*/", "setterMethodName" : "setVolumes", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "volumes", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

A list of volumes associated with the job.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setVolumes(java.util.Collection)} or {@link #withVolumes(java.util.Collection)} if you want to override the existing values.

\n@param volumes A list of volumes associated with the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "volumes", "variableType" : "java.util.List", "documentation" : "

A list of volumes associated with the job.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "ContainerDetail", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "ContainerDetail", "variableName" : "containerDetail", "variableType" : "ContainerDetail", "documentation" : null, "simpleType" : "ContainerDetail", "variableSetterType" : "ContainerDetail" }, "wrapper" : false }, "ContainerOverrides" : { "c2jName" : "ContainerOverrides", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

The overrides that should be sent to a container.

", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "vcpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.

\n@param vcpus The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withVcpus", "getterDocumentation" : "/**

The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.

\n@return The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.*/", "getterMethodName" : "getVcpus", "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" : "vcpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "vcpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Vcpus", "setterDocumentation" : "/**

The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.

\n@param vcpus The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.*/", "setterMethodName" : "setVcpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "vcpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.

\n@param vcpus The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "vcpus", "variableType" : "Integer", "documentation" : "

The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "memory", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.

\n@param memory The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMemory", "getterDocumentation" : "/**

The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.

\n@return The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.*/", "getterMethodName" : "getMemory", "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" : "memory", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "memory", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Memory", "setterDocumentation" : "/**

The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.

\n@param memory The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.*/", "setterMethodName" : "setMemory", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "memory", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.

\n@param memory The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "memory", "variableType" : "Integer", "documentation" : "

The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "command", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

The command to send to the container that overrides the default command from the Docker image or the job definition.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The command to send to the container that overrides the default command from the Docker image or the job definition.

\n@param command The command to send to the container that overrides the default command from the Docker image or the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withCommand", "getterDocumentation" : "/**

The command to send to the container that overrides the default command from the Docker image or the job definition.

\n@return The command to send to the container that overrides the default command from the Docker image or the job definition.*/", "getterMethodName" : "getCommand", "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" : "command", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "command", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Command", "setterDocumentation" : "/**

The command to send to the container that overrides the default command from the Docker image or the job definition.

\n@param command The command to send to the container that overrides the default command from the Docker image or the job definition.*/", "setterMethodName" : "setCommand", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "command", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

The command to send to the container that overrides the default command from the Docker image or the job definition.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setCommand(java.util.Collection)} or {@link #withCommand(java.util.Collection)} if you want to override the existing values.

\n@param command The command to send to the container that overrides the default command from the Docker image or the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "command", "variableType" : "java.util.List", "documentation" : "

The command to send to the container that overrides the default command from the Docker image or the job definition.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "environment", "c2jShape" : "EnvironmentVariables", "deprecated" : false, "documentation" : "

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

\n@param environment The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withEnvironment", "getterDocumentation" : "/**

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

\n@return The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.*/", "getterMethodName" : "getEnvironment", "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" : "environment", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "environment", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "KeyValuePair", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "KeyValuePair", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "KeyValuePair", "variableName" : "member", "variableType" : "KeyValuePair", "documentation" : "", "simpleType" : "KeyValuePair", "variableSetterType" : "KeyValuePair" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "KeyValuePair", "variableName" : "member", "variableType" : "KeyValuePair", "documentation" : "", "simpleType" : "KeyValuePair", "variableSetterType" : "KeyValuePair" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "KeyValuePair", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "KeyValuePair", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Environment", "setterDocumentation" : "/**

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

\n@param environment The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.*/", "setterMethodName" : "setEnvironment", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "environment", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setEnvironment(java.util.Collection)} or {@link #withEnvironment(java.util.Collection)} if you want to override the existing values.

\n@param environment The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "environment", "variableType" : "java.util.List", "documentation" : "

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "Command" : { "c2jName" : "command", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

The command to send to the container that overrides the default command from the Docker image or the job definition.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The command to send to the container that overrides the default command from the Docker image or the job definition.

\n@param command The command to send to the container that overrides the default command from the Docker image or the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withCommand", "getterDocumentation" : "/**

The command to send to the container that overrides the default command from the Docker image or the job definition.

\n@return The command to send to the container that overrides the default command from the Docker image or the job definition.*/", "getterMethodName" : "getCommand", "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" : "command", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "command", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Command", "setterDocumentation" : "/**

The command to send to the container that overrides the default command from the Docker image or the job definition.

\n@param command The command to send to the container that overrides the default command from the Docker image or the job definition.*/", "setterMethodName" : "setCommand", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "command", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

The command to send to the container that overrides the default command from the Docker image or the job definition.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setCommand(java.util.Collection)} or {@link #withCommand(java.util.Collection)} if you want to override the existing values.

\n@param command The command to send to the container that overrides the default command from the Docker image or the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "command", "variableType" : "java.util.List", "documentation" : "

The command to send to the container that overrides the default command from the Docker image or the job definition.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "Environment" : { "c2jName" : "environment", "c2jShape" : "EnvironmentVariables", "deprecated" : false, "documentation" : "

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

\n@param environment The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withEnvironment", "getterDocumentation" : "/**

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

\n@return The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.*/", "getterMethodName" : "getEnvironment", "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" : "environment", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "environment", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "KeyValuePair", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "KeyValuePair", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "KeyValuePair", "variableName" : "member", "variableType" : "KeyValuePair", "documentation" : "", "simpleType" : "KeyValuePair", "variableSetterType" : "KeyValuePair" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "KeyValuePair", "variableName" : "member", "variableType" : "KeyValuePair", "documentation" : "", "simpleType" : "KeyValuePair", "variableSetterType" : "KeyValuePair" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "KeyValuePair", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "KeyValuePair", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Environment", "setterDocumentation" : "/**

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

\n@param environment The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.*/", "setterMethodName" : "setEnvironment", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "environment", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setEnvironment(java.util.Collection)} or {@link #withEnvironment(java.util.Collection)} if you want to override the existing values.

\n@param environment The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "environment", "variableType" : "java.util.List", "documentation" : "

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "Memory" : { "c2jName" : "memory", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.

\n@param memory The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMemory", "getterDocumentation" : "/**

The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.

\n@return The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.*/", "getterMethodName" : "getMemory", "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" : "memory", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "memory", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Memory", "setterDocumentation" : "/**

The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.

\n@param memory The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.*/", "setterMethodName" : "setMemory", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "memory", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.

\n@param memory The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "memory", "variableType" : "Integer", "documentation" : "

The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "Vcpus" : { "c2jName" : "vcpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.

", "enumType" : null, "fluentSetterDocumentation" : "/**

The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.

\n@param vcpus The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withVcpus", "getterDocumentation" : "/**

The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.

\n@return The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.*/", "getterMethodName" : "getVcpus", "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" : "vcpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "vcpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Vcpus", "setterDocumentation" : "/**

The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.

\n@param vcpus The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.*/", "setterMethodName" : "setVcpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "vcpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.

\n@param vcpus The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "vcpus", "variableType" : "Integer", "documentation" : "

The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "ContainerOverrides", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "ContainerOverrides", "variableName" : "containerOverrides", "variableType" : "ContainerOverrides", "documentation" : null, "simpleType" : "ContainerOverrides", "variableSetterType" : "ContainerOverrides" }, "wrapper" : false }, "ContainerProperties" : { "c2jName" : "ContainerProperties", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

Container properties are used in job definitions to describe the container that is launched as part of a job.

", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "image", "c2jShape" : "String", "deprecated" : false, "documentation" : "

The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

  • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

  • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

  • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

  • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

", "enumType" : null, "fluentSetterDocumentation" : "/**

The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

  • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

  • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

  • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

  • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

\n@param image The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

  • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

  • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

  • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

  • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

  • \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withImage", "getterDocumentation" : "/**

    The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

    • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

    • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

    • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

    • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

    \n@return The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

    • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

    • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

    • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

    • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

    • */", "getterMethodName" : "getImage", "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" : "image", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "image", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Image", "setterDocumentation" : "/**

      The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

      • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

      • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

      • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

      • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

      \n@param image The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

      • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

      • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

      • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

      • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

      • */", "setterMethodName" : "setImage", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "image", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

        The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

        • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

        • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

        • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

        • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

        \n@param image The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

        • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

        • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

        • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

        • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

        • \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "image", "variableType" : "String", "documentation" : "

          The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

          • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

          • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

          • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

          • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

          ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "vcpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

          The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.

          ", "enumType" : null, "fluentSetterDocumentation" : "/**

          The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.

          \n@param vcpus The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withVcpus", "getterDocumentation" : "/**

          The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.

          \n@return The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.*/", "getterMethodName" : "getVcpus", "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" : "vcpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "vcpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Vcpus", "setterDocumentation" : "/**

          The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.

          \n@param vcpus The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.*/", "setterMethodName" : "setVcpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "vcpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

          The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.

          \n@param vcpus The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "vcpus", "variableType" : "Integer", "documentation" : "

          The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.

          ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "memory", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

          The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

          ", "enumType" : null, "fluentSetterDocumentation" : "/**

          The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

          \n@param memory The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMemory", "getterDocumentation" : "/**

          The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

          \n@return The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.*/", "getterMethodName" : "getMemory", "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" : "memory", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "memory", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Memory", "setterDocumentation" : "/**

          The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

          \n@param memory The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.*/", "setterMethodName" : "setMemory", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "memory", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

          The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

          \n@param memory The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "memory", "variableType" : "Integer", "documentation" : "

          The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

          ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "command", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

          The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

          ", "enumType" : null, "fluentSetterDocumentation" : "/**

          The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

          \n@param command The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withCommand", "getterDocumentation" : "/**

          The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

          \n@return The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.*/", "getterMethodName" : "getCommand", "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" : "command", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "command", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Command", "setterDocumentation" : "/**

          The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

          \n@param command The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.*/", "setterMethodName" : "setCommand", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "command", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

          The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

          \n

          NOTE: This method appends the values to the existing list (if any). Use {@link #setCommand(java.util.Collection)} or {@link #withCommand(java.util.Collection)} if you want to override the existing values.

          \n@param command The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "command", "variableType" : "java.util.List", "documentation" : "

          The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

          ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "jobRoleArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

          The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.

          ", "enumType" : null, "fluentSetterDocumentation" : "/**

          The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.

          \n@param jobRoleArn The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobRoleArn", "getterDocumentation" : "/**

          The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.

          \n@return The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.*/", "getterMethodName" : "getJobRoleArn", "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" : "jobRoleArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobRoleArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobRoleArn", "setterDocumentation" : "/**

          The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.

          \n@param jobRoleArn The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.*/", "setterMethodName" : "setJobRoleArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobRoleArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

          The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.

          \n@param jobRoleArn The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobRoleArn", "variableType" : "String", "documentation" : "

          The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.

          ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "volumes", "c2jShape" : "Volumes", "deprecated" : false, "documentation" : "

          A list of data volumes used in a job.

          ", "enumType" : null, "fluentSetterDocumentation" : "/**

          A list of data volumes used in a job.

          \n@param volumes A list of data volumes used in a job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withVolumes", "getterDocumentation" : "/**

          A list of data volumes used in a job.

          \n@return A list of data volumes used in a job.*/", "getterMethodName" : "getVolumes", "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" : "volumes", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "volumes", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "Volume", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "Volume", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Volume", "variableName" : "member", "variableType" : "Volume", "documentation" : "", "simpleType" : "Volume", "variableSetterType" : "Volume" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Volume", "variableName" : "member", "variableType" : "Volume", "documentation" : "", "simpleType" : "Volume", "variableSetterType" : "Volume" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Volume", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "Volume", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Volumes", "setterDocumentation" : "/**

          A list of data volumes used in a job.

          \n@param volumes A list of data volumes used in a job.*/", "setterMethodName" : "setVolumes", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "volumes", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

          A list of data volumes used in a job.

          \n

          NOTE: This method appends the values to the existing list (if any). Use {@link #setVolumes(java.util.Collection)} or {@link #withVolumes(java.util.Collection)} if you want to override the existing values.

          \n@param volumes A list of data volumes used in a job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "volumes", "variableType" : "java.util.List", "documentation" : "

          A list of data volumes used in a job.

          ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "environment", "c2jShape" : "EnvironmentVariables", "deprecated" : false, "documentation" : "

          The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          ", "enumType" : null, "fluentSetterDocumentation" : "/**

          The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          \n@param environment The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withEnvironment", "getterDocumentation" : "/**

          The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          \n@return The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          */", "getterMethodName" : "getEnvironment", "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" : "environment", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "environment", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "KeyValuePair", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "KeyValuePair", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "KeyValuePair", "variableName" : "member", "variableType" : "KeyValuePair", "documentation" : "", "simpleType" : "KeyValuePair", "variableSetterType" : "KeyValuePair" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "KeyValuePair", "variableName" : "member", "variableType" : "KeyValuePair", "documentation" : "", "simpleType" : "KeyValuePair", "variableSetterType" : "KeyValuePair" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "KeyValuePair", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "KeyValuePair", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Environment", "setterDocumentation" : "/**

          The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          \n@param environment The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          */", "setterMethodName" : "setEnvironment", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "environment", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

          The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          \n

          NOTE: This method appends the values to the existing list (if any). Use {@link #setEnvironment(java.util.Collection)} or {@link #withEnvironment(java.util.Collection)} if you want to override the existing values.

          \n@param environment The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "environment", "variableType" : "java.util.List", "documentation" : "

          The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "mountPoints", "c2jShape" : "MountPoints", "deprecated" : false, "documentation" : "

          The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

          ", "enumType" : null, "fluentSetterDocumentation" : "/**

          The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

          \n@param mountPoints The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMountPoints", "getterDocumentation" : "/**

          The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

          \n@return The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.*/", "getterMethodName" : "getMountPoints", "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" : "mountPoints", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "mountPoints", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "MountPoint", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "MountPoint", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "MountPoint", "variableName" : "member", "variableType" : "MountPoint", "documentation" : "", "simpleType" : "MountPoint", "variableSetterType" : "MountPoint" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "MountPoint", "variableName" : "member", "variableType" : "MountPoint", "documentation" : "", "simpleType" : "MountPoint", "variableSetterType" : "MountPoint" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "MountPoint", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "MountPoint", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "MountPoints", "setterDocumentation" : "/**

          The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

          \n@param mountPoints The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.*/", "setterMethodName" : "setMountPoints", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "mountPoints", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

          The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

          \n

          NOTE: This method appends the values to the existing list (if any). Use {@link #setMountPoints(java.util.Collection)} or {@link #withMountPoints(java.util.Collection)} if you want to override the existing values.

          \n@param mountPoints The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "mountPoints", "variableType" : "java.util.List", "documentation" : "

          The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

          ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "readonlyRootFilesystem", "c2jShape" : "Boolean", "deprecated" : false, "documentation" : "

          When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

          ", "enumType" : null, "fluentSetterDocumentation" : "/**

          When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

          \n@param readonlyRootFilesystem When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withReadonlyRootFilesystem", "getterDocumentation" : "/**

          When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

          \n@return When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.*/", "getterMethodName" : "getReadonlyRootFilesystem", "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" : "readonlyRootFilesystem", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "readonlyRootFilesystem", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Boolean", "marshallingType" : "BOOLEAN", "name" : "ReadonlyRootFilesystem", "setterDocumentation" : "/**

          When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

          \n@param readonlyRootFilesystem When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.*/", "setterMethodName" : "setReadonlyRootFilesystem", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "readonlyRootFilesystem", "variableType" : "Boolean", "documentation" : "", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "varargSetterDocumentation" : "/**

          When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

          \n@param readonlyRootFilesystem When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "readonlyRootFilesystem", "variableType" : "Boolean", "documentation" : "

          When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

          ", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlNameSpaceUri" : null }, { "c2jName" : "privileged", "c2jShape" : "Boolean", "deprecated" : false, "documentation" : "

          When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

          ", "enumType" : null, "fluentSetterDocumentation" : "/**

          When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

          \n@param privileged When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withPrivileged", "getterDocumentation" : "/**

          When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

          \n@return When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.*/", "getterMethodName" : "getPrivileged", "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" : "privileged", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "privileged", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Boolean", "marshallingType" : "BOOLEAN", "name" : "Privileged", "setterDocumentation" : "/**

          When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

          \n@param privileged When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.*/", "setterMethodName" : "setPrivileged", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "privileged", "variableType" : "Boolean", "documentation" : "", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "varargSetterDocumentation" : "/**

          When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

          \n@param privileged When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "privileged", "variableType" : "Boolean", "documentation" : "

          When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

          ", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlNameSpaceUri" : null }, { "c2jName" : "ulimits", "c2jShape" : "Ulimits", "deprecated" : false, "documentation" : "

          A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

          ", "enumType" : null, "fluentSetterDocumentation" : "/**

          A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

          \n@param ulimits A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withUlimits", "getterDocumentation" : "/**

          A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

          \n@return A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.*/", "getterMethodName" : "getUlimits", "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" : "ulimits", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "ulimits", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "Ulimit", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "Ulimit", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Ulimit", "variableName" : "member", "variableType" : "Ulimit", "documentation" : "", "simpleType" : "Ulimit", "variableSetterType" : "Ulimit" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Ulimit", "variableName" : "member", "variableType" : "Ulimit", "documentation" : "", "simpleType" : "Ulimit", "variableSetterType" : "Ulimit" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Ulimit", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "Ulimit", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Ulimits", "setterDocumentation" : "/**

          A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

          \n@param ulimits A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.*/", "setterMethodName" : "setUlimits", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "ulimits", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

          A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

          \n

          NOTE: This method appends the values to the existing list (if any). Use {@link #setUlimits(java.util.Collection)} or {@link #withUlimits(java.util.Collection)} if you want to override the existing values.

          \n@param ulimits A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "ulimits", "variableType" : "java.util.List", "documentation" : "

          A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

          ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "user", "c2jShape" : "String", "deprecated" : false, "documentation" : "

          The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

          ", "enumType" : null, "fluentSetterDocumentation" : "/**

          The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

          \n@param user The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withUser", "getterDocumentation" : "/**

          The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

          \n@return The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.*/", "getterMethodName" : "getUser", "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" : "user", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "user", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "User", "setterDocumentation" : "/**

          The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

          \n@param user The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.*/", "setterMethodName" : "setUser", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "user", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

          The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

          \n@param user The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "user", "variableType" : "String", "documentation" : "

          The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

          ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "Command" : { "c2jName" : "command", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

          The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

          ", "enumType" : null, "fluentSetterDocumentation" : "/**

          The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

          \n@param command The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withCommand", "getterDocumentation" : "/**

          The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

          \n@return The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.*/", "getterMethodName" : "getCommand", "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" : "command", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "command", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Command", "setterDocumentation" : "/**

          The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

          \n@param command The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.*/", "setterMethodName" : "setCommand", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "command", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

          The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

          \n

          NOTE: This method appends the values to the existing list (if any). Use {@link #setCommand(java.util.Collection)} or {@link #withCommand(java.util.Collection)} if you want to override the existing values.

          \n@param command The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "command", "variableType" : "java.util.List", "documentation" : "

          The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

          ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "Environment" : { "c2jName" : "environment", "c2jShape" : "EnvironmentVariables", "deprecated" : false, "documentation" : "

          The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          ", "enumType" : null, "fluentSetterDocumentation" : "/**

          The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          \n@param environment The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withEnvironment", "getterDocumentation" : "/**

          The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          \n@return The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          */", "getterMethodName" : "getEnvironment", "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" : "environment", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "environment", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "KeyValuePair", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "KeyValuePair", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "KeyValuePair", "variableName" : "member", "variableType" : "KeyValuePair", "documentation" : "", "simpleType" : "KeyValuePair", "variableSetterType" : "KeyValuePair" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "KeyValuePair", "variableName" : "member", "variableType" : "KeyValuePair", "documentation" : "", "simpleType" : "KeyValuePair", "variableSetterType" : "KeyValuePair" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "KeyValuePair", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "KeyValuePair", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Environment", "setterDocumentation" : "/**

          The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          \n@param environment The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          */", "setterMethodName" : "setEnvironment", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "environment", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

          The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          \n

          NOTE: This method appends the values to the existing list (if any). Use {@link #setEnvironment(java.util.Collection)} or {@link #withEnvironment(java.util.Collection)} if you want to override the existing values.

          \n@param environment The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "environment", "variableType" : "java.util.List", "documentation" : "

          The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

          We do not recommend using plain text environment variables for sensitive information, such as credential data.

          ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "Image" : { "c2jName" : "image", "c2jShape" : "String", "deprecated" : false, "documentation" : "

          The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

          • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

          • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

          • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

          • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

          ", "enumType" : null, "fluentSetterDocumentation" : "/**

          The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

          • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

          • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

          • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

          • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

          \n@param image The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

          • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

          • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

          • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

          • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

          • \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withImage", "getterDocumentation" : "/**

            The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

            • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

            • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

            • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

            • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

            \n@return The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

            • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

            • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

            • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

            • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

            • */", "getterMethodName" : "getImage", "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" : "image", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "image", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Image", "setterDocumentation" : "/**

              The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

              • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

              • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

              • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

              • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

              \n@param image The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

              • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

              • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

              • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

              • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

              • */", "setterMethodName" : "setImage", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "image", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

                • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

                • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

                • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

                • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

                \n@param image The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

                • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

                • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

                • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

                • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

                • \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "image", "variableType" : "String", "documentation" : "

                  The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

                  • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

                  • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

                  • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

                  • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "JobRoleArn" : { "c2jName" : "jobRoleArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.

                  \n@param jobRoleArn The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobRoleArn", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.

                  \n@return The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.*/", "getterMethodName" : "getJobRoleArn", "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" : "jobRoleArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobRoleArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobRoleArn", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.

                  \n@param jobRoleArn The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.*/", "setterMethodName" : "setJobRoleArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobRoleArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.

                  \n@param jobRoleArn The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobRoleArn", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Memory" : { "c2jName" : "memory", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

                  \n@param memory The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMemory", "getterDocumentation" : "/**

                  The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

                  \n@return The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.*/", "getterMethodName" : "getMemory", "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" : "memory", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "memory", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Memory", "setterDocumentation" : "/**

                  The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

                  \n@param memory The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.*/", "setterMethodName" : "setMemory", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "memory", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

                  \n@param memory The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "memory", "variableType" : "Integer", "documentation" : "

                  The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "MountPoints" : { "c2jName" : "mountPoints", "c2jShape" : "MountPoints", "deprecated" : false, "documentation" : "

                  The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

                  \n@param mountPoints The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMountPoints", "getterDocumentation" : "/**

                  The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

                  \n@return The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.*/", "getterMethodName" : "getMountPoints", "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" : "mountPoints", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "mountPoints", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "MountPoint", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "MountPoint", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "MountPoint", "variableName" : "member", "variableType" : "MountPoint", "documentation" : "", "simpleType" : "MountPoint", "variableSetterType" : "MountPoint" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "MountPoint", "variableName" : "member", "variableType" : "MountPoint", "documentation" : "", "simpleType" : "MountPoint", "variableSetterType" : "MountPoint" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "MountPoint", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "MountPoint", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "MountPoints", "setterDocumentation" : "/**

                  The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

                  \n@param mountPoints The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.*/", "setterMethodName" : "setMountPoints", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "mountPoints", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setMountPoints(java.util.Collection)} or {@link #withMountPoints(java.util.Collection)} if you want to override the existing values.

                  \n@param mountPoints The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "mountPoints", "variableType" : "java.util.List", "documentation" : "

                  The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "Privileged" : { "c2jName" : "privileged", "c2jShape" : "Boolean", "deprecated" : false, "documentation" : "

                  When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

                  \n@param privileged When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withPrivileged", "getterDocumentation" : "/**

                  When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

                  \n@return When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.*/", "getterMethodName" : "getPrivileged", "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" : "privileged", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "privileged", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Boolean", "marshallingType" : "BOOLEAN", "name" : "Privileged", "setterDocumentation" : "/**

                  When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

                  \n@param privileged When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.*/", "setterMethodName" : "setPrivileged", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "privileged", "variableType" : "Boolean", "documentation" : "", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "varargSetterDocumentation" : "/**

                  When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

                  \n@param privileged When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "privileged", "variableType" : "Boolean", "documentation" : "

                  When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

                  ", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlNameSpaceUri" : null }, "ReadonlyRootFilesystem" : { "c2jName" : "readonlyRootFilesystem", "c2jShape" : "Boolean", "deprecated" : false, "documentation" : "

                  When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

                  \n@param readonlyRootFilesystem When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withReadonlyRootFilesystem", "getterDocumentation" : "/**

                  When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

                  \n@return When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.*/", "getterMethodName" : "getReadonlyRootFilesystem", "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" : "readonlyRootFilesystem", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "readonlyRootFilesystem", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Boolean", "marshallingType" : "BOOLEAN", "name" : "ReadonlyRootFilesystem", "setterDocumentation" : "/**

                  When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

                  \n@param readonlyRootFilesystem When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.*/", "setterMethodName" : "setReadonlyRootFilesystem", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "readonlyRootFilesystem", "variableType" : "Boolean", "documentation" : "", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "varargSetterDocumentation" : "/**

                  When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

                  \n@param readonlyRootFilesystem When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "readonlyRootFilesystem", "variableType" : "Boolean", "documentation" : "

                  When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

                  ", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlNameSpaceUri" : null }, "Ulimits" : { "c2jName" : "ulimits", "c2jShape" : "Ulimits", "deprecated" : false, "documentation" : "

                  A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

                  \n@param ulimits A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withUlimits", "getterDocumentation" : "/**

                  A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

                  \n@return A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.*/", "getterMethodName" : "getUlimits", "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" : "ulimits", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "ulimits", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "Ulimit", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "Ulimit", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Ulimit", "variableName" : "member", "variableType" : "Ulimit", "documentation" : "", "simpleType" : "Ulimit", "variableSetterType" : "Ulimit" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Ulimit", "variableName" : "member", "variableType" : "Ulimit", "documentation" : "", "simpleType" : "Ulimit", "variableSetterType" : "Ulimit" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Ulimit", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "Ulimit", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Ulimits", "setterDocumentation" : "/**

                  A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

                  \n@param ulimits A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.*/", "setterMethodName" : "setUlimits", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "ulimits", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setUlimits(java.util.Collection)} or {@link #withUlimits(java.util.Collection)} if you want to override the existing values.

                  \n@param ulimits A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "ulimits", "variableType" : "java.util.List", "documentation" : "

                  A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "User" : { "c2jName" : "user", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

                  \n@param user The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withUser", "getterDocumentation" : "/**

                  The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

                  \n@return The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.*/", "getterMethodName" : "getUser", "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" : "user", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "user", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "User", "setterDocumentation" : "/**

                  The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

                  \n@param user The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.*/", "setterMethodName" : "setUser", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "user", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

                  \n@param user The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "user", "variableType" : "String", "documentation" : "

                  The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Vcpus" : { "c2jName" : "vcpus", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.

                  \n@param vcpus The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withVcpus", "getterDocumentation" : "/**

                  The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.

                  \n@return The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.*/", "getterMethodName" : "getVcpus", "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" : "vcpus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "vcpus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Vcpus", "setterDocumentation" : "/**

                  The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.

                  \n@param vcpus The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.*/", "setterMethodName" : "setVcpus", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "vcpus", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.

                  \n@param vcpus The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "vcpus", "variableType" : "Integer", "documentation" : "

                  The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "Volumes" : { "c2jName" : "volumes", "c2jShape" : "Volumes", "deprecated" : false, "documentation" : "

                  A list of data volumes used in a job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A list of data volumes used in a job.

                  \n@param volumes A list of data volumes used in a job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withVolumes", "getterDocumentation" : "/**

                  A list of data volumes used in a job.

                  \n@return A list of data volumes used in a job.*/", "getterMethodName" : "getVolumes", "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" : "volumes", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "volumes", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "Volume", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "Volume", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "Volume", "variableName" : "member", "variableType" : "Volume", "documentation" : "", "simpleType" : "Volume", "variableSetterType" : "Volume" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Volume", "variableName" : "member", "variableType" : "Volume", "documentation" : "", "simpleType" : "Volume", "variableSetterType" : "Volume" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "Volume", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "Volume", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Volumes", "setterDocumentation" : "/**

                  A list of data volumes used in a job.

                  \n@param volumes A list of data volumes used in a job.*/", "setterMethodName" : "setVolumes", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "volumes", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A list of data volumes used in a job.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setVolumes(java.util.Collection)} or {@link #withVolumes(java.util.Collection)} if you want to override the existing values.

                  \n@param volumes A list of data volumes used in a job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "volumes", "variableType" : "java.util.List", "documentation" : "

                  A list of data volumes used in a job.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "image", "vcpus", "memory" ], "shapeName" : "ContainerProperties", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "ContainerProperties", "variableName" : "containerProperties", "variableType" : "ContainerProperties", "documentation" : null, "simpleType" : "ContainerProperties", "variableSetterType" : "ContainerProperties" }, "wrapper" : false }, "CreateComputeEnvironmentRequest" : { "c2jName" : "CreateComputeEnvironmentRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : { "action" : "CreateComputeEnvironment", "locationName" : null, "requestUri" : "/v1/createcomputeenvironment", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "c2jName" : "computeEnvironmentName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.

                  \n@param computeEnvironmentName The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironmentName", "getterDocumentation" : "/**

                  The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.

                  \n@return The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.*/", "getterMethodName" : "getComputeEnvironmentName", "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" : "computeEnvironmentName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironmentName", "setterDocumentation" : "/**

                  The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.

                  \n@param computeEnvironmentName The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.*/", "setterMethodName" : "setComputeEnvironmentName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.

                  \n@param computeEnvironmentName The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentName", "variableType" : "String", "documentation" : "

                  The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "type", "c2jShape" : "CEType", "deprecated" : false, "documentation" : "

                  The type of the compute environment.

                  ", "enumType" : "CEType", "fluentSetterDocumentation" : "/**

                  The type of the compute environment.

                  \n@param type The type of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEType*/", "fluentSetterMethodName" : "withType", "getterDocumentation" : "/**

                  The type of the compute environment.

                  \n@return The type of the compute environment.\n@see CEType*/", "getterMethodName" : "getType", "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" : "type", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "type", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Type", "setterDocumentation" : "/**

                  The type of the compute environment.

                  \n@param type The type of the compute environment.\n@see CEType*/", "setterMethodName" : "setType", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The type of the compute environment.

                  \n@param type The type of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEType*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "

                  The type of the compute environment.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "state", "c2jShape" : "CEState", "deprecated" : false, "documentation" : "

                  The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.

                  ", "enumType" : "CEState", "fluentSetterDocumentation" : "/**

                  The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.

                  \n@param state The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEState*/", "fluentSetterMethodName" : "withState", "getterDocumentation" : "/**

                  The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.

                  \n@return The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.\n@see CEState*/", "getterMethodName" : "getState", "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" : "state", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "state", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "State", "setterDocumentation" : "/**

                  The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.

                  \n@param state The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.\n@see CEState*/", "setterMethodName" : "setState", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.

                  \n@param state The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEState*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "

                  The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "computeResources", "c2jShape" : "ComputeResource", "deprecated" : false, "documentation" : "

                  Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.

                  \n@param computeResources Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeResources", "getterDocumentation" : "/**

                  Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.

                  \n@return Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.*/", "getterMethodName" : "getComputeResources", "getterModel" : { "returnType" : "ComputeResource", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "computeResources", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeResources", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "ComputeResources", "setterDocumentation" : "/**

                  Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.

                  \n@param computeResources Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.*/", "setterMethodName" : "setComputeResources", "setterModel" : { "variableDeclarationType" : "ComputeResource", "variableName" : "computeResources", "variableType" : "ComputeResource", "documentation" : "", "simpleType" : "ComputeResource", "variableSetterType" : "ComputeResource" }, "simple" : false, "varargSetterDocumentation" : "/**

                  Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.

                  \n@param computeResources Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ComputeResource", "variableName" : "computeResources", "variableType" : "ComputeResource", "documentation" : "

                  Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.

                  ", "simpleType" : "ComputeResource", "variableSetterType" : "ComputeResource" }, "xmlNameSpaceUri" : null }, { "c2jName" : "serviceRole", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

                  \n@param serviceRole The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withServiceRole", "getterDocumentation" : "/**

                  The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

                  \n@return The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.*/", "getterMethodName" : "getServiceRole", "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" : "serviceRole", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "serviceRole", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ServiceRole", "setterDocumentation" : "/**

                  The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

                  \n@param serviceRole The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.*/", "setterMethodName" : "setServiceRole", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "serviceRole", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

                  \n@param serviceRole The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "serviceRole", "variableType" : "String", "documentation" : "

                  The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ComputeEnvironmentName" : { "c2jName" : "computeEnvironmentName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.

                  \n@param computeEnvironmentName The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironmentName", "getterDocumentation" : "/**

                  The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.

                  \n@return The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.*/", "getterMethodName" : "getComputeEnvironmentName", "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" : "computeEnvironmentName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironmentName", "setterDocumentation" : "/**

                  The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.

                  \n@param computeEnvironmentName The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.*/", "setterMethodName" : "setComputeEnvironmentName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.

                  \n@param computeEnvironmentName The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentName", "variableType" : "String", "documentation" : "

                  The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "ComputeResources" : { "c2jName" : "computeResources", "c2jShape" : "ComputeResource", "deprecated" : false, "documentation" : "

                  Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.

                  \n@param computeResources Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeResources", "getterDocumentation" : "/**

                  Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.

                  \n@return Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.*/", "getterMethodName" : "getComputeResources", "getterModel" : { "returnType" : "ComputeResource", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "computeResources", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeResources", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "ComputeResources", "setterDocumentation" : "/**

                  Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.

                  \n@param computeResources Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.*/", "setterMethodName" : "setComputeResources", "setterModel" : { "variableDeclarationType" : "ComputeResource", "variableName" : "computeResources", "variableType" : "ComputeResource", "documentation" : "", "simpleType" : "ComputeResource", "variableSetterType" : "ComputeResource" }, "simple" : false, "varargSetterDocumentation" : "/**

                  Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.

                  \n@param computeResources Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ComputeResource", "variableName" : "computeResources", "variableType" : "ComputeResource", "documentation" : "

                  Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.

                  ", "simpleType" : "ComputeResource", "variableSetterType" : "ComputeResource" }, "xmlNameSpaceUri" : null }, "ServiceRole" : { "c2jName" : "serviceRole", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

                  \n@param serviceRole The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withServiceRole", "getterDocumentation" : "/**

                  The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

                  \n@return The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.*/", "getterMethodName" : "getServiceRole", "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" : "serviceRole", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "serviceRole", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ServiceRole", "setterDocumentation" : "/**

                  The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

                  \n@param serviceRole The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.*/", "setterMethodName" : "setServiceRole", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "serviceRole", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

                  \n@param serviceRole The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "serviceRole", "variableType" : "String", "documentation" : "

                  The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "State" : { "c2jName" : "state", "c2jShape" : "CEState", "deprecated" : false, "documentation" : "

                  The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.

                  ", "enumType" : "CEState", "fluentSetterDocumentation" : "/**

                  The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.

                  \n@param state The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEState*/", "fluentSetterMethodName" : "withState", "getterDocumentation" : "/**

                  The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.

                  \n@return The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.\n@see CEState*/", "getterMethodName" : "getState", "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" : "state", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "state", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "State", "setterDocumentation" : "/**

                  The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.

                  \n@param state The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.\n@see CEState*/", "setterMethodName" : "setState", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.

                  \n@param state The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEState*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "

                  The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Type" : { "c2jName" : "type", "c2jShape" : "CEType", "deprecated" : false, "documentation" : "

                  The type of the compute environment.

                  ", "enumType" : "CEType", "fluentSetterDocumentation" : "/**

                  The type of the compute environment.

                  \n@param type The type of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEType*/", "fluentSetterMethodName" : "withType", "getterDocumentation" : "/**

                  The type of the compute environment.

                  \n@return The type of the compute environment.\n@see CEType*/", "getterMethodName" : "getType", "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" : "type", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "type", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Type", "setterDocumentation" : "/**

                  The type of the compute environment.

                  \n@param type The type of the compute environment.\n@see CEType*/", "setterMethodName" : "setType", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The type of the compute environment.

                  \n@param type The type of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEType*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "

                  The type of the compute environment.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "computeEnvironmentName", "type", "serviceRole" ], "shapeName" : "CreateComputeEnvironmentRequest", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "CreateComputeEnvironmentRequest", "variableName" : "createComputeEnvironmentRequest", "variableType" : "CreateComputeEnvironmentRequest", "documentation" : null, "simpleType" : "CreateComputeEnvironmentRequest", "variableSetterType" : "CreateComputeEnvironmentRequest" }, "wrapper" : false }, "CreateComputeEnvironmentResult" : { "c2jName" : "CreateComputeEnvironmentResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "computeEnvironmentName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the compute environment.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the compute environment.

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

                  The name of the compute environment.

                  \n@return The name of the compute environment.*/", "getterMethodName" : "getComputeEnvironmentName", "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" : "computeEnvironmentName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironmentName", "setterDocumentation" : "/**

                  The name of the compute environment.

                  \n@param computeEnvironmentName The name of the compute environment.*/", "setterMethodName" : "setComputeEnvironmentName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the compute environment.

                  \n@param computeEnvironmentName The name of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentName", "variableType" : "String", "documentation" : "

                  The name of the compute environment.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "computeEnvironmentArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) of the compute environment.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the compute environment.

                  \n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironmentArn", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the compute environment.

                  \n@return The Amazon Resource Name (ARN) of the compute environment.*/", "getterMethodName" : "getComputeEnvironmentArn", "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" : "computeEnvironmentArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironmentArn", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the compute environment.

                  \n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.*/", "setterMethodName" : "setComputeEnvironmentArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the compute environment.

                  \n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentArn", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) of the compute environment.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ComputeEnvironmentArn" : { "c2jName" : "computeEnvironmentArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) of the compute environment.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the compute environment.

                  \n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironmentArn", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the compute environment.

                  \n@return The Amazon Resource Name (ARN) of the compute environment.*/", "getterMethodName" : "getComputeEnvironmentArn", "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" : "computeEnvironmentArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironmentArn", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the compute environment.

                  \n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.*/", "setterMethodName" : "setComputeEnvironmentArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the compute environment.

                  \n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentArn", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) of the compute environment.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "ComputeEnvironmentName" : { "c2jName" : "computeEnvironmentName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the compute environment.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the compute environment.

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

                  The name of the compute environment.

                  \n@return The name of the compute environment.*/", "getterMethodName" : "getComputeEnvironmentName", "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" : "computeEnvironmentName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironmentName", "setterDocumentation" : "/**

                  The name of the compute environment.

                  \n@param computeEnvironmentName The name of the compute environment.*/", "setterMethodName" : "setComputeEnvironmentName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the compute environment.

                  \n@param computeEnvironmentName The name of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentName", "variableType" : "String", "documentation" : "

                  The name of the compute environment.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "CreateComputeEnvironmentResult", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "CreateComputeEnvironmentResult", "variableName" : "createComputeEnvironmentResult", "variableType" : "CreateComputeEnvironmentResult", "documentation" : null, "simpleType" : "CreateComputeEnvironmentResult", "variableSetterType" : "CreateComputeEnvironmentResult" }, "wrapper" : false }, "CreateJobQueueRequest" : { "c2jName" : "CreateJobQueueRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : { "action" : "CreateJobQueue", "locationName" : null, "requestUri" : "/v1/createjobqueue", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "c2jName" : "jobQueueName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job queue.

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

                  The name of the job queue.

                  \n@return The name of the job queue.*/", "getterMethodName" : "getJobQueueName", "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" : "jobQueueName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueueName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueueName", "setterDocumentation" : "/**

                  The name of the job queue.

                  \n@param jobQueueName The name of the job queue.*/", "setterMethodName" : "setJobQueueName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueueName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job queue.

                  \n@param jobQueueName The name of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueueName", "variableType" : "String", "documentation" : "

                  The name of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "state", "c2jShape" : "JQState", "deprecated" : false, "documentation" : "

                  The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.

                  ", "enumType" : "JQState", "fluentSetterDocumentation" : "/**

                  The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.

                  \n@param state The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JQState*/", "fluentSetterMethodName" : "withState", "getterDocumentation" : "/**

                  The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.

                  \n@return The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.\n@see JQState*/", "getterMethodName" : "getState", "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" : "state", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "state", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "State", "setterDocumentation" : "/**

                  The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.

                  \n@param state The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.\n@see JQState*/", "setterMethodName" : "setState", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.

                  \n@param state The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JQState*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "

                  The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "priority", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  \n@param priority The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withPriority", "getterDocumentation" : "/**

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  \n@return The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.*/", "getterMethodName" : "getPriority", "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" : "priority", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "priority", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Priority", "setterDocumentation" : "/**

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  \n@param priority The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.*/", "setterMethodName" : "setPriority", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "priority", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  \n@param priority The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "priority", "variableType" : "Integer", "documentation" : "

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "computeEnvironmentOrder", "c2jShape" : "ComputeEnvironmentOrders", "deprecated" : false, "documentation" : "

                  The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.

                  \n@param computeEnvironmentOrder The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironmentOrder", "getterDocumentation" : "/**

                  The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.

                  \n@return The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.*/", "getterMethodName" : "getComputeEnvironmentOrder", "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" : "computeEnvironmentOrder", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentOrder", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "ComputeEnvironmentOrder", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "ComputeEnvironmentOrder", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ComputeEnvironmentOrder", "variableName" : "member", "variableType" : "ComputeEnvironmentOrder", "documentation" : "", "simpleType" : "ComputeEnvironmentOrder", "variableSetterType" : "ComputeEnvironmentOrder" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ComputeEnvironmentOrder", "variableName" : "member", "variableType" : "ComputeEnvironmentOrder", "documentation" : "", "simpleType" : "ComputeEnvironmentOrder", "variableSetterType" : "ComputeEnvironmentOrder" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ComputeEnvironmentOrder", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "ComputeEnvironmentOrder", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "ComputeEnvironmentOrder", "setterDocumentation" : "/**

                  The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.

                  \n@param computeEnvironmentOrder The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.*/", "setterMethodName" : "setComputeEnvironmentOrder", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironmentOrder", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setComputeEnvironmentOrder(java.util.Collection)} or {@link #withComputeEnvironmentOrder(java.util.Collection)} if you want to override the existing values.

                  \n@param computeEnvironmentOrder The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironmentOrder", "variableType" : "java.util.List", "documentation" : "

                  The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ComputeEnvironmentOrder" : { "c2jName" : "computeEnvironmentOrder", "c2jShape" : "ComputeEnvironmentOrders", "deprecated" : false, "documentation" : "

                  The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.

                  \n@param computeEnvironmentOrder The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironmentOrder", "getterDocumentation" : "/**

                  The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.

                  \n@return The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.*/", "getterMethodName" : "getComputeEnvironmentOrder", "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" : "computeEnvironmentOrder", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentOrder", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "ComputeEnvironmentOrder", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "ComputeEnvironmentOrder", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ComputeEnvironmentOrder", "variableName" : "member", "variableType" : "ComputeEnvironmentOrder", "documentation" : "", "simpleType" : "ComputeEnvironmentOrder", "variableSetterType" : "ComputeEnvironmentOrder" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ComputeEnvironmentOrder", "variableName" : "member", "variableType" : "ComputeEnvironmentOrder", "documentation" : "", "simpleType" : "ComputeEnvironmentOrder", "variableSetterType" : "ComputeEnvironmentOrder" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ComputeEnvironmentOrder", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "ComputeEnvironmentOrder", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "ComputeEnvironmentOrder", "setterDocumentation" : "/**

                  The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.

                  \n@param computeEnvironmentOrder The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.*/", "setterMethodName" : "setComputeEnvironmentOrder", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironmentOrder", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setComputeEnvironmentOrder(java.util.Collection)} or {@link #withComputeEnvironmentOrder(java.util.Collection)} if you want to override the existing values.

                  \n@param computeEnvironmentOrder The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironmentOrder", "variableType" : "java.util.List", "documentation" : "

                  The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "JobQueueName" : { "c2jName" : "jobQueueName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job queue.

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

                  The name of the job queue.

                  \n@return The name of the job queue.*/", "getterMethodName" : "getJobQueueName", "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" : "jobQueueName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueueName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueueName", "setterDocumentation" : "/**

                  The name of the job queue.

                  \n@param jobQueueName The name of the job queue.*/", "setterMethodName" : "setJobQueueName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueueName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job queue.

                  \n@param jobQueueName The name of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueueName", "variableType" : "String", "documentation" : "

                  The name of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Priority" : { "c2jName" : "priority", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  \n@param priority The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withPriority", "getterDocumentation" : "/**

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  \n@return The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.*/", "getterMethodName" : "getPriority", "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" : "priority", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "priority", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Priority", "setterDocumentation" : "/**

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  \n@param priority The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.*/", "setterMethodName" : "setPriority", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "priority", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  \n@param priority The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "priority", "variableType" : "Integer", "documentation" : "

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "State" : { "c2jName" : "state", "c2jShape" : "JQState", "deprecated" : false, "documentation" : "

                  The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.

                  ", "enumType" : "JQState", "fluentSetterDocumentation" : "/**

                  The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.

                  \n@param state The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JQState*/", "fluentSetterMethodName" : "withState", "getterDocumentation" : "/**

                  The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.

                  \n@return The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.\n@see JQState*/", "getterMethodName" : "getState", "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" : "state", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "state", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "State", "setterDocumentation" : "/**

                  The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.

                  \n@param state The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.\n@see JQState*/", "setterMethodName" : "setState", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.

                  \n@param state The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JQState*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "

                  The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobQueueName", "priority", "computeEnvironmentOrder" ], "shapeName" : "CreateJobQueueRequest", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "CreateJobQueueRequest", "variableName" : "createJobQueueRequest", "variableType" : "CreateJobQueueRequest", "documentation" : null, "simpleType" : "CreateJobQueueRequest", "variableSetterType" : "CreateJobQueueRequest" }, "wrapper" : false }, "CreateJobQueueResult" : { "c2jName" : "CreateJobQueueResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "jobQueueName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job queue.

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

                  The name of the job queue.

                  \n@return The name of the job queue.*/", "getterMethodName" : "getJobQueueName", "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" : "jobQueueName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueueName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueueName", "setterDocumentation" : "/**

                  The name of the job queue.

                  \n@param jobQueueName The name of the job queue.*/", "setterMethodName" : "setJobQueueName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueueName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job queue.

                  \n@param jobQueueName The name of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueueName", "variableType" : "String", "documentation" : "

                  The name of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "jobQueueArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueueArn", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@return The Amazon Resource Name (ARN) of the job queue.*/", "getterMethodName" : "getJobQueueArn", "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" : "jobQueueArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueueArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueueArn", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.*/", "setterMethodName" : "setJobQueueArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueueArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueueArn", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "JobQueueArn" : { "c2jName" : "jobQueueArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueueArn", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@return The Amazon Resource Name (ARN) of the job queue.*/", "getterMethodName" : "getJobQueueArn", "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" : "jobQueueArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueueArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueueArn", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.*/", "setterMethodName" : "setJobQueueArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueueArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueueArn", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "JobQueueName" : { "c2jName" : "jobQueueName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job queue.

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

                  The name of the job queue.

                  \n@return The name of the job queue.*/", "getterMethodName" : "getJobQueueName", "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" : "jobQueueName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueueName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueueName", "setterDocumentation" : "/**

                  The name of the job queue.

                  \n@param jobQueueName The name of the job queue.*/", "setterMethodName" : "setJobQueueName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueueName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job queue.

                  \n@param jobQueueName The name of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueueName", "variableType" : "String", "documentation" : "

                  The name of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobQueueName", "jobQueueArn" ], "shapeName" : "CreateJobQueueResult", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "CreateJobQueueResult", "variableName" : "createJobQueueResult", "variableType" : "CreateJobQueueResult", "documentation" : null, "simpleType" : "CreateJobQueueResult", "variableSetterType" : "CreateJobQueueResult" }, "wrapper" : false }, "DeleteComputeEnvironmentRequest" : { "c2jName" : "DeleteComputeEnvironmentRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : { "action" : "DeleteComputeEnvironment", "locationName" : null, "requestUri" : "/v1/deletecomputeenvironment", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "c2jName" : "computeEnvironment", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name or Amazon Resource Name (ARN) of the compute environment to delete.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name or Amazon Resource Name (ARN) of the compute environment to delete.

                  \n@param computeEnvironment The name or Amazon Resource Name (ARN) of the compute environment to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironment", "getterDocumentation" : "/**

                  The name or Amazon Resource Name (ARN) of the compute environment to delete.

                  \n@return The name or Amazon Resource Name (ARN) of the compute environment to delete.*/", "getterMethodName" : "getComputeEnvironment", "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" : "computeEnvironment", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironment", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironment", "setterDocumentation" : "/**

                  The name or Amazon Resource Name (ARN) of the compute environment to delete.

                  \n@param computeEnvironment The name or Amazon Resource Name (ARN) of the compute environment to delete.*/", "setterMethodName" : "setComputeEnvironment", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironment", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name or Amazon Resource Name (ARN) of the compute environment to delete.

                  \n@param computeEnvironment The name or Amazon Resource Name (ARN) of the compute environment to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironment", "variableType" : "String", "documentation" : "

                  The name or Amazon Resource Name (ARN) of the compute environment to delete.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ComputeEnvironment" : { "c2jName" : "computeEnvironment", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name or Amazon Resource Name (ARN) of the compute environment to delete.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name or Amazon Resource Name (ARN) of the compute environment to delete.

                  \n@param computeEnvironment The name or Amazon Resource Name (ARN) of the compute environment to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironment", "getterDocumentation" : "/**

                  The name or Amazon Resource Name (ARN) of the compute environment to delete.

                  \n@return The name or Amazon Resource Name (ARN) of the compute environment to delete.*/", "getterMethodName" : "getComputeEnvironment", "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" : "computeEnvironment", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironment", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironment", "setterDocumentation" : "/**

                  The name or Amazon Resource Name (ARN) of the compute environment to delete.

                  \n@param computeEnvironment The name or Amazon Resource Name (ARN) of the compute environment to delete.*/", "setterMethodName" : "setComputeEnvironment", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironment", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name or Amazon Resource Name (ARN) of the compute environment to delete.

                  \n@param computeEnvironment The name or Amazon Resource Name (ARN) of the compute environment to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironment", "variableType" : "String", "documentation" : "

                  The name or Amazon Resource Name (ARN) of the compute environment to delete.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "computeEnvironment" ], "shapeName" : "DeleteComputeEnvironmentRequest", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "DeleteComputeEnvironmentRequest", "variableName" : "deleteComputeEnvironmentRequest", "variableType" : "DeleteComputeEnvironmentRequest", "documentation" : null, "simpleType" : "DeleteComputeEnvironmentRequest", "variableSetterType" : "DeleteComputeEnvironmentRequest" }, "wrapper" : false }, "DeleteComputeEnvironmentResult" : { "c2jName" : "DeleteComputeEnvironmentResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : null, "membersAsMap" : { }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "DeleteComputeEnvironmentResult", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "DeleteComputeEnvironmentResult", "variableName" : "deleteComputeEnvironmentResult", "variableType" : "DeleteComputeEnvironmentResult", "documentation" : null, "simpleType" : "DeleteComputeEnvironmentResult", "variableSetterType" : "DeleteComputeEnvironmentResult" }, "wrapper" : false }, "DeleteJobQueueRequest" : { "c2jName" : "DeleteJobQueueRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : { "action" : "DeleteJobQueue", "locationName" : null, "requestUri" : "/v1/deletejobqueue", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "c2jName" : "jobQueue", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The short name or full Amazon Resource Name (ARN) of the queue to delete.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The short name or full Amazon Resource Name (ARN) of the queue to delete.

                  \n@param jobQueue The short name or full Amazon Resource Name (ARN) of the queue to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueue", "getterDocumentation" : "/**

                  The short name or full Amazon Resource Name (ARN) of the queue to delete.

                  \n@return The short name or full Amazon Resource Name (ARN) of the queue to delete.*/", "getterMethodName" : "getJobQueue", "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" : "jobQueue", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueue", "setterDocumentation" : "/**

                  The short name or full Amazon Resource Name (ARN) of the queue to delete.

                  \n@param jobQueue The short name or full Amazon Resource Name (ARN) of the queue to delete.*/", "setterMethodName" : "setJobQueue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The short name or full Amazon Resource Name (ARN) of the queue to delete.

                  \n@param jobQueue The short name or full Amazon Resource Name (ARN) of the queue to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "

                  The short name or full Amazon Resource Name (ARN) of the queue to delete.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "JobQueue" : { "c2jName" : "jobQueue", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The short name or full Amazon Resource Name (ARN) of the queue to delete.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The short name or full Amazon Resource Name (ARN) of the queue to delete.

                  \n@param jobQueue The short name or full Amazon Resource Name (ARN) of the queue to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueue", "getterDocumentation" : "/**

                  The short name or full Amazon Resource Name (ARN) of the queue to delete.

                  \n@return The short name or full Amazon Resource Name (ARN) of the queue to delete.*/", "getterMethodName" : "getJobQueue", "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" : "jobQueue", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueue", "setterDocumentation" : "/**

                  The short name or full Amazon Resource Name (ARN) of the queue to delete.

                  \n@param jobQueue The short name or full Amazon Resource Name (ARN) of the queue to delete.*/", "setterMethodName" : "setJobQueue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The short name or full Amazon Resource Name (ARN) of the queue to delete.

                  \n@param jobQueue The short name or full Amazon Resource Name (ARN) of the queue to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "

                  The short name or full Amazon Resource Name (ARN) of the queue to delete.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobQueue" ], "shapeName" : "DeleteJobQueueRequest", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "DeleteJobQueueRequest", "variableName" : "deleteJobQueueRequest", "variableType" : "DeleteJobQueueRequest", "documentation" : null, "simpleType" : "DeleteJobQueueRequest", "variableSetterType" : "DeleteJobQueueRequest" }, "wrapper" : false }, "DeleteJobQueueResult" : { "c2jName" : "DeleteJobQueueResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : null, "membersAsMap" : { }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "DeleteJobQueueResult", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "DeleteJobQueueResult", "variableName" : "deleteJobQueueResult", "variableType" : "DeleteJobQueueResult", "documentation" : null, "simpleType" : "DeleteJobQueueResult", "variableSetterType" : "DeleteJobQueueResult" }, "wrapper" : false }, "DeregisterJobDefinitionRequest" : { "c2jName" : "DeregisterJobDefinitionRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : { "action" : "DeregisterJobDefinition", "locationName" : null, "requestUri" : "/v1/deregisterjobdefinition", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "c2jName" : "jobDefinition", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.

                  \n@param jobDefinition The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinition", "getterDocumentation" : "/**

                  The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.

                  \n@return The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.*/", "getterMethodName" : "getJobDefinition", "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" : "jobDefinition", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinition", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinition", "setterDocumentation" : "/**

                  The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.

                  \n@param jobDefinition The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.*/", "setterMethodName" : "setJobDefinition", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinition", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.

                  \n@param jobDefinition The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinition", "variableType" : "String", "documentation" : "

                  The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "JobDefinition" : { "c2jName" : "jobDefinition", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.

                  \n@param jobDefinition The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinition", "getterDocumentation" : "/**

                  The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.

                  \n@return The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.*/", "getterMethodName" : "getJobDefinition", "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" : "jobDefinition", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinition", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinition", "setterDocumentation" : "/**

                  The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.

                  \n@param jobDefinition The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.*/", "setterMethodName" : "setJobDefinition", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinition", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.

                  \n@param jobDefinition The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinition", "variableType" : "String", "documentation" : "

                  The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobDefinition" ], "shapeName" : "DeregisterJobDefinitionRequest", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "DeregisterJobDefinitionRequest", "variableName" : "deregisterJobDefinitionRequest", "variableType" : "DeregisterJobDefinitionRequest", "documentation" : null, "simpleType" : "DeregisterJobDefinitionRequest", "variableSetterType" : "DeregisterJobDefinitionRequest" }, "wrapper" : false }, "DeregisterJobDefinitionResult" : { "c2jName" : "DeregisterJobDefinitionResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : null, "membersAsMap" : { }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "DeregisterJobDefinitionResult", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "DeregisterJobDefinitionResult", "variableName" : "deregisterJobDefinitionResult", "variableType" : "DeregisterJobDefinitionResult", "documentation" : null, "simpleType" : "DeregisterJobDefinitionResult", "variableSetterType" : "DeregisterJobDefinitionResult" }, "wrapper" : false }, "DescribeComputeEnvironmentsRequest" : { "c2jName" : "DescribeComputeEnvironmentsRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : { "action" : "DescribeComputeEnvironments", "locationName" : null, "requestUri" : "/v1/describecomputeenvironments", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "c2jName" : "computeEnvironments", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

                  A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.

                  \n@param computeEnvironments A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironments", "getterDocumentation" : "/**

                  A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.

                  \n@return A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.*/", "getterMethodName" : "getComputeEnvironments", "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" : "computeEnvironments", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironments", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "ComputeEnvironments", "setterDocumentation" : "/**

                  A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.

                  \n@param computeEnvironments A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.*/", "setterMethodName" : "setComputeEnvironments", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironments", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setComputeEnvironments(java.util.Collection)} or {@link #withComputeEnvironments(java.util.Collection)} if you want to override the existing values.

                  \n@param computeEnvironments A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironments", "variableType" : "java.util.List", "documentation" : "

                  A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "maxResults", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMaxResults", "getterDocumentation" : "/**

                  The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

                  \n@return The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.*/", "getterMethodName" : "getMaxResults", "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" : "maxResults", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "maxResults", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "MaxResults", "setterDocumentation" : "/**

                  The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.*/", "setterMethodName" : "setMaxResults", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "maxResults", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "maxResults", "variableType" : "Integer", "documentation" : "

                  The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "nextToken", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withNextToken", "getterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  */", "getterMethodName" : "getNextToken", "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" : "nextToken", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "nextToken", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "NextToken", "setterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  */", "setterMethodName" : "setNextToken", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "

                  The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ComputeEnvironments" : { "c2jName" : "computeEnvironments", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

                  A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.

                  \n@param computeEnvironments A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironments", "getterDocumentation" : "/**

                  A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.

                  \n@return A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.*/", "getterMethodName" : "getComputeEnvironments", "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" : "computeEnvironments", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironments", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "ComputeEnvironments", "setterDocumentation" : "/**

                  A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.

                  \n@param computeEnvironments A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.*/", "setterMethodName" : "setComputeEnvironments", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironments", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setComputeEnvironments(java.util.Collection)} or {@link #withComputeEnvironments(java.util.Collection)} if you want to override the existing values.

                  \n@param computeEnvironments A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironments", "variableType" : "java.util.List", "documentation" : "

                  A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "MaxResults" : { "c2jName" : "maxResults", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMaxResults", "getterDocumentation" : "/**

                  The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

                  \n@return The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.*/", "getterMethodName" : "getMaxResults", "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" : "maxResults", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "maxResults", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "MaxResults", "setterDocumentation" : "/**

                  The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.*/", "setterMethodName" : "setMaxResults", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "maxResults", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "maxResults", "variableType" : "Integer", "documentation" : "

                  The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "NextToken" : { "c2jName" : "nextToken", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withNextToken", "getterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  */", "getterMethodName" : "getNextToken", "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" : "nextToken", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "nextToken", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "NextToken", "setterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  */", "setterMethodName" : "setNextToken", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "

                  The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "DescribeComputeEnvironmentsRequest", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "DescribeComputeEnvironmentsRequest", "variableName" : "describeComputeEnvironmentsRequest", "variableType" : "DescribeComputeEnvironmentsRequest", "documentation" : null, "simpleType" : "DescribeComputeEnvironmentsRequest", "variableSetterType" : "DescribeComputeEnvironmentsRequest" }, "wrapper" : false }, "DescribeComputeEnvironmentsResult" : { "c2jName" : "DescribeComputeEnvironmentsResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "computeEnvironments", "c2jShape" : "ComputeEnvironmentDetailList", "deprecated" : false, "documentation" : "

                  The list of compute environments.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The list of compute environments.

                  \n@param computeEnvironments The list of compute environments.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironments", "getterDocumentation" : "/**

                  The list of compute environments.

                  \n@return The list of compute environments.*/", "getterMethodName" : "getComputeEnvironments", "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" : "computeEnvironments", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironments", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "ComputeEnvironmentDetail", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "ComputeEnvironmentDetail", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ComputeEnvironmentDetail", "variableName" : "member", "variableType" : "ComputeEnvironmentDetail", "documentation" : "", "simpleType" : "ComputeEnvironmentDetail", "variableSetterType" : "ComputeEnvironmentDetail" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ComputeEnvironmentDetail", "variableName" : "member", "variableType" : "ComputeEnvironmentDetail", "documentation" : "", "simpleType" : "ComputeEnvironmentDetail", "variableSetterType" : "ComputeEnvironmentDetail" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ComputeEnvironmentDetail", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "ComputeEnvironmentDetail", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "ComputeEnvironments", "setterDocumentation" : "/**

                  The list of compute environments.

                  \n@param computeEnvironments The list of compute environments.*/", "setterMethodName" : "setComputeEnvironments", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironments", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  The list of compute environments.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setComputeEnvironments(java.util.Collection)} or {@link #withComputeEnvironments(java.util.Collection)} if you want to override the existing values.

                  \n@param computeEnvironments The list of compute environments.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironments", "variableType" : "java.util.List", "documentation" : "

                  The list of compute environments.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "nextToken", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withNextToken", "getterDocumentation" : "/**

                  The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@return The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.*/", "getterMethodName" : "getNextToken", "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" : "nextToken", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "nextToken", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "NextToken", "setterDocumentation" : "/**

                  The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.*/", "setterMethodName" : "setNextToken", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "

                  The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ComputeEnvironments" : { "c2jName" : "computeEnvironments", "c2jShape" : "ComputeEnvironmentDetailList", "deprecated" : false, "documentation" : "

                  The list of compute environments.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The list of compute environments.

                  \n@param computeEnvironments The list of compute environments.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironments", "getterDocumentation" : "/**

                  The list of compute environments.

                  \n@return The list of compute environments.*/", "getterMethodName" : "getComputeEnvironments", "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" : "computeEnvironments", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironments", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "ComputeEnvironmentDetail", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "ComputeEnvironmentDetail", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ComputeEnvironmentDetail", "variableName" : "member", "variableType" : "ComputeEnvironmentDetail", "documentation" : "", "simpleType" : "ComputeEnvironmentDetail", "variableSetterType" : "ComputeEnvironmentDetail" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ComputeEnvironmentDetail", "variableName" : "member", "variableType" : "ComputeEnvironmentDetail", "documentation" : "", "simpleType" : "ComputeEnvironmentDetail", "variableSetterType" : "ComputeEnvironmentDetail" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ComputeEnvironmentDetail", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "ComputeEnvironmentDetail", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "ComputeEnvironments", "setterDocumentation" : "/**

                  The list of compute environments.

                  \n@param computeEnvironments The list of compute environments.*/", "setterMethodName" : "setComputeEnvironments", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironments", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  The list of compute environments.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setComputeEnvironments(java.util.Collection)} or {@link #withComputeEnvironments(java.util.Collection)} if you want to override the existing values.

                  \n@param computeEnvironments The list of compute environments.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironments", "variableType" : "java.util.List", "documentation" : "

                  The list of compute environments.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "NextToken" : { "c2jName" : "nextToken", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withNextToken", "getterDocumentation" : "/**

                  The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@return The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.*/", "getterMethodName" : "getNextToken", "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" : "nextToken", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "nextToken", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "NextToken", "setterDocumentation" : "/**

                  The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.*/", "setterMethodName" : "setNextToken", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "

                  The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "DescribeComputeEnvironmentsResult", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "DescribeComputeEnvironmentsResult", "variableName" : "describeComputeEnvironmentsResult", "variableType" : "DescribeComputeEnvironmentsResult", "documentation" : null, "simpleType" : "DescribeComputeEnvironmentsResult", "variableSetterType" : "DescribeComputeEnvironmentsResult" }, "wrapper" : false }, "DescribeJobDefinitionsRequest" : { "c2jName" : "DescribeJobDefinitionsRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : { "action" : "DescribeJobDefinitions", "locationName" : null, "requestUri" : "/v1/describejobdefinitions", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "c2jName" : "jobDefinitions", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

                  A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.

                  \n@param jobDefinitions A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinitions", "getterDocumentation" : "/**

                  A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.

                  \n@return A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.*/", "getterMethodName" : "getJobDefinitions", "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" : "jobDefinitions", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinitions", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "JobDefinitions", "setterDocumentation" : "/**

                  A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.

                  \n@param jobDefinitions A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.*/", "setterMethodName" : "setJobDefinitions", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobDefinitions", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setJobDefinitions(java.util.Collection)} or {@link #withJobDefinitions(java.util.Collection)} if you want to override the existing values.

                  \n@param jobDefinitions A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobDefinitions", "variableType" : "java.util.List", "documentation" : "

                  A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "maxResults", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMaxResults", "getterDocumentation" : "/**

                  The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

                  \n@return The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.*/", "getterMethodName" : "getMaxResults", "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" : "maxResults", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "maxResults", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "MaxResults", "setterDocumentation" : "/**

                  The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.*/", "setterMethodName" : "setMaxResults", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "maxResults", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "maxResults", "variableType" : "Integer", "documentation" : "

                  The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "jobDefinitionName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job definition to describe.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job definition to describe.

                  \n@param jobDefinitionName The name of the job definition to describe.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinitionName", "getterDocumentation" : "/**

                  The name of the job definition to describe.

                  \n@return The name of the job definition to describe.*/", "getterMethodName" : "getJobDefinitionName", "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" : "jobDefinitionName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinitionName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinitionName", "setterDocumentation" : "/**

                  The name of the job definition to describe.

                  \n@param jobDefinitionName The name of the job definition to describe.*/", "setterMethodName" : "setJobDefinitionName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job definition to describe.

                  \n@param jobDefinitionName The name of the job definition to describe.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionName", "variableType" : "String", "documentation" : "

                  The name of the job definition to describe.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "status", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The status with which to filter job definitions.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The status with which to filter job definitions.

                  \n@param status The status with which to filter job definitions.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withStatus", "getterDocumentation" : "/**

                  The status with which to filter job definitions.

                  \n@return The status with which to filter job definitions.*/", "getterMethodName" : "getStatus", "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" : "status", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "status", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Status", "setterDocumentation" : "/**

                  The status with which to filter job definitions.

                  \n@param status The status with which to filter job definitions.*/", "setterMethodName" : "setStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The status with which to filter job definitions.

                  \n@param status The status with which to filter job definitions.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "

                  The status with which to filter job definitions.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "nextToken", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withNextToken", "getterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  */", "getterMethodName" : "getNextToken", "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" : "nextToken", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "nextToken", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "NextToken", "setterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  */", "setterMethodName" : "setNextToken", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "

                  The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "JobDefinitionName" : { "c2jName" : "jobDefinitionName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job definition to describe.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job definition to describe.

                  \n@param jobDefinitionName The name of the job definition to describe.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinitionName", "getterDocumentation" : "/**

                  The name of the job definition to describe.

                  \n@return The name of the job definition to describe.*/", "getterMethodName" : "getJobDefinitionName", "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" : "jobDefinitionName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinitionName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinitionName", "setterDocumentation" : "/**

                  The name of the job definition to describe.

                  \n@param jobDefinitionName The name of the job definition to describe.*/", "setterMethodName" : "setJobDefinitionName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job definition to describe.

                  \n@param jobDefinitionName The name of the job definition to describe.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionName", "variableType" : "String", "documentation" : "

                  The name of the job definition to describe.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "JobDefinitions" : { "c2jName" : "jobDefinitions", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

                  A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.

                  \n@param jobDefinitions A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinitions", "getterDocumentation" : "/**

                  A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.

                  \n@return A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.*/", "getterMethodName" : "getJobDefinitions", "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" : "jobDefinitions", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinitions", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "JobDefinitions", "setterDocumentation" : "/**

                  A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.

                  \n@param jobDefinitions A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.*/", "setterMethodName" : "setJobDefinitions", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobDefinitions", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setJobDefinitions(java.util.Collection)} or {@link #withJobDefinitions(java.util.Collection)} if you want to override the existing values.

                  \n@param jobDefinitions A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobDefinitions", "variableType" : "java.util.List", "documentation" : "

                  A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "MaxResults" : { "c2jName" : "maxResults", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMaxResults", "getterDocumentation" : "/**

                  The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

                  \n@return The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.*/", "getterMethodName" : "getMaxResults", "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" : "maxResults", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "maxResults", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "MaxResults", "setterDocumentation" : "/**

                  The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.*/", "setterMethodName" : "setMaxResults", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "maxResults", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "maxResults", "variableType" : "Integer", "documentation" : "

                  The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "NextToken" : { "c2jName" : "nextToken", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withNextToken", "getterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  */", "getterMethodName" : "getNextToken", "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" : "nextToken", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "nextToken", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "NextToken", "setterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  */", "setterMethodName" : "setNextToken", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "

                  The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Status" : { "c2jName" : "status", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The status with which to filter job definitions.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The status with which to filter job definitions.

                  \n@param status The status with which to filter job definitions.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withStatus", "getterDocumentation" : "/**

                  The status with which to filter job definitions.

                  \n@return The status with which to filter job definitions.*/", "getterMethodName" : "getStatus", "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" : "status", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "status", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Status", "setterDocumentation" : "/**

                  The status with which to filter job definitions.

                  \n@param status The status with which to filter job definitions.*/", "setterMethodName" : "setStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The status with which to filter job definitions.

                  \n@param status The status with which to filter job definitions.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "

                  The status with which to filter job definitions.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "DescribeJobDefinitionsRequest", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "DescribeJobDefinitionsRequest", "variableName" : "describeJobDefinitionsRequest", "variableType" : "DescribeJobDefinitionsRequest", "documentation" : null, "simpleType" : "DescribeJobDefinitionsRequest", "variableSetterType" : "DescribeJobDefinitionsRequest" }, "wrapper" : false }, "DescribeJobDefinitionsResult" : { "c2jName" : "DescribeJobDefinitionsResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "jobDefinitions", "c2jShape" : "JobDefinitionList", "deprecated" : false, "documentation" : "

                  The list of job definitions.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The list of job definitions.

                  \n@param jobDefinitions The list of job definitions.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinitions", "getterDocumentation" : "/**

                  The list of job definitions.

                  \n@return The list of job definitions.*/", "getterMethodName" : "getJobDefinitions", "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" : "jobDefinitions", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinitions", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "JobDefinition", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "JobDefinition", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "JobDefinition", "variableName" : "member", "variableType" : "JobDefinition", "documentation" : "", "simpleType" : "JobDefinition", "variableSetterType" : "JobDefinition" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "JobDefinition", "variableName" : "member", "variableType" : "JobDefinition", "documentation" : "", "simpleType" : "JobDefinition", "variableSetterType" : "JobDefinition" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "JobDefinition", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "JobDefinition", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "JobDefinitions", "setterDocumentation" : "/**

                  The list of job definitions.

                  \n@param jobDefinitions The list of job definitions.*/", "setterMethodName" : "setJobDefinitions", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobDefinitions", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  The list of job definitions.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setJobDefinitions(java.util.Collection)} or {@link #withJobDefinitions(java.util.Collection)} if you want to override the existing values.

                  \n@param jobDefinitions The list of job definitions.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobDefinitions", "variableType" : "java.util.List", "documentation" : "

                  The list of job definitions.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "nextToken", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withNextToken", "getterDocumentation" : "/**

                  The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@return The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.*/", "getterMethodName" : "getNextToken", "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" : "nextToken", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "nextToken", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "NextToken", "setterDocumentation" : "/**

                  The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.*/", "setterMethodName" : "setNextToken", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "

                  The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "JobDefinitions" : { "c2jName" : "jobDefinitions", "c2jShape" : "JobDefinitionList", "deprecated" : false, "documentation" : "

                  The list of job definitions.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The list of job definitions.

                  \n@param jobDefinitions The list of job definitions.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinitions", "getterDocumentation" : "/**

                  The list of job definitions.

                  \n@return The list of job definitions.*/", "getterMethodName" : "getJobDefinitions", "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" : "jobDefinitions", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinitions", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "JobDefinition", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "JobDefinition", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "JobDefinition", "variableName" : "member", "variableType" : "JobDefinition", "documentation" : "", "simpleType" : "JobDefinition", "variableSetterType" : "JobDefinition" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "JobDefinition", "variableName" : "member", "variableType" : "JobDefinition", "documentation" : "", "simpleType" : "JobDefinition", "variableSetterType" : "JobDefinition" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "JobDefinition", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "JobDefinition", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "JobDefinitions", "setterDocumentation" : "/**

                  The list of job definitions.

                  \n@param jobDefinitions The list of job definitions.*/", "setterMethodName" : "setJobDefinitions", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobDefinitions", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  The list of job definitions.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setJobDefinitions(java.util.Collection)} or {@link #withJobDefinitions(java.util.Collection)} if you want to override the existing values.

                  \n@param jobDefinitions The list of job definitions.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobDefinitions", "variableType" : "java.util.List", "documentation" : "

                  The list of job definitions.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "NextToken" : { "c2jName" : "nextToken", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withNextToken", "getterDocumentation" : "/**

                  The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@return The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.*/", "getterMethodName" : "getNextToken", "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" : "nextToken", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "nextToken", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "NextToken", "setterDocumentation" : "/**

                  The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.*/", "setterMethodName" : "setNextToken", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "

                  The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "DescribeJobDefinitionsResult", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "DescribeJobDefinitionsResult", "variableName" : "describeJobDefinitionsResult", "variableType" : "DescribeJobDefinitionsResult", "documentation" : null, "simpleType" : "DescribeJobDefinitionsResult", "variableSetterType" : "DescribeJobDefinitionsResult" }, "wrapper" : false }, "DescribeJobQueuesRequest" : { "c2jName" : "DescribeJobQueuesRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : { "action" : "DescribeJobQueues", "locationName" : null, "requestUri" : "/v1/describejobqueues", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "c2jName" : "jobQueues", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

                  A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.

                  \n@param jobQueues A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueues", "getterDocumentation" : "/**

                  A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.

                  \n@return A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.*/", "getterMethodName" : "getJobQueues", "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" : "jobQueues", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "JobQueues", "setterDocumentation" : "/**

                  A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.

                  \n@param jobQueues A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.*/", "setterMethodName" : "setJobQueues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobQueues", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setJobQueues(java.util.Collection)} or {@link #withJobQueues(java.util.Collection)} if you want to override the existing values.

                  \n@param jobQueues A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobQueues", "variableType" : "java.util.List", "documentation" : "

                  A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "maxResults", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMaxResults", "getterDocumentation" : "/**

                  The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

                  \n@return The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.*/", "getterMethodName" : "getMaxResults", "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" : "maxResults", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "maxResults", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "MaxResults", "setterDocumentation" : "/**

                  The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.*/", "setterMethodName" : "setMaxResults", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "maxResults", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "maxResults", "variableType" : "Integer", "documentation" : "

                  The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "nextToken", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withNextToken", "getterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  */", "getterMethodName" : "getNextToken", "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" : "nextToken", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "nextToken", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "NextToken", "setterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  */", "setterMethodName" : "setNextToken", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "

                  The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "JobQueues" : { "c2jName" : "jobQueues", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

                  A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.

                  \n@param jobQueues A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueues", "getterDocumentation" : "/**

                  A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.

                  \n@return A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.*/", "getterMethodName" : "getJobQueues", "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" : "jobQueues", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "JobQueues", "setterDocumentation" : "/**

                  A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.

                  \n@param jobQueues A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.*/", "setterMethodName" : "setJobQueues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobQueues", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setJobQueues(java.util.Collection)} or {@link #withJobQueues(java.util.Collection)} if you want to override the existing values.

                  \n@param jobQueues A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobQueues", "variableType" : "java.util.List", "documentation" : "

                  A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "MaxResults" : { "c2jName" : "maxResults", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMaxResults", "getterDocumentation" : "/**

                  The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

                  \n@return The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.*/", "getterMethodName" : "getMaxResults", "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" : "maxResults", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "maxResults", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "MaxResults", "setterDocumentation" : "/**

                  The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.*/", "setterMethodName" : "setMaxResults", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "maxResults", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "maxResults", "variableType" : "Integer", "documentation" : "

                  The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "NextToken" : { "c2jName" : "nextToken", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withNextToken", "getterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  */", "getterMethodName" : "getNextToken", "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" : "nextToken", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "nextToken", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "NextToken", "setterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  */", "setterMethodName" : "setNextToken", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "

                  The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "DescribeJobQueuesRequest", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "DescribeJobQueuesRequest", "variableName" : "describeJobQueuesRequest", "variableType" : "DescribeJobQueuesRequest", "documentation" : null, "simpleType" : "DescribeJobQueuesRequest", "variableSetterType" : "DescribeJobQueuesRequest" }, "wrapper" : false }, "DescribeJobQueuesResult" : { "c2jName" : "DescribeJobQueuesResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "jobQueues", "c2jShape" : "JobQueueDetailList", "deprecated" : false, "documentation" : "

                  The list of job queues.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The list of job queues.

                  \n@param jobQueues The list of job queues.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueues", "getterDocumentation" : "/**

                  The list of job queues.

                  \n@return The list of job queues.*/", "getterMethodName" : "getJobQueues", "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" : "jobQueues", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "JobQueueDetail", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "JobQueueDetail", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "JobQueueDetail", "variableName" : "member", "variableType" : "JobQueueDetail", "documentation" : "", "simpleType" : "JobQueueDetail", "variableSetterType" : "JobQueueDetail" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "JobQueueDetail", "variableName" : "member", "variableType" : "JobQueueDetail", "documentation" : "", "simpleType" : "JobQueueDetail", "variableSetterType" : "JobQueueDetail" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "JobQueueDetail", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "JobQueueDetail", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "JobQueues", "setterDocumentation" : "/**

                  The list of job queues.

                  \n@param jobQueues The list of job queues.*/", "setterMethodName" : "setJobQueues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobQueues", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  The list of job queues.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setJobQueues(java.util.Collection)} or {@link #withJobQueues(java.util.Collection)} if you want to override the existing values.

                  \n@param jobQueues The list of job queues.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobQueues", "variableType" : "java.util.List", "documentation" : "

                  The list of job queues.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "nextToken", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withNextToken", "getterDocumentation" : "/**

                  The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@return The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.*/", "getterMethodName" : "getNextToken", "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" : "nextToken", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "nextToken", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "NextToken", "setterDocumentation" : "/**

                  The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.*/", "setterMethodName" : "setNextToken", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "

                  The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "JobQueues" : { "c2jName" : "jobQueues", "c2jShape" : "JobQueueDetailList", "deprecated" : false, "documentation" : "

                  The list of job queues.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The list of job queues.

                  \n@param jobQueues The list of job queues.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueues", "getterDocumentation" : "/**

                  The list of job queues.

                  \n@return The list of job queues.*/", "getterMethodName" : "getJobQueues", "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" : "jobQueues", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueues", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "JobQueueDetail", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "JobQueueDetail", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "JobQueueDetail", "variableName" : "member", "variableType" : "JobQueueDetail", "documentation" : "", "simpleType" : "JobQueueDetail", "variableSetterType" : "JobQueueDetail" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "JobQueueDetail", "variableName" : "member", "variableType" : "JobQueueDetail", "documentation" : "", "simpleType" : "JobQueueDetail", "variableSetterType" : "JobQueueDetail" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "JobQueueDetail", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "JobQueueDetail", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "JobQueues", "setterDocumentation" : "/**

                  The list of job queues.

                  \n@param jobQueues The list of job queues.*/", "setterMethodName" : "setJobQueues", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobQueues", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  The list of job queues.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setJobQueues(java.util.Collection)} or {@link #withJobQueues(java.util.Collection)} if you want to override the existing values.

                  \n@param jobQueues The list of job queues.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobQueues", "variableType" : "java.util.List", "documentation" : "

                  The list of job queues.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "NextToken" : { "c2jName" : "nextToken", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withNextToken", "getterDocumentation" : "/**

                  The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@return The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.*/", "getterMethodName" : "getNextToken", "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" : "nextToken", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "nextToken", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "NextToken", "setterDocumentation" : "/**

                  The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.*/", "setterMethodName" : "setNextToken", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "

                  The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "DescribeJobQueuesResult", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "DescribeJobQueuesResult", "variableName" : "describeJobQueuesResult", "variableType" : "DescribeJobQueuesResult", "documentation" : null, "simpleType" : "DescribeJobQueuesResult", "variableSetterType" : "DescribeJobQueuesResult" }, "wrapper" : false }, "DescribeJobsRequest" : { "c2jName" : "DescribeJobsRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : { "action" : "DescribeJobs", "locationName" : null, "requestUri" : "/v1/describejobs", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "c2jName" : "jobs", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

                  A space-separated list of up to 100 job IDs.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A space-separated list of up to 100 job IDs.

                  \n@param jobs A space-separated list of up to 100 job IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobs", "getterDocumentation" : "/**

                  A space-separated list of up to 100 job IDs.

                  \n@return A space-separated list of up to 100 job IDs.*/", "getterMethodName" : "getJobs", "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" : "jobs", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobs", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Jobs", "setterDocumentation" : "/**

                  A space-separated list of up to 100 job IDs.

                  \n@param jobs A space-separated list of up to 100 job IDs.*/", "setterMethodName" : "setJobs", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobs", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A space-separated list of up to 100 job IDs.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setJobs(java.util.Collection)} or {@link #withJobs(java.util.Collection)} if you want to override the existing values.

                  \n@param jobs A space-separated list of up to 100 job IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobs", "variableType" : "java.util.List", "documentation" : "

                  A space-separated list of up to 100 job IDs.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "Jobs" : { "c2jName" : "jobs", "c2jShape" : "StringList", "deprecated" : false, "documentation" : "

                  A space-separated list of up to 100 job IDs.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A space-separated list of up to 100 job IDs.

                  \n@param jobs A space-separated list of up to 100 job IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobs", "getterDocumentation" : "/**

                  A space-separated list of up to 100 job IDs.

                  \n@return A space-separated list of up to 100 job IDs.*/", "getterMethodName" : "getJobs", "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" : "jobs", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobs", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "member", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "String", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "simpleType" : "String", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Jobs", "setterDocumentation" : "/**

                  A space-separated list of up to 100 job IDs.

                  \n@param jobs A space-separated list of up to 100 job IDs.*/", "setterMethodName" : "setJobs", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobs", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A space-separated list of up to 100 job IDs.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setJobs(java.util.Collection)} or {@link #withJobs(java.util.Collection)} if you want to override the existing values.

                  \n@param jobs A space-separated list of up to 100 job IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobs", "variableType" : "java.util.List", "documentation" : "

                  A space-separated list of up to 100 job IDs.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobs" ], "shapeName" : "DescribeJobsRequest", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "DescribeJobsRequest", "variableName" : "describeJobsRequest", "variableType" : "DescribeJobsRequest", "documentation" : null, "simpleType" : "DescribeJobsRequest", "variableSetterType" : "DescribeJobsRequest" }, "wrapper" : false }, "DescribeJobsResult" : { "c2jName" : "DescribeJobsResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "jobs", "c2jShape" : "JobDetailList", "deprecated" : false, "documentation" : "

                  The list of jobs.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The list of jobs.

                  \n@param jobs The list of jobs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobs", "getterDocumentation" : "/**

                  The list of jobs.

                  \n@return The list of jobs.*/", "getterMethodName" : "getJobs", "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" : "jobs", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobs", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "JobDetail", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "JobDetail", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "JobDetail", "variableName" : "member", "variableType" : "JobDetail", "documentation" : "", "simpleType" : "JobDetail", "variableSetterType" : "JobDetail" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "JobDetail", "variableName" : "member", "variableType" : "JobDetail", "documentation" : "", "simpleType" : "JobDetail", "variableSetterType" : "JobDetail" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "JobDetail", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "JobDetail", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Jobs", "setterDocumentation" : "/**

                  The list of jobs.

                  \n@param jobs The list of jobs.*/", "setterMethodName" : "setJobs", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobs", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  The list of jobs.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setJobs(java.util.Collection)} or {@link #withJobs(java.util.Collection)} if you want to override the existing values.

                  \n@param jobs The list of jobs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobs", "variableType" : "java.util.List", "documentation" : "

                  The list of jobs.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "Jobs" : { "c2jName" : "jobs", "c2jShape" : "JobDetailList", "deprecated" : false, "documentation" : "

                  The list of jobs.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The list of jobs.

                  \n@param jobs The list of jobs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobs", "getterDocumentation" : "/**

                  The list of jobs.

                  \n@return The list of jobs.*/", "getterMethodName" : "getJobs", "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" : "jobs", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobs", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "JobDetail", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "JobDetail", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "JobDetail", "variableName" : "member", "variableType" : "JobDetail", "documentation" : "", "simpleType" : "JobDetail", "variableSetterType" : "JobDetail" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "JobDetail", "variableName" : "member", "variableType" : "JobDetail", "documentation" : "", "simpleType" : "JobDetail", "variableSetterType" : "JobDetail" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "JobDetail", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "JobDetail", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "Jobs", "setterDocumentation" : "/**

                  The list of jobs.

                  \n@param jobs The list of jobs.*/", "setterMethodName" : "setJobs", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobs", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  The list of jobs.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setJobs(java.util.Collection)} or {@link #withJobs(java.util.Collection)} if you want to override the existing values.

                  \n@param jobs The list of jobs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobs", "variableType" : "java.util.List", "documentation" : "

                  The list of jobs.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "DescribeJobsResult", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "DescribeJobsResult", "variableName" : "describeJobsResult", "variableType" : "DescribeJobsResult", "documentation" : null, "simpleType" : "DescribeJobsResult", "variableSetterType" : "DescribeJobsResult" }, "wrapper" : false }, "Host" : { "c2jName" : "Host", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

                  The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

                  ", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "sourcePath", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

                  \n@param sourcePath The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withSourcePath", "getterDocumentation" : "/**

                  The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

                  \n@return The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.*/", "getterMethodName" : "getSourcePath", "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" : "sourcePath", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "sourcePath", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "SourcePath", "setterDocumentation" : "/**

                  The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

                  \n@param sourcePath The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.*/", "setterMethodName" : "setSourcePath", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "sourcePath", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

                  \n@param sourcePath The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "sourcePath", "variableType" : "String", "documentation" : "

                  The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "SourcePath" : { "c2jName" : "sourcePath", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

                  \n@param sourcePath The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withSourcePath", "getterDocumentation" : "/**

                  The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

                  \n@return The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.*/", "getterMethodName" : "getSourcePath", "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" : "sourcePath", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "sourcePath", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "SourcePath", "setterDocumentation" : "/**

                  The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

                  \n@param sourcePath The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.*/", "setterMethodName" : "setSourcePath", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "sourcePath", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

                  \n@param sourcePath The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "sourcePath", "variableType" : "String", "documentation" : "

                  The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "Host", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "Host", "variableName" : "host", "variableType" : "Host", "documentation" : null, "simpleType" : "Host", "variableSetterType" : "Host" }, "wrapper" : false }, "JQState" : { "c2jName" : "JQState", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : [ { "name" : "ENABLED", "value" : "ENABLED" }, { "name" : "DISABLED", "value" : "DISABLED" } ], "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : null, "membersAsMap" : { }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "JQState", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "JQState", "variableName" : "jQState", "variableType" : "JQState", "documentation" : null, "simpleType" : "JQState", "variableSetterType" : "JQState" }, "wrapper" : false }, "JQStatus" : { "c2jName" : "JQStatus", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : [ { "name" : "CREATING", "value" : "CREATING" }, { "name" : "UPDATING", "value" : "UPDATING" }, { "name" : "DELETING", "value" : "DELETING" }, { "name" : "DELETED", "value" : "DELETED" }, { "name" : "VALID", "value" : "VALID" }, { "name" : "INVALID", "value" : "INVALID" } ], "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : null, "membersAsMap" : { }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "JQStatus", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "JQStatus", "variableName" : "jQStatus", "variableType" : "JQStatus", "documentation" : null, "simpleType" : "JQStatus", "variableSetterType" : "JQStatus" }, "wrapper" : false }, "JobDefinition" : { "c2jName" : "JobDefinition", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

                  An object representing an AWS Batch job definition.

                  ", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "jobDefinitionName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job definition.

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

                  The name of the job definition.

                  \n@return The name of the job definition.*/", "getterMethodName" : "getJobDefinitionName", "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" : "jobDefinitionName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinitionName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinitionName", "setterDocumentation" : "/**

                  The name of the job definition.

                  \n@param jobDefinitionName The name of the job definition.*/", "setterMethodName" : "setJobDefinitionName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job definition.

                  \n@param jobDefinitionName The name of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionName", "variableType" : "String", "documentation" : "

                  The name of the job definition.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "jobDefinitionArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) for the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) for the job definition.

                  \n@param jobDefinitionArn The Amazon Resource Name (ARN) for the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinitionArn", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) for the job definition.

                  \n@return The Amazon Resource Name (ARN) for the job definition.*/", "getterMethodName" : "getJobDefinitionArn", "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" : "jobDefinitionArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinitionArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinitionArn", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) for the job definition.

                  \n@param jobDefinitionArn The Amazon Resource Name (ARN) for the job definition.*/", "setterMethodName" : "setJobDefinitionArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) for the job definition.

                  \n@param jobDefinitionArn The Amazon Resource Name (ARN) for the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionArn", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) for the job definition.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "revision", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The revision of the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The revision of the job definition.

                  \n@param revision The revision of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withRevision", "getterDocumentation" : "/**

                  The revision of the job definition.

                  \n@return The revision of the job definition.*/", "getterMethodName" : "getRevision", "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" : "revision", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "revision", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Revision", "setterDocumentation" : "/**

                  The revision of the job definition.

                  \n@param revision The revision of the job definition.*/", "setterMethodName" : "setRevision", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "revision", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The revision of the job definition.

                  \n@param revision The revision of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "revision", "variableType" : "Integer", "documentation" : "

                  The revision of the job definition.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "status", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The status of the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The status of the job definition.

                  \n@param status The status of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withStatus", "getterDocumentation" : "/**

                  The status of the job definition.

                  \n@return The status of the job definition.*/", "getterMethodName" : "getStatus", "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" : "status", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "status", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Status", "setterDocumentation" : "/**

                  The status of the job definition.

                  \n@param status The status of the job definition.*/", "setterMethodName" : "setStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The status of the job definition.

                  \n@param status The status of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "

                  The status of the job definition.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "type", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The type of job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The type of job definition.

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

                  The type of job definition.

                  \n@return The type of job definition.*/", "getterMethodName" : "getType", "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" : "type", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "type", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Type", "setterDocumentation" : "/**

                  The type of job definition.

                  \n@param type The type of job definition.*/", "setterMethodName" : "setType", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The type of job definition.

                  \n@param type The type of job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "

                  The type of job definition.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "parameters", "c2jShape" : "ParametersMap", "deprecated" : false, "documentation" : "

                  Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withParameters", "getterDocumentation" : "/**

                  Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@return Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.*/", "getterMethodName" : "getParameters", "getterModel" : { "returnType" : "java.util.Map", "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, "statusCode" : false, "unmarshallLocationName" : "parameters", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : true, "mapModel" : { "implType" : "java.util.HashMap", "interfaceType" : "java.util.Map", "keyLocationName" : "key", "keyModel" : null, "keyType" : "String", "valueLocationName" : "value", "valueModel" : { "c2jName" : "value", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withValue", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getValue", "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" : "value", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "value", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Value", "setterDocumentation" : "/**\n@param value */", "setterMethodName" : "setValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "valueType" : "String", "entryType" : "Map.Entry", "keySimple" : true, "templateImplType" : "java.util.HashMap", "templateType" : "java.util.Map", "valueList" : false, "valueSimple" : true }, "marshallingTargetClass" : "Map", "marshallingType" : "MAP", "name" : "Parameters", "setterDocumentation" : "/**

                  Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.*/", "setterMethodName" : "setParameters", "setterModel" : { "variableDeclarationType" : "java.util.Map", "variableName" : "parameters", "variableType" : "java.util.Map", "documentation" : "", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "simple" : false, "varargSetterDocumentation" : "/**

                  Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.Map", "variableName" : "parameters", "variableType" : "java.util.Map", "documentation" : "

                  Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  ", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "xmlNameSpaceUri" : null }, { "c2jName" : "containerProperties", "c2jShape" : "ContainerProperties", "deprecated" : false, "documentation" : "

                  An object with various properties specific to container-based jobs.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  An object with various properties specific to container-based jobs.

                  \n@param containerProperties An object with various properties specific to container-based jobs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withContainerProperties", "getterDocumentation" : "/**

                  An object with various properties specific to container-based jobs.

                  \n@return An object with various properties specific to container-based jobs.*/", "getterMethodName" : "getContainerProperties", "getterModel" : { "returnType" : "ContainerProperties", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "containerProperties", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "containerProperties", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "ContainerProperties", "setterDocumentation" : "/**

                  An object with various properties specific to container-based jobs.

                  \n@param containerProperties An object with various properties specific to container-based jobs.*/", "setterMethodName" : "setContainerProperties", "setterModel" : { "variableDeclarationType" : "ContainerProperties", "variableName" : "containerProperties", "variableType" : "ContainerProperties", "documentation" : "", "simpleType" : "ContainerProperties", "variableSetterType" : "ContainerProperties" }, "simple" : false, "varargSetterDocumentation" : "/**

                  An object with various properties specific to container-based jobs.

                  \n@param containerProperties An object with various properties specific to container-based jobs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ContainerProperties", "variableName" : "containerProperties", "variableType" : "ContainerProperties", "documentation" : "

                  An object with various properties specific to container-based jobs.

                  ", "simpleType" : "ContainerProperties", "variableSetterType" : "ContainerProperties" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ContainerProperties" : { "c2jName" : "containerProperties", "c2jShape" : "ContainerProperties", "deprecated" : false, "documentation" : "

                  An object with various properties specific to container-based jobs.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  An object with various properties specific to container-based jobs.

                  \n@param containerProperties An object with various properties specific to container-based jobs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withContainerProperties", "getterDocumentation" : "/**

                  An object with various properties specific to container-based jobs.

                  \n@return An object with various properties specific to container-based jobs.*/", "getterMethodName" : "getContainerProperties", "getterModel" : { "returnType" : "ContainerProperties", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "containerProperties", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "containerProperties", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "ContainerProperties", "setterDocumentation" : "/**

                  An object with various properties specific to container-based jobs.

                  \n@param containerProperties An object with various properties specific to container-based jobs.*/", "setterMethodName" : "setContainerProperties", "setterModel" : { "variableDeclarationType" : "ContainerProperties", "variableName" : "containerProperties", "variableType" : "ContainerProperties", "documentation" : "", "simpleType" : "ContainerProperties", "variableSetterType" : "ContainerProperties" }, "simple" : false, "varargSetterDocumentation" : "/**

                  An object with various properties specific to container-based jobs.

                  \n@param containerProperties An object with various properties specific to container-based jobs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ContainerProperties", "variableName" : "containerProperties", "variableType" : "ContainerProperties", "documentation" : "

                  An object with various properties specific to container-based jobs.

                  ", "simpleType" : "ContainerProperties", "variableSetterType" : "ContainerProperties" }, "xmlNameSpaceUri" : null }, "JobDefinitionArn" : { "c2jName" : "jobDefinitionArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) for the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) for the job definition.

                  \n@param jobDefinitionArn The Amazon Resource Name (ARN) for the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinitionArn", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) for the job definition.

                  \n@return The Amazon Resource Name (ARN) for the job definition.*/", "getterMethodName" : "getJobDefinitionArn", "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" : "jobDefinitionArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinitionArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinitionArn", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) for the job definition.

                  \n@param jobDefinitionArn The Amazon Resource Name (ARN) for the job definition.*/", "setterMethodName" : "setJobDefinitionArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) for the job definition.

                  \n@param jobDefinitionArn The Amazon Resource Name (ARN) for the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionArn", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) for the job definition.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "JobDefinitionName" : { "c2jName" : "jobDefinitionName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job definition.

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

                  The name of the job definition.

                  \n@return The name of the job definition.*/", "getterMethodName" : "getJobDefinitionName", "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" : "jobDefinitionName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinitionName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinitionName", "setterDocumentation" : "/**

                  The name of the job definition.

                  \n@param jobDefinitionName The name of the job definition.*/", "setterMethodName" : "setJobDefinitionName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job definition.

                  \n@param jobDefinitionName The name of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionName", "variableType" : "String", "documentation" : "

                  The name of the job definition.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Parameters" : { "c2jName" : "parameters", "c2jShape" : "ParametersMap", "deprecated" : false, "documentation" : "

                  Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withParameters", "getterDocumentation" : "/**

                  Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@return Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.*/", "getterMethodName" : "getParameters", "getterModel" : { "returnType" : "java.util.Map", "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, "statusCode" : false, "unmarshallLocationName" : "parameters", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : true, "mapModel" : { "implType" : "java.util.HashMap", "interfaceType" : "java.util.Map", "keyLocationName" : "key", "keyModel" : null, "keyType" : "String", "valueLocationName" : "value", "valueModel" : { "c2jName" : "value", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withValue", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getValue", "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" : "value", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "value", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Value", "setterDocumentation" : "/**\n@param value */", "setterMethodName" : "setValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "valueType" : "String", "entryType" : "Map.Entry", "keySimple" : true, "templateImplType" : "java.util.HashMap", "templateType" : "java.util.Map", "valueList" : false, "valueSimple" : true }, "marshallingTargetClass" : "Map", "marshallingType" : "MAP", "name" : "Parameters", "setterDocumentation" : "/**

                  Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.*/", "setterMethodName" : "setParameters", "setterModel" : { "variableDeclarationType" : "java.util.Map", "variableName" : "parameters", "variableType" : "java.util.Map", "documentation" : "", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "simple" : false, "varargSetterDocumentation" : "/**

                  Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.Map", "variableName" : "parameters", "variableType" : "java.util.Map", "documentation" : "

                  Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  ", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "xmlNameSpaceUri" : null }, "Revision" : { "c2jName" : "revision", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The revision of the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The revision of the job definition.

                  \n@param revision The revision of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withRevision", "getterDocumentation" : "/**

                  The revision of the job definition.

                  \n@return The revision of the job definition.*/", "getterMethodName" : "getRevision", "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" : "revision", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "revision", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Revision", "setterDocumentation" : "/**

                  The revision of the job definition.

                  \n@param revision The revision of the job definition.*/", "setterMethodName" : "setRevision", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "revision", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The revision of the job definition.

                  \n@param revision The revision of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "revision", "variableType" : "Integer", "documentation" : "

                  The revision of the job definition.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "Status" : { "c2jName" : "status", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The status of the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The status of the job definition.

                  \n@param status The status of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withStatus", "getterDocumentation" : "/**

                  The status of the job definition.

                  \n@return The status of the job definition.*/", "getterMethodName" : "getStatus", "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" : "status", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "status", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Status", "setterDocumentation" : "/**

                  The status of the job definition.

                  \n@param status The status of the job definition.*/", "setterMethodName" : "setStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The status of the job definition.

                  \n@param status The status of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "

                  The status of the job definition.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Type" : { "c2jName" : "type", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The type of job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The type of job definition.

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

                  The type of job definition.

                  \n@return The type of job definition.*/", "getterMethodName" : "getType", "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" : "type", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "type", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Type", "setterDocumentation" : "/**

                  The type of job definition.

                  \n@param type The type of job definition.*/", "setterMethodName" : "setType", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The type of job definition.

                  \n@param type The type of job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "

                  The type of job definition.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobDefinitionName", "jobDefinitionArn", "revision", "type" ], "shapeName" : "JobDefinition", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "JobDefinition", "variableName" : "jobDefinition", "variableType" : "JobDefinition", "documentation" : null, "simpleType" : "JobDefinition", "variableSetterType" : "JobDefinition" }, "wrapper" : false }, "JobDefinitionType" : { "c2jName" : "JobDefinitionType", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : [ { "name" : "Container", "value" : "container" } ], "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : null, "membersAsMap" : { }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "JobDefinitionType", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "JobDefinitionType", "variableName" : "jobDefinitionType", "variableType" : "JobDefinitionType", "documentation" : null, "simpleType" : "JobDefinitionType", "variableSetterType" : "JobDefinitionType" }, "wrapper" : false }, "JobDependency" : { "c2jName" : "JobDependency", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

                  An object representing an AWS Batch job dependency.

                  ", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "jobId", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The job ID of the AWS Batch job associated with this dependency.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The job ID of the AWS Batch job associated with this dependency.

                  \n@param jobId The job ID of the AWS Batch job associated with this dependency.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobId", "getterDocumentation" : "/**

                  The job ID of the AWS Batch job associated with this dependency.

                  \n@return The job ID of the AWS Batch job associated with this dependency.*/", "getterMethodName" : "getJobId", "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" : "jobId", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobId", "setterDocumentation" : "/**

                  The job ID of the AWS Batch job associated with this dependency.

                  \n@param jobId The job ID of the AWS Batch job associated with this dependency.*/", "setterMethodName" : "setJobId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The job ID of the AWS Batch job associated with this dependency.

                  \n@param jobId The job ID of the AWS Batch job associated with this dependency.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "

                  The job ID of the AWS Batch job associated with this dependency.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "JobId" : { "c2jName" : "jobId", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The job ID of the AWS Batch job associated with this dependency.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The job ID of the AWS Batch job associated with this dependency.

                  \n@param jobId The job ID of the AWS Batch job associated with this dependency.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobId", "getterDocumentation" : "/**

                  The job ID of the AWS Batch job associated with this dependency.

                  \n@return The job ID of the AWS Batch job associated with this dependency.*/", "getterMethodName" : "getJobId", "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" : "jobId", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobId", "setterDocumentation" : "/**

                  The job ID of the AWS Batch job associated with this dependency.

                  \n@param jobId The job ID of the AWS Batch job associated with this dependency.*/", "setterMethodName" : "setJobId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The job ID of the AWS Batch job associated with this dependency.

                  \n@param jobId The job ID of the AWS Batch job associated with this dependency.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "

                  The job ID of the AWS Batch job associated with this dependency.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "JobDependency", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "JobDependency", "variableName" : "jobDependency", "variableType" : "JobDependency", "documentation" : null, "simpleType" : "JobDependency", "variableSetterType" : "JobDependency" }, "wrapper" : false }, "JobDetail" : { "c2jName" : "JobDetail", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

                  An object representing an AWS Batch job.

                  ", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "jobName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job.

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

                  The name of the job.

                  \n@return The name of the job.*/", "getterMethodName" : "getJobName", "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" : "jobName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobName", "setterDocumentation" : "/**

                  The name of the job.

                  \n@param jobName The name of the job.*/", "setterMethodName" : "setJobName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job.

                  \n@param jobName The name of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobName", "variableType" : "String", "documentation" : "

                  The name of the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "jobId", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The ID for the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The ID for the job.

                  \n@param jobId The ID for the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobId", "getterDocumentation" : "/**

                  The ID for the job.

                  \n@return The ID for the job.*/", "getterMethodName" : "getJobId", "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" : "jobId", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobId", "setterDocumentation" : "/**

                  The ID for the job.

                  \n@param jobId The ID for the job.*/", "setterMethodName" : "setJobId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The ID for the job.

                  \n@param jobId The ID for the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "

                  The ID for the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "jobQueue", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) of the job queue with which the job is associated.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue with which the job is associated.

                  \n@param jobQueue The Amazon Resource Name (ARN) of the job queue with which the job is associated.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueue", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue with which the job is associated.

                  \n@return The Amazon Resource Name (ARN) of the job queue with which the job is associated.*/", "getterMethodName" : "getJobQueue", "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" : "jobQueue", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueue", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue with which the job is associated.

                  \n@param jobQueue The Amazon Resource Name (ARN) of the job queue with which the job is associated.*/", "setterMethodName" : "setJobQueue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue with which the job is associated.

                  \n@param jobQueue The Amazon Resource Name (ARN) of the job queue with which the job is associated.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) of the job queue with which the job is associated.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "status", "c2jShape" : "JobStatus", "deprecated" : false, "documentation" : "

                  The current status for the job.

                  ", "enumType" : "JobStatus", "fluentSetterDocumentation" : "/**

                  The current status for the job.

                  \n@param status The current status for the job.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JobStatus*/", "fluentSetterMethodName" : "withStatus", "getterDocumentation" : "/**

                  The current status for the job.

                  \n@return The current status for the job.\n@see JobStatus*/", "getterMethodName" : "getStatus", "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" : "status", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "status", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Status", "setterDocumentation" : "/**

                  The current status for the job.

                  \n@param status The current status for the job.\n@see JobStatus*/", "setterMethodName" : "setStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The current status for the job.

                  \n@param status The current status for the job.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JobStatus*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "

                  The current status for the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "statusReason", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  A short, human-readable string to provide additional details about the current status of the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A short, human-readable string to provide additional details about the current status of the job.

                  \n@param statusReason A short, human-readable string to provide additional details about the current status of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withStatusReason", "getterDocumentation" : "/**

                  A short, human-readable string to provide additional details about the current status of the job.

                  \n@return A short, human-readable string to provide additional details about the current status of the job.*/", "getterMethodName" : "getStatusReason", "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" : "statusReason", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "statusReason", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "StatusReason", "setterDocumentation" : "/**

                  A short, human-readable string to provide additional details about the current status of the job.

                  \n@param statusReason A short, human-readable string to provide additional details about the current status of the job.*/", "setterMethodName" : "setStatusReason", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "statusReason", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  A short, human-readable string to provide additional details about the current status of the job.

                  \n@param statusReason A short, human-readable string to provide additional details about the current status of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "statusReason", "variableType" : "String", "documentation" : "

                  A short, human-readable string to provide additional details about the current status of the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "createdAt", "c2jShape" : "Long", "deprecated" : false, "documentation" : "

                  The Unix timestamp for when the job was created (when the task entered the PENDING state).

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Unix timestamp for when the job was created (when the task entered the PENDING state).

                  \n@param createdAt The Unix timestamp for when the job was created (when the task entered the PENDING state).\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withCreatedAt", "getterDocumentation" : "/**

                  The Unix timestamp for when the job was created (when the task entered the PENDING state).

                  \n@return The Unix timestamp for when the job was created (when the task entered the PENDING state).*/", "getterMethodName" : "getCreatedAt", "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" : "createdAt", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "createdAt", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Long", "marshallingType" : "LONG", "name" : "CreatedAt", "setterDocumentation" : "/**

                  The Unix timestamp for when the job was created (when the task entered the PENDING state).

                  \n@param createdAt The Unix timestamp for when the job was created (when the task entered the PENDING state).*/", "setterMethodName" : "setCreatedAt", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "createdAt", "variableType" : "Long", "documentation" : "", "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Unix timestamp for when the job was created (when the task entered the PENDING state).

                  \n@param createdAt The Unix timestamp for when the job was created (when the task entered the PENDING state).\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Long", "variableName" : "createdAt", "variableType" : "Long", "documentation" : "

                  The Unix timestamp for when the job was created (when the task entered the PENDING state).

                  ", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlNameSpaceUri" : null }, { "c2jName" : "startedAt", "c2jShape" : "Long", "deprecated" : false, "documentation" : "

                  The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).

                  \n@param startedAt The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withStartedAt", "getterDocumentation" : "/**

                  The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).

                  \n@return The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).*/", "getterMethodName" : "getStartedAt", "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" : "startedAt", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "startedAt", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Long", "marshallingType" : "LONG", "name" : "StartedAt", "setterDocumentation" : "/**

                  The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).

                  \n@param startedAt The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).*/", "setterMethodName" : "setStartedAt", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "startedAt", "variableType" : "Long", "documentation" : "", "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).

                  \n@param startedAt The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Long", "variableName" : "startedAt", "variableType" : "Long", "documentation" : "

                  The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).

                  ", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlNameSpaceUri" : null }, { "c2jName" : "stoppedAt", "c2jShape" : "Long", "deprecated" : false, "documentation" : "

                  The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).

                  \n@param stoppedAt The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withStoppedAt", "getterDocumentation" : "/**

                  The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).

                  \n@return The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).*/", "getterMethodName" : "getStoppedAt", "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" : "stoppedAt", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "stoppedAt", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Long", "marshallingType" : "LONG", "name" : "StoppedAt", "setterDocumentation" : "/**

                  The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).

                  \n@param stoppedAt The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).*/", "setterMethodName" : "setStoppedAt", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "stoppedAt", "variableType" : "Long", "documentation" : "", "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).

                  \n@param stoppedAt The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Long", "variableName" : "stoppedAt", "variableType" : "Long", "documentation" : "

                  The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).

                  ", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlNameSpaceUri" : null }, { "c2jName" : "dependsOn", "c2jShape" : "JobDependencyList", "deprecated" : false, "documentation" : "

                  A list of job names or IDs on which this job depends.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A list of job names or IDs on which this job depends.

                  \n@param dependsOn A list of job names or IDs on which this job depends.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withDependsOn", "getterDocumentation" : "/**

                  A list of job names or IDs on which this job depends.

                  \n@return A list of job names or IDs on which this job depends.*/", "getterMethodName" : "getDependsOn", "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" : "dependsOn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "dependsOn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "JobDependency", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "JobDependency", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "JobDependency", "variableName" : "member", "variableType" : "JobDependency", "documentation" : "", "simpleType" : "JobDependency", "variableSetterType" : "JobDependency" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "JobDependency", "variableName" : "member", "variableType" : "JobDependency", "documentation" : "", "simpleType" : "JobDependency", "variableSetterType" : "JobDependency" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "JobDependency", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "JobDependency", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "DependsOn", "setterDocumentation" : "/**

                  A list of job names or IDs on which this job depends.

                  \n@param dependsOn A list of job names or IDs on which this job depends.*/", "setterMethodName" : "setDependsOn", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "dependsOn", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A list of job names or IDs on which this job depends.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setDependsOn(java.util.Collection)} or {@link #withDependsOn(java.util.Collection)} if you want to override the existing values.

                  \n@param dependsOn A list of job names or IDs on which this job depends.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "dependsOn", "variableType" : "java.util.List", "documentation" : "

                  A list of job names or IDs on which this job depends.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "jobDefinition", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The job definition that is used by this job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The job definition that is used by this job.

                  \n@param jobDefinition The job definition that is used by this job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinition", "getterDocumentation" : "/**

                  The job definition that is used by this job.

                  \n@return The job definition that is used by this job.*/", "getterMethodName" : "getJobDefinition", "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" : "jobDefinition", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinition", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinition", "setterDocumentation" : "/**

                  The job definition that is used by this job.

                  \n@param jobDefinition The job definition that is used by this job.*/", "setterMethodName" : "setJobDefinition", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinition", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The job definition that is used by this job.

                  \n@param jobDefinition The job definition that is used by this job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinition", "variableType" : "String", "documentation" : "

                  The job definition that is used by this job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "parameters", "c2jShape" : "ParametersMap", "deprecated" : false, "documentation" : "

                  Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.

                  \n@param parameters Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withParameters", "getterDocumentation" : "/**

                  Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.

                  \n@return Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.*/", "getterMethodName" : "getParameters", "getterModel" : { "returnType" : "java.util.Map", "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, "statusCode" : false, "unmarshallLocationName" : "parameters", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : true, "mapModel" : { "implType" : "java.util.HashMap", "interfaceType" : "java.util.Map", "keyLocationName" : "key", "keyModel" : null, "keyType" : "String", "valueLocationName" : "value", "valueModel" : { "c2jName" : "value", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withValue", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getValue", "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" : "value", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "value", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Value", "setterDocumentation" : "/**\n@param value */", "setterMethodName" : "setValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "valueType" : "String", "entryType" : "Map.Entry", "keySimple" : true, "templateImplType" : "java.util.HashMap", "templateType" : "java.util.Map", "valueList" : false, "valueSimple" : true }, "marshallingTargetClass" : "Map", "marshallingType" : "MAP", "name" : "Parameters", "setterDocumentation" : "/**

                  Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.

                  \n@param parameters Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.*/", "setterMethodName" : "setParameters", "setterModel" : { "variableDeclarationType" : "java.util.Map", "variableName" : "parameters", "variableType" : "java.util.Map", "documentation" : "", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "simple" : false, "varargSetterDocumentation" : "/**

                  Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.

                  \n@param parameters Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.Map", "variableName" : "parameters", "variableType" : "java.util.Map", "documentation" : "

                  Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.

                  ", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "xmlNameSpaceUri" : null }, { "c2jName" : "container", "c2jShape" : "ContainerDetail", "deprecated" : false, "documentation" : "

                  An object representing the details of the container that is associated with the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  An object representing the details of the container that is associated with the job.

                  \n@param container An object representing the details of the container that is associated with the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withContainer", "getterDocumentation" : "/**

                  An object representing the details of the container that is associated with the job.

                  \n@return An object representing the details of the container that is associated with the job.*/", "getterMethodName" : "getContainer", "getterModel" : { "returnType" : "ContainerDetail", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "container", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "container", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Container", "setterDocumentation" : "/**

                  An object representing the details of the container that is associated with the job.

                  \n@param container An object representing the details of the container that is associated with the job.*/", "setterMethodName" : "setContainer", "setterModel" : { "variableDeclarationType" : "ContainerDetail", "variableName" : "container", "variableType" : "ContainerDetail", "documentation" : "", "simpleType" : "ContainerDetail", "variableSetterType" : "ContainerDetail" }, "simple" : false, "varargSetterDocumentation" : "/**

                  An object representing the details of the container that is associated with the job.

                  \n@param container An object representing the details of the container that is associated with the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ContainerDetail", "variableName" : "container", "variableType" : "ContainerDetail", "documentation" : "

                  An object representing the details of the container that is associated with the job.

                  ", "simpleType" : "ContainerDetail", "variableSetterType" : "ContainerDetail" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "Container" : { "c2jName" : "container", "c2jShape" : "ContainerDetail", "deprecated" : false, "documentation" : "

                  An object representing the details of the container that is associated with the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  An object representing the details of the container that is associated with the job.

                  \n@param container An object representing the details of the container that is associated with the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withContainer", "getterDocumentation" : "/**

                  An object representing the details of the container that is associated with the job.

                  \n@return An object representing the details of the container that is associated with the job.*/", "getterMethodName" : "getContainer", "getterModel" : { "returnType" : "ContainerDetail", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "container", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "container", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Container", "setterDocumentation" : "/**

                  An object representing the details of the container that is associated with the job.

                  \n@param container An object representing the details of the container that is associated with the job.*/", "setterMethodName" : "setContainer", "setterModel" : { "variableDeclarationType" : "ContainerDetail", "variableName" : "container", "variableType" : "ContainerDetail", "documentation" : "", "simpleType" : "ContainerDetail", "variableSetterType" : "ContainerDetail" }, "simple" : false, "varargSetterDocumentation" : "/**

                  An object representing the details of the container that is associated with the job.

                  \n@param container An object representing the details of the container that is associated with the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ContainerDetail", "variableName" : "container", "variableType" : "ContainerDetail", "documentation" : "

                  An object representing the details of the container that is associated with the job.

                  ", "simpleType" : "ContainerDetail", "variableSetterType" : "ContainerDetail" }, "xmlNameSpaceUri" : null }, "CreatedAt" : { "c2jName" : "createdAt", "c2jShape" : "Long", "deprecated" : false, "documentation" : "

                  The Unix timestamp for when the job was created (when the task entered the PENDING state).

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Unix timestamp for when the job was created (when the task entered the PENDING state).

                  \n@param createdAt The Unix timestamp for when the job was created (when the task entered the PENDING state).\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withCreatedAt", "getterDocumentation" : "/**

                  The Unix timestamp for when the job was created (when the task entered the PENDING state).

                  \n@return The Unix timestamp for when the job was created (when the task entered the PENDING state).*/", "getterMethodName" : "getCreatedAt", "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" : "createdAt", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "createdAt", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Long", "marshallingType" : "LONG", "name" : "CreatedAt", "setterDocumentation" : "/**

                  The Unix timestamp for when the job was created (when the task entered the PENDING state).

                  \n@param createdAt The Unix timestamp for when the job was created (when the task entered the PENDING state).*/", "setterMethodName" : "setCreatedAt", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "createdAt", "variableType" : "Long", "documentation" : "", "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Unix timestamp for when the job was created (when the task entered the PENDING state).

                  \n@param createdAt The Unix timestamp for when the job was created (when the task entered the PENDING state).\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Long", "variableName" : "createdAt", "variableType" : "Long", "documentation" : "

                  The Unix timestamp for when the job was created (when the task entered the PENDING state).

                  ", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlNameSpaceUri" : null }, "DependsOn" : { "c2jName" : "dependsOn", "c2jShape" : "JobDependencyList", "deprecated" : false, "documentation" : "

                  A list of job names or IDs on which this job depends.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A list of job names or IDs on which this job depends.

                  \n@param dependsOn A list of job names or IDs on which this job depends.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withDependsOn", "getterDocumentation" : "/**

                  A list of job names or IDs on which this job depends.

                  \n@return A list of job names or IDs on which this job depends.*/", "getterMethodName" : "getDependsOn", "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" : "dependsOn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "dependsOn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "JobDependency", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "JobDependency", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "JobDependency", "variableName" : "member", "variableType" : "JobDependency", "documentation" : "", "simpleType" : "JobDependency", "variableSetterType" : "JobDependency" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "JobDependency", "variableName" : "member", "variableType" : "JobDependency", "documentation" : "", "simpleType" : "JobDependency", "variableSetterType" : "JobDependency" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "JobDependency", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "JobDependency", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "DependsOn", "setterDocumentation" : "/**

                  A list of job names or IDs on which this job depends.

                  \n@param dependsOn A list of job names or IDs on which this job depends.*/", "setterMethodName" : "setDependsOn", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "dependsOn", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A list of job names or IDs on which this job depends.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setDependsOn(java.util.Collection)} or {@link #withDependsOn(java.util.Collection)} if you want to override the existing values.

                  \n@param dependsOn A list of job names or IDs on which this job depends.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "dependsOn", "variableType" : "java.util.List", "documentation" : "

                  A list of job names or IDs on which this job depends.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "JobDefinition" : { "c2jName" : "jobDefinition", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The job definition that is used by this job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The job definition that is used by this job.

                  \n@param jobDefinition The job definition that is used by this job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinition", "getterDocumentation" : "/**

                  The job definition that is used by this job.

                  \n@return The job definition that is used by this job.*/", "getterMethodName" : "getJobDefinition", "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" : "jobDefinition", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinition", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinition", "setterDocumentation" : "/**

                  The job definition that is used by this job.

                  \n@param jobDefinition The job definition that is used by this job.*/", "setterMethodName" : "setJobDefinition", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinition", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The job definition that is used by this job.

                  \n@param jobDefinition The job definition that is used by this job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinition", "variableType" : "String", "documentation" : "

                  The job definition that is used by this job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "JobId" : { "c2jName" : "jobId", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The ID for the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The ID for the job.

                  \n@param jobId The ID for the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobId", "getterDocumentation" : "/**

                  The ID for the job.

                  \n@return The ID for the job.*/", "getterMethodName" : "getJobId", "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" : "jobId", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobId", "setterDocumentation" : "/**

                  The ID for the job.

                  \n@param jobId The ID for the job.*/", "setterMethodName" : "setJobId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The ID for the job.

                  \n@param jobId The ID for the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "

                  The ID for the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "JobName" : { "c2jName" : "jobName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job.

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

                  The name of the job.

                  \n@return The name of the job.*/", "getterMethodName" : "getJobName", "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" : "jobName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobName", "setterDocumentation" : "/**

                  The name of the job.

                  \n@param jobName The name of the job.*/", "setterMethodName" : "setJobName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job.

                  \n@param jobName The name of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobName", "variableType" : "String", "documentation" : "

                  The name of the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "JobQueue" : { "c2jName" : "jobQueue", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) of the job queue with which the job is associated.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue with which the job is associated.

                  \n@param jobQueue The Amazon Resource Name (ARN) of the job queue with which the job is associated.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueue", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue with which the job is associated.

                  \n@return The Amazon Resource Name (ARN) of the job queue with which the job is associated.*/", "getterMethodName" : "getJobQueue", "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" : "jobQueue", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueue", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue with which the job is associated.

                  \n@param jobQueue The Amazon Resource Name (ARN) of the job queue with which the job is associated.*/", "setterMethodName" : "setJobQueue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue with which the job is associated.

                  \n@param jobQueue The Amazon Resource Name (ARN) of the job queue with which the job is associated.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) of the job queue with which the job is associated.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Parameters" : { "c2jName" : "parameters", "c2jShape" : "ParametersMap", "deprecated" : false, "documentation" : "

                  Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.

                  \n@param parameters Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withParameters", "getterDocumentation" : "/**

                  Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.

                  \n@return Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.*/", "getterMethodName" : "getParameters", "getterModel" : { "returnType" : "java.util.Map", "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, "statusCode" : false, "unmarshallLocationName" : "parameters", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : true, "mapModel" : { "implType" : "java.util.HashMap", "interfaceType" : "java.util.Map", "keyLocationName" : "key", "keyModel" : null, "keyType" : "String", "valueLocationName" : "value", "valueModel" : { "c2jName" : "value", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withValue", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getValue", "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" : "value", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "value", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Value", "setterDocumentation" : "/**\n@param value */", "setterMethodName" : "setValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "valueType" : "String", "entryType" : "Map.Entry", "keySimple" : true, "templateImplType" : "java.util.HashMap", "templateType" : "java.util.Map", "valueList" : false, "valueSimple" : true }, "marshallingTargetClass" : "Map", "marshallingType" : "MAP", "name" : "Parameters", "setterDocumentation" : "/**

                  Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.

                  \n@param parameters Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.*/", "setterMethodName" : "setParameters", "setterModel" : { "variableDeclarationType" : "java.util.Map", "variableName" : "parameters", "variableType" : "java.util.Map", "documentation" : "", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "simple" : false, "varargSetterDocumentation" : "/**

                  Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.

                  \n@param parameters Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.Map", "variableName" : "parameters", "variableType" : "java.util.Map", "documentation" : "

                  Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.

                  ", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "xmlNameSpaceUri" : null }, "StartedAt" : { "c2jName" : "startedAt", "c2jShape" : "Long", "deprecated" : false, "documentation" : "

                  The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).

                  \n@param startedAt The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withStartedAt", "getterDocumentation" : "/**

                  The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).

                  \n@return The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).*/", "getterMethodName" : "getStartedAt", "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" : "startedAt", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "startedAt", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Long", "marshallingType" : "LONG", "name" : "StartedAt", "setterDocumentation" : "/**

                  The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).

                  \n@param startedAt The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).*/", "setterMethodName" : "setStartedAt", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "startedAt", "variableType" : "Long", "documentation" : "", "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).

                  \n@param startedAt The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Long", "variableName" : "startedAt", "variableType" : "Long", "documentation" : "

                  The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).

                  ", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlNameSpaceUri" : null }, "Status" : { "c2jName" : "status", "c2jShape" : "JobStatus", "deprecated" : false, "documentation" : "

                  The current status for the job.

                  ", "enumType" : "JobStatus", "fluentSetterDocumentation" : "/**

                  The current status for the job.

                  \n@param status The current status for the job.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JobStatus*/", "fluentSetterMethodName" : "withStatus", "getterDocumentation" : "/**

                  The current status for the job.

                  \n@return The current status for the job.\n@see JobStatus*/", "getterMethodName" : "getStatus", "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" : "status", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "status", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Status", "setterDocumentation" : "/**

                  The current status for the job.

                  \n@param status The current status for the job.\n@see JobStatus*/", "setterMethodName" : "setStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The current status for the job.

                  \n@param status The current status for the job.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JobStatus*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "

                  The current status for the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "StatusReason" : { "c2jName" : "statusReason", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  A short, human-readable string to provide additional details about the current status of the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A short, human-readable string to provide additional details about the current status of the job.

                  \n@param statusReason A short, human-readable string to provide additional details about the current status of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withStatusReason", "getterDocumentation" : "/**

                  A short, human-readable string to provide additional details about the current status of the job.

                  \n@return A short, human-readable string to provide additional details about the current status of the job.*/", "getterMethodName" : "getStatusReason", "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" : "statusReason", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "statusReason", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "StatusReason", "setterDocumentation" : "/**

                  A short, human-readable string to provide additional details about the current status of the job.

                  \n@param statusReason A short, human-readable string to provide additional details about the current status of the job.*/", "setterMethodName" : "setStatusReason", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "statusReason", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  A short, human-readable string to provide additional details about the current status of the job.

                  \n@param statusReason A short, human-readable string to provide additional details about the current status of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "statusReason", "variableType" : "String", "documentation" : "

                  A short, human-readable string to provide additional details about the current status of the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "StoppedAt" : { "c2jName" : "stoppedAt", "c2jShape" : "Long", "deprecated" : false, "documentation" : "

                  The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).

                  \n@param stoppedAt The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withStoppedAt", "getterDocumentation" : "/**

                  The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).

                  \n@return The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).*/", "getterMethodName" : "getStoppedAt", "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" : "stoppedAt", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "stoppedAt", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Long", "marshallingType" : "LONG", "name" : "StoppedAt", "setterDocumentation" : "/**

                  The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).

                  \n@param stoppedAt The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).*/", "setterMethodName" : "setStoppedAt", "setterModel" : { "variableDeclarationType" : "Long", "variableName" : "stoppedAt", "variableType" : "Long", "documentation" : "", "simpleType" : "Long", "variableSetterType" : "Long" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).

                  \n@param stoppedAt The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Long", "variableName" : "stoppedAt", "variableType" : "Long", "documentation" : "

                  The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).

                  ", "simpleType" : "Long", "variableSetterType" : "Long" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobName", "jobId", "jobQueue", "status", "startedAt", "jobDefinition" ], "shapeName" : "JobDetail", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "JobDetail", "variableName" : "jobDetail", "variableType" : "JobDetail", "documentation" : null, "simpleType" : "JobDetail", "variableSetterType" : "JobDetail" }, "wrapper" : false }, "JobQueueDetail" : { "c2jName" : "JobQueueDetail", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

                  An object representing the details of an AWS Batch job queue.

                  ", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "jobQueueName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job queue.

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

                  The name of the job queue.

                  \n@return The name of the job queue.*/", "getterMethodName" : "getJobQueueName", "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" : "jobQueueName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueueName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueueName", "setterDocumentation" : "/**

                  The name of the job queue.

                  \n@param jobQueueName The name of the job queue.*/", "setterMethodName" : "setJobQueueName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueueName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job queue.

                  \n@param jobQueueName The name of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueueName", "variableType" : "String", "documentation" : "

                  The name of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "jobQueueArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueueArn", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@return The Amazon Resource Name (ARN) of the job queue.*/", "getterMethodName" : "getJobQueueArn", "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" : "jobQueueArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueueArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueueArn", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.*/", "setterMethodName" : "setJobQueueArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueueArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueueArn", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "state", "c2jShape" : "JQState", "deprecated" : false, "documentation" : "

                  Describes the ability of the queue to accept new jobs.

                  ", "enumType" : "JQState", "fluentSetterDocumentation" : "/**

                  Describes the ability of the queue to accept new jobs.

                  \n@param state Describes the ability of the queue to accept new jobs.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JQState*/", "fluentSetterMethodName" : "withState", "getterDocumentation" : "/**

                  Describes the ability of the queue to accept new jobs.

                  \n@return Describes the ability of the queue to accept new jobs.\n@see JQState*/", "getterMethodName" : "getState", "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" : "state", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "state", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "State", "setterDocumentation" : "/**

                  Describes the ability of the queue to accept new jobs.

                  \n@param state Describes the ability of the queue to accept new jobs.\n@see JQState*/", "setterMethodName" : "setState", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  Describes the ability of the queue to accept new jobs.

                  \n@param state Describes the ability of the queue to accept new jobs.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JQState*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "

                  Describes the ability of the queue to accept new jobs.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "status", "c2jShape" : "JQStatus", "deprecated" : false, "documentation" : "

                  The status of the job queue (for example, CREATING or VALID).

                  ", "enumType" : "JQStatus", "fluentSetterDocumentation" : "/**

                  The status of the job queue (for example, CREATING or VALID).

                  \n@param status The status of the job queue (for example, CREATING or VALID).\n@return Returns a reference to this object so that method calls can be chained together.\n@see JQStatus*/", "fluentSetterMethodName" : "withStatus", "getterDocumentation" : "/**

                  The status of the job queue (for example, CREATING or VALID).

                  \n@return The status of the job queue (for example, CREATING or VALID).\n@see JQStatus*/", "getterMethodName" : "getStatus", "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" : "status", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "status", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Status", "setterDocumentation" : "/**

                  The status of the job queue (for example, CREATING or VALID).

                  \n@param status The status of the job queue (for example, CREATING or VALID).\n@see JQStatus*/", "setterMethodName" : "setStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The status of the job queue (for example, CREATING or VALID).

                  \n@param status The status of the job queue (for example, CREATING or VALID).\n@return Returns a reference to this object so that method calls can be chained together.\n@see JQStatus*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "

                  The status of the job queue (for example, CREATING or VALID).

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "statusReason", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  A short, human-readable string to provide additional details about the current status of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A short, human-readable string to provide additional details about the current status of the job queue.

                  \n@param statusReason A short, human-readable string to provide additional details about the current status of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withStatusReason", "getterDocumentation" : "/**

                  A short, human-readable string to provide additional details about the current status of the job queue.

                  \n@return A short, human-readable string to provide additional details about the current status of the job queue.*/", "getterMethodName" : "getStatusReason", "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" : "statusReason", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "statusReason", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "StatusReason", "setterDocumentation" : "/**

                  A short, human-readable string to provide additional details about the current status of the job queue.

                  \n@param statusReason A short, human-readable string to provide additional details about the current status of the job queue.*/", "setterMethodName" : "setStatusReason", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "statusReason", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  A short, human-readable string to provide additional details about the current status of the job queue.

                  \n@param statusReason A short, human-readable string to provide additional details about the current status of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "statusReason", "variableType" : "String", "documentation" : "

                  A short, human-readable string to provide additional details about the current status of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "priority", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The priority of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The priority of the job queue.

                  \n@param priority The priority of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withPriority", "getterDocumentation" : "/**

                  The priority of the job queue.

                  \n@return The priority of the job queue.*/", "getterMethodName" : "getPriority", "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" : "priority", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "priority", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Priority", "setterDocumentation" : "/**

                  The priority of the job queue.

                  \n@param priority The priority of the job queue.*/", "setterMethodName" : "setPriority", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "priority", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The priority of the job queue.

                  \n@param priority The priority of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "priority", "variableType" : "Integer", "documentation" : "

                  The priority of the job queue.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "computeEnvironmentOrder", "c2jShape" : "ComputeEnvironmentOrders", "deprecated" : false, "documentation" : "

                  The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.

                  \n@param computeEnvironmentOrder The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironmentOrder", "getterDocumentation" : "/**

                  The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.

                  \n@return The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.*/", "getterMethodName" : "getComputeEnvironmentOrder", "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" : "computeEnvironmentOrder", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentOrder", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "ComputeEnvironmentOrder", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "ComputeEnvironmentOrder", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ComputeEnvironmentOrder", "variableName" : "member", "variableType" : "ComputeEnvironmentOrder", "documentation" : "", "simpleType" : "ComputeEnvironmentOrder", "variableSetterType" : "ComputeEnvironmentOrder" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ComputeEnvironmentOrder", "variableName" : "member", "variableType" : "ComputeEnvironmentOrder", "documentation" : "", "simpleType" : "ComputeEnvironmentOrder", "variableSetterType" : "ComputeEnvironmentOrder" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ComputeEnvironmentOrder", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "ComputeEnvironmentOrder", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "ComputeEnvironmentOrder", "setterDocumentation" : "/**

                  The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.

                  \n@param computeEnvironmentOrder The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.*/", "setterMethodName" : "setComputeEnvironmentOrder", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironmentOrder", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setComputeEnvironmentOrder(java.util.Collection)} or {@link #withComputeEnvironmentOrder(java.util.Collection)} if you want to override the existing values.

                  \n@param computeEnvironmentOrder The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironmentOrder", "variableType" : "java.util.List", "documentation" : "

                  The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ComputeEnvironmentOrder" : { "c2jName" : "computeEnvironmentOrder", "c2jShape" : "ComputeEnvironmentOrders", "deprecated" : false, "documentation" : "

                  The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.

                  \n@param computeEnvironmentOrder The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironmentOrder", "getterDocumentation" : "/**

                  The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.

                  \n@return The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.*/", "getterMethodName" : "getComputeEnvironmentOrder", "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" : "computeEnvironmentOrder", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentOrder", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "ComputeEnvironmentOrder", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "ComputeEnvironmentOrder", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ComputeEnvironmentOrder", "variableName" : "member", "variableType" : "ComputeEnvironmentOrder", "documentation" : "", "simpleType" : "ComputeEnvironmentOrder", "variableSetterType" : "ComputeEnvironmentOrder" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ComputeEnvironmentOrder", "variableName" : "member", "variableType" : "ComputeEnvironmentOrder", "documentation" : "", "simpleType" : "ComputeEnvironmentOrder", "variableSetterType" : "ComputeEnvironmentOrder" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ComputeEnvironmentOrder", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "ComputeEnvironmentOrder", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "ComputeEnvironmentOrder", "setterDocumentation" : "/**

                  The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.

                  \n@param computeEnvironmentOrder The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.*/", "setterMethodName" : "setComputeEnvironmentOrder", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironmentOrder", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setComputeEnvironmentOrder(java.util.Collection)} or {@link #withComputeEnvironmentOrder(java.util.Collection)} if you want to override the existing values.

                  \n@param computeEnvironmentOrder The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironmentOrder", "variableType" : "java.util.List", "documentation" : "

                  The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "JobQueueArn" : { "c2jName" : "jobQueueArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueueArn", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@return The Amazon Resource Name (ARN) of the job queue.*/", "getterMethodName" : "getJobQueueArn", "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" : "jobQueueArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueueArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueueArn", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.*/", "setterMethodName" : "setJobQueueArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueueArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueueArn", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "JobQueueName" : { "c2jName" : "jobQueueName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job queue.

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

                  The name of the job queue.

                  \n@return The name of the job queue.*/", "getterMethodName" : "getJobQueueName", "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" : "jobQueueName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueueName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueueName", "setterDocumentation" : "/**

                  The name of the job queue.

                  \n@param jobQueueName The name of the job queue.*/", "setterMethodName" : "setJobQueueName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueueName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job queue.

                  \n@param jobQueueName The name of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueueName", "variableType" : "String", "documentation" : "

                  The name of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Priority" : { "c2jName" : "priority", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The priority of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The priority of the job queue.

                  \n@param priority The priority of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withPriority", "getterDocumentation" : "/**

                  The priority of the job queue.

                  \n@return The priority of the job queue.*/", "getterMethodName" : "getPriority", "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" : "priority", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "priority", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Priority", "setterDocumentation" : "/**

                  The priority of the job queue.

                  \n@param priority The priority of the job queue.*/", "setterMethodName" : "setPriority", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "priority", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The priority of the job queue.

                  \n@param priority The priority of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "priority", "variableType" : "Integer", "documentation" : "

                  The priority of the job queue.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "State" : { "c2jName" : "state", "c2jShape" : "JQState", "deprecated" : false, "documentation" : "

                  Describes the ability of the queue to accept new jobs.

                  ", "enumType" : "JQState", "fluentSetterDocumentation" : "/**

                  Describes the ability of the queue to accept new jobs.

                  \n@param state Describes the ability of the queue to accept new jobs.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JQState*/", "fluentSetterMethodName" : "withState", "getterDocumentation" : "/**

                  Describes the ability of the queue to accept new jobs.

                  \n@return Describes the ability of the queue to accept new jobs.\n@see JQState*/", "getterMethodName" : "getState", "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" : "state", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "state", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "State", "setterDocumentation" : "/**

                  Describes the ability of the queue to accept new jobs.

                  \n@param state Describes the ability of the queue to accept new jobs.\n@see JQState*/", "setterMethodName" : "setState", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  Describes the ability of the queue to accept new jobs.

                  \n@param state Describes the ability of the queue to accept new jobs.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JQState*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "

                  Describes the ability of the queue to accept new jobs.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Status" : { "c2jName" : "status", "c2jShape" : "JQStatus", "deprecated" : false, "documentation" : "

                  The status of the job queue (for example, CREATING or VALID).

                  ", "enumType" : "JQStatus", "fluentSetterDocumentation" : "/**

                  The status of the job queue (for example, CREATING or VALID).

                  \n@param status The status of the job queue (for example, CREATING or VALID).\n@return Returns a reference to this object so that method calls can be chained together.\n@see JQStatus*/", "fluentSetterMethodName" : "withStatus", "getterDocumentation" : "/**

                  The status of the job queue (for example, CREATING or VALID).

                  \n@return The status of the job queue (for example, CREATING or VALID).\n@see JQStatus*/", "getterMethodName" : "getStatus", "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" : "status", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "status", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Status", "setterDocumentation" : "/**

                  The status of the job queue (for example, CREATING or VALID).

                  \n@param status The status of the job queue (for example, CREATING or VALID).\n@see JQStatus*/", "setterMethodName" : "setStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The status of the job queue (for example, CREATING or VALID).

                  \n@param status The status of the job queue (for example, CREATING or VALID).\n@return Returns a reference to this object so that method calls can be chained together.\n@see JQStatus*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "status", "variableType" : "String", "documentation" : "

                  The status of the job queue (for example, CREATING or VALID).

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "StatusReason" : { "c2jName" : "statusReason", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  A short, human-readable string to provide additional details about the current status of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A short, human-readable string to provide additional details about the current status of the job queue.

                  \n@param statusReason A short, human-readable string to provide additional details about the current status of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withStatusReason", "getterDocumentation" : "/**

                  A short, human-readable string to provide additional details about the current status of the job queue.

                  \n@return A short, human-readable string to provide additional details about the current status of the job queue.*/", "getterMethodName" : "getStatusReason", "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" : "statusReason", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "statusReason", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "StatusReason", "setterDocumentation" : "/**

                  A short, human-readable string to provide additional details about the current status of the job queue.

                  \n@param statusReason A short, human-readable string to provide additional details about the current status of the job queue.*/", "setterMethodName" : "setStatusReason", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "statusReason", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  A short, human-readable string to provide additional details about the current status of the job queue.

                  \n@param statusReason A short, human-readable string to provide additional details about the current status of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "statusReason", "variableType" : "String", "documentation" : "

                  A short, human-readable string to provide additional details about the current status of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobQueueName", "jobQueueArn", "state", "priority", "computeEnvironmentOrder" ], "shapeName" : "JobQueueDetail", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "JobQueueDetail", "variableName" : "jobQueueDetail", "variableType" : "JobQueueDetail", "documentation" : null, "simpleType" : "JobQueueDetail", "variableSetterType" : "JobQueueDetail" }, "wrapper" : false }, "JobStatus" : { "c2jName" : "JobStatus", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : [ { "name" : "SUBMITTED", "value" : "SUBMITTED" }, { "name" : "PENDING", "value" : "PENDING" }, { "name" : "RUNNABLE", "value" : "RUNNABLE" }, { "name" : "STARTING", "value" : "STARTING" }, { "name" : "RUNNING", "value" : "RUNNING" }, { "name" : "SUCCEEDED", "value" : "SUCCEEDED" }, { "name" : "FAILED", "value" : "FAILED" } ], "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : null, "membersAsMap" : { }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "JobStatus", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "JobStatus", "variableName" : "jobStatus", "variableType" : "JobStatus", "documentation" : null, "simpleType" : "JobStatus", "variableSetterType" : "JobStatus" }, "wrapper" : false }, "JobSummary" : { "c2jName" : "JobSummary", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

                  An object representing summary details of a job.

                  ", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "jobId", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The ID of the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The ID of the job.

                  \n@param jobId The ID of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobId", "getterDocumentation" : "/**

                  The ID of the job.

                  \n@return The ID of the job.*/", "getterMethodName" : "getJobId", "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" : "jobId", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobId", "setterDocumentation" : "/**

                  The ID of the job.

                  \n@param jobId The ID of the job.*/", "setterMethodName" : "setJobId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The ID of the job.

                  \n@param jobId The ID of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "

                  The ID of the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "jobName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job.

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

                  The name of the job.

                  \n@return The name of the job.*/", "getterMethodName" : "getJobName", "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" : "jobName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobName", "setterDocumentation" : "/**

                  The name of the job.

                  \n@param jobName The name of the job.*/", "setterMethodName" : "setJobName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job.

                  \n@param jobName The name of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobName", "variableType" : "String", "documentation" : "

                  The name of the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "JobId" : { "c2jName" : "jobId", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The ID of the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The ID of the job.

                  \n@param jobId The ID of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobId", "getterDocumentation" : "/**

                  The ID of the job.

                  \n@return The ID of the job.*/", "getterMethodName" : "getJobId", "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" : "jobId", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobId", "setterDocumentation" : "/**

                  The ID of the job.

                  \n@param jobId The ID of the job.*/", "setterMethodName" : "setJobId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The ID of the job.

                  \n@param jobId The ID of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "

                  The ID of the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "JobName" : { "c2jName" : "jobName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job.

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

                  The name of the job.

                  \n@return The name of the job.*/", "getterMethodName" : "getJobName", "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" : "jobName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobName", "setterDocumentation" : "/**

                  The name of the job.

                  \n@param jobName The name of the job.*/", "setterMethodName" : "setJobName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job.

                  \n@param jobName The name of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobName", "variableType" : "String", "documentation" : "

                  The name of the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobId", "jobName" ], "shapeName" : "JobSummary", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "JobSummary", "variableName" : "jobSummary", "variableType" : "JobSummary", "documentation" : null, "simpleType" : "JobSummary", "variableSetterType" : "JobSummary" }, "wrapper" : false }, "KeyValuePair" : { "c2jName" : "KeyValuePair", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

                  A key-value pair object.

                  ", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "name", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the key value pair. For environment variables, this is the name of the environment variable.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the key value pair. For environment variables, this is the name of the environment variable.

                  \n@param name The name of the key value pair. For environment variables, this is the name of the environment variable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withName", "getterDocumentation" : "/**

                  The name of the key value pair. For environment variables, this is the name of the environment variable.

                  \n@return The name of the key value pair. For environment variables, this is the name of the environment variable.*/", "getterMethodName" : "getName", "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, "statusCode" : false, "unmarshallLocationName" : "name", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Name", "setterDocumentation" : "/**

                  The name of the key value pair. For environment variables, this is the name of the environment variable.

                  \n@param name The name of the key value pair. For environment variables, this is the name of the environment variable.*/", "setterMethodName" : "setName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the key value pair. For environment variables, this is the name of the environment variable.

                  \n@param name The name of the key value pair. For environment variables, this is the name of the environment variable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "

                  The name of the key value pair. For environment variables, this is the name of the environment variable.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "value", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The value of the key value pair. For environment variables, this is the value of the environment variable.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The value of the key value pair. For environment variables, this is the value of the environment variable.

                  \n@param value The value of the key value pair. For environment variables, this is the value of the environment variable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withValue", "getterDocumentation" : "/**

                  The value of the key value pair. For environment variables, this is the value of the environment variable.

                  \n@return The value of the key value pair. For environment variables, this is the value of the environment variable.*/", "getterMethodName" : "getValue", "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" : "value", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "value", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Value", "setterDocumentation" : "/**

                  The value of the key value pair. For environment variables, this is the value of the environment variable.

                  \n@param value The value of the key value pair. For environment variables, this is the value of the environment variable.*/", "setterMethodName" : "setValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The value of the key value pair. For environment variables, this is the value of the environment variable.

                  \n@param value The value of the key value pair. For environment variables, this is the value of the environment variable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "

                  The value of the key value pair. For environment variables, this is the value of the environment variable.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "Name" : { "c2jName" : "name", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the key value pair. For environment variables, this is the name of the environment variable.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the key value pair. For environment variables, this is the name of the environment variable.

                  \n@param name The name of the key value pair. For environment variables, this is the name of the environment variable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withName", "getterDocumentation" : "/**

                  The name of the key value pair. For environment variables, this is the name of the environment variable.

                  \n@return The name of the key value pair. For environment variables, this is the name of the environment variable.*/", "getterMethodName" : "getName", "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, "statusCode" : false, "unmarshallLocationName" : "name", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Name", "setterDocumentation" : "/**

                  The name of the key value pair. For environment variables, this is the name of the environment variable.

                  \n@param name The name of the key value pair. For environment variables, this is the name of the environment variable.*/", "setterMethodName" : "setName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the key value pair. For environment variables, this is the name of the environment variable.

                  \n@param name The name of the key value pair. For environment variables, this is the name of the environment variable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "

                  The name of the key value pair. For environment variables, this is the name of the environment variable.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Value" : { "c2jName" : "value", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The value of the key value pair. For environment variables, this is the value of the environment variable.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The value of the key value pair. For environment variables, this is the value of the environment variable.

                  \n@param value The value of the key value pair. For environment variables, this is the value of the environment variable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withValue", "getterDocumentation" : "/**

                  The value of the key value pair. For environment variables, this is the value of the environment variable.

                  \n@return The value of the key value pair. For environment variables, this is the value of the environment variable.*/", "getterMethodName" : "getValue", "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" : "value", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "value", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Value", "setterDocumentation" : "/**

                  The value of the key value pair. For environment variables, this is the value of the environment variable.

                  \n@param value The value of the key value pair. For environment variables, this is the value of the environment variable.*/", "setterMethodName" : "setValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The value of the key value pair. For environment variables, this is the value of the environment variable.

                  \n@param value The value of the key value pair. For environment variables, this is the value of the environment variable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "

                  The value of the key value pair. For environment variables, this is the value of the environment variable.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "KeyValuePair", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "KeyValuePair", "variableName" : "keyValuePair", "variableType" : "KeyValuePair", "documentation" : null, "simpleType" : "KeyValuePair", "variableSetterType" : "KeyValuePair" }, "wrapper" : false }, "ListJobsRequest" : { "c2jName" : "ListJobsRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : { "action" : "ListJobs", "locationName" : null, "requestUri" : "/v1/listjobs", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "c2jName" : "jobQueue", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.

                  \n@param jobQueue The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueue", "getterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.

                  \n@return The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.*/", "getterMethodName" : "getJobQueue", "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" : "jobQueue", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueue", "setterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.

                  \n@param jobQueue The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.*/", "setterMethodName" : "setJobQueue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.

                  \n@param jobQueue The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "

                  The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "jobStatus", "c2jShape" : "JobStatus", "deprecated" : false, "documentation" : "

                  The job status with which to filter jobs in the specified queue.

                  ", "enumType" : "JobStatus", "fluentSetterDocumentation" : "/**

                  The job status with which to filter jobs in the specified queue.

                  \n@param jobStatus The job status with which to filter jobs in the specified queue.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JobStatus*/", "fluentSetterMethodName" : "withJobStatus", "getterDocumentation" : "/**

                  The job status with which to filter jobs in the specified queue.

                  \n@return The job status with which to filter jobs in the specified queue.\n@see JobStatus*/", "getterMethodName" : "getJobStatus", "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" : "jobStatus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobStatus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobStatus", "setterDocumentation" : "/**

                  The job status with which to filter jobs in the specified queue.

                  \n@param jobStatus The job status with which to filter jobs in the specified queue.\n@see JobStatus*/", "setterMethodName" : "setJobStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobStatus", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The job status with which to filter jobs in the specified queue.

                  \n@param jobStatus The job status with which to filter jobs in the specified queue.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JobStatus*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobStatus", "variableType" : "String", "documentation" : "

                  The job status with which to filter jobs in the specified queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "maxResults", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMaxResults", "getterDocumentation" : "/**

                  The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.

                  \n@return The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.*/", "getterMethodName" : "getMaxResults", "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" : "maxResults", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "maxResults", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "MaxResults", "setterDocumentation" : "/**

                  The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.*/", "setterMethodName" : "setMaxResults", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "maxResults", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "maxResults", "variableType" : "Integer", "documentation" : "

                  The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "nextToken", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withNextToken", "getterDocumentation" : "/**

                  The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  */", "getterMethodName" : "getNextToken", "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" : "nextToken", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "nextToken", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "NextToken", "setterDocumentation" : "/**

                  The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  */", "setterMethodName" : "setNextToken", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "

                  The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "JobQueue" : { "c2jName" : "jobQueue", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.

                  \n@param jobQueue The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueue", "getterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.

                  \n@return The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.*/", "getterMethodName" : "getJobQueue", "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" : "jobQueue", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueue", "setterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.

                  \n@param jobQueue The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.*/", "setterMethodName" : "setJobQueue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.

                  \n@param jobQueue The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "

                  The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "JobStatus" : { "c2jName" : "jobStatus", "c2jShape" : "JobStatus", "deprecated" : false, "documentation" : "

                  The job status with which to filter jobs in the specified queue.

                  ", "enumType" : "JobStatus", "fluentSetterDocumentation" : "/**

                  The job status with which to filter jobs in the specified queue.

                  \n@param jobStatus The job status with which to filter jobs in the specified queue.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JobStatus*/", "fluentSetterMethodName" : "withJobStatus", "getterDocumentation" : "/**

                  The job status with which to filter jobs in the specified queue.

                  \n@return The job status with which to filter jobs in the specified queue.\n@see JobStatus*/", "getterMethodName" : "getJobStatus", "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" : "jobStatus", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobStatus", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobStatus", "setterDocumentation" : "/**

                  The job status with which to filter jobs in the specified queue.

                  \n@param jobStatus The job status with which to filter jobs in the specified queue.\n@see JobStatus*/", "setterMethodName" : "setJobStatus", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobStatus", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The job status with which to filter jobs in the specified queue.

                  \n@param jobStatus The job status with which to filter jobs in the specified queue.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JobStatus*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobStatus", "variableType" : "String", "documentation" : "

                  The job status with which to filter jobs in the specified queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "MaxResults" : { "c2jName" : "maxResults", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMaxResults", "getterDocumentation" : "/**

                  The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.

                  \n@return The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.*/", "getterMethodName" : "getMaxResults", "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" : "maxResults", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "maxResults", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "MaxResults", "setterDocumentation" : "/**

                  The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.*/", "setterMethodName" : "setMaxResults", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "maxResults", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.

                  \n@param maxResults The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "maxResults", "variableType" : "Integer", "documentation" : "

                  The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "NextToken" : { "c2jName" : "nextToken", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withNextToken", "getterDocumentation" : "/**

                  The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  */", "getterMethodName" : "getNextToken", "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" : "nextToken", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "nextToken", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "NextToken", "setterDocumentation" : "/**

                  The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  */", "setterMethodName" : "setNextToken", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@param nextToken The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "

                  The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

                  This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobQueue" ], "shapeName" : "ListJobsRequest", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "ListJobsRequest", "variableName" : "listJobsRequest", "variableType" : "ListJobsRequest", "documentation" : null, "simpleType" : "ListJobsRequest", "variableSetterType" : "ListJobsRequest" }, "wrapper" : false }, "ListJobsResult" : { "c2jName" : "ListJobsResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "jobSummaryList", "c2jShape" : "JobSummaryList", "deprecated" : false, "documentation" : "

                  A list of job summaries that match the request.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A list of job summaries that match the request.

                  \n@param jobSummaryList A list of job summaries that match the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobSummaryList", "getterDocumentation" : "/**

                  A list of job summaries that match the request.

                  \n@return A list of job summaries that match the request.*/", "getterMethodName" : "getJobSummaryList", "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" : "jobSummaryList", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobSummaryList", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "JobSummary", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "JobSummary", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "JobSummary", "variableName" : "member", "variableType" : "JobSummary", "documentation" : "", "simpleType" : "JobSummary", "variableSetterType" : "JobSummary" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "JobSummary", "variableName" : "member", "variableType" : "JobSummary", "documentation" : "", "simpleType" : "JobSummary", "variableSetterType" : "JobSummary" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "JobSummary", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "JobSummary", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "JobSummaryList", "setterDocumentation" : "/**

                  A list of job summaries that match the request.

                  \n@param jobSummaryList A list of job summaries that match the request.*/", "setterMethodName" : "setJobSummaryList", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobSummaryList", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A list of job summaries that match the request.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setJobSummaryList(java.util.Collection)} or {@link #withJobSummaryList(java.util.Collection)} if you want to override the existing values.

                  \n@param jobSummaryList A list of job summaries that match the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobSummaryList", "variableType" : "java.util.List", "documentation" : "

                  A list of job summaries that match the request.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "nextToken", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withNextToken", "getterDocumentation" : "/**

                  The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@return The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.*/", "getterMethodName" : "getNextToken", "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" : "nextToken", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "nextToken", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "NextToken", "setterDocumentation" : "/**

                  The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.*/", "setterMethodName" : "setNextToken", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "

                  The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "JobSummaryList" : { "c2jName" : "jobSummaryList", "c2jShape" : "JobSummaryList", "deprecated" : false, "documentation" : "

                  A list of job summaries that match the request.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A list of job summaries that match the request.

                  \n@param jobSummaryList A list of job summaries that match the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobSummaryList", "getterDocumentation" : "/**

                  A list of job summaries that match the request.

                  \n@return A list of job summaries that match the request.*/", "getterMethodName" : "getJobSummaryList", "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" : "jobSummaryList", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobSummaryList", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "JobSummary", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "JobSummary", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "JobSummary", "variableName" : "member", "variableType" : "JobSummary", "documentation" : "", "simpleType" : "JobSummary", "variableSetterType" : "JobSummary" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "JobSummary", "variableName" : "member", "variableType" : "JobSummary", "documentation" : "", "simpleType" : "JobSummary", "variableSetterType" : "JobSummary" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "JobSummary", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "JobSummary", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "JobSummaryList", "setterDocumentation" : "/**

                  A list of job summaries that match the request.

                  \n@param jobSummaryList A list of job summaries that match the request.*/", "setterMethodName" : "setJobSummaryList", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobSummaryList", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A list of job summaries that match the request.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setJobSummaryList(java.util.Collection)} or {@link #withJobSummaryList(java.util.Collection)} if you want to override the existing values.

                  \n@param jobSummaryList A list of job summaries that match the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "jobSummaryList", "variableType" : "java.util.List", "documentation" : "

                  A list of job summaries that match the request.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "NextToken" : { "c2jName" : "nextToken", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withNextToken", "getterDocumentation" : "/**

                  The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@return The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.*/", "getterMethodName" : "getNextToken", "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" : "nextToken", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "nextToken", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "NextToken", "setterDocumentation" : "/**

                  The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.*/", "setterMethodName" : "setNextToken", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  \n@param nextToken The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "nextToken", "variableType" : "String", "documentation" : "

                  The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobSummaryList" ], "shapeName" : "ListJobsResult", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "ListJobsResult", "variableName" : "listJobsResult", "variableType" : "ListJobsResult", "documentation" : null, "simpleType" : "ListJobsResult", "variableSetterType" : "ListJobsResult" }, "wrapper" : false }, "MountPoint" : { "c2jName" : "MountPoint", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

                  Details on a volume mount point that is used in a job's container properties.

                  ", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "containerPath", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The path on the container at which to mount the host volume.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The path on the container at which to mount the host volume.

                  \n@param containerPath The path on the container at which to mount the host volume.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withContainerPath", "getterDocumentation" : "/**

                  The path on the container at which to mount the host volume.

                  \n@return The path on the container at which to mount the host volume.*/", "getterMethodName" : "getContainerPath", "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" : "containerPath", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "containerPath", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ContainerPath", "setterDocumentation" : "/**

                  The path on the container at which to mount the host volume.

                  \n@param containerPath The path on the container at which to mount the host volume.*/", "setterMethodName" : "setContainerPath", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "containerPath", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The path on the container at which to mount the host volume.

                  \n@param containerPath The path on the container at which to mount the host volume.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "containerPath", "variableType" : "String", "documentation" : "

                  The path on the container at which to mount the host volume.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "readOnly", "c2jShape" : "Boolean", "deprecated" : false, "documentation" : "

                  If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.

                  \n@param readOnly If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withReadOnly", "getterDocumentation" : "/**

                  If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.

                  \n@return If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.*/", "getterMethodName" : "getReadOnly", "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" : "readOnly", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "readOnly", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Boolean", "marshallingType" : "BOOLEAN", "name" : "ReadOnly", "setterDocumentation" : "/**

                  If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.

                  \n@param readOnly If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.*/", "setterMethodName" : "setReadOnly", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "readOnly", "variableType" : "Boolean", "documentation" : "", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "varargSetterDocumentation" : "/**

                  If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.

                  \n@param readOnly If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "readOnly", "variableType" : "Boolean", "documentation" : "

                  If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.

                  ", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlNameSpaceUri" : null }, { "c2jName" : "sourceVolume", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the volume to mount.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the volume to mount.

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

                  The name of the volume to mount.

                  \n@return The name of the volume to mount.*/", "getterMethodName" : "getSourceVolume", "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" : "sourceVolume", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "sourceVolume", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "SourceVolume", "setterDocumentation" : "/**

                  The name of the volume to mount.

                  \n@param sourceVolume The name of the volume to mount.*/", "setterMethodName" : "setSourceVolume", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "sourceVolume", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the volume to mount.

                  \n@param sourceVolume The name of the volume to mount.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "sourceVolume", "variableType" : "String", "documentation" : "

                  The name of the volume to mount.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ContainerPath" : { "c2jName" : "containerPath", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The path on the container at which to mount the host volume.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The path on the container at which to mount the host volume.

                  \n@param containerPath The path on the container at which to mount the host volume.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withContainerPath", "getterDocumentation" : "/**

                  The path on the container at which to mount the host volume.

                  \n@return The path on the container at which to mount the host volume.*/", "getterMethodName" : "getContainerPath", "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" : "containerPath", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "containerPath", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ContainerPath", "setterDocumentation" : "/**

                  The path on the container at which to mount the host volume.

                  \n@param containerPath The path on the container at which to mount the host volume.*/", "setterMethodName" : "setContainerPath", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "containerPath", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The path on the container at which to mount the host volume.

                  \n@param containerPath The path on the container at which to mount the host volume.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "containerPath", "variableType" : "String", "documentation" : "

                  The path on the container at which to mount the host volume.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "ReadOnly" : { "c2jName" : "readOnly", "c2jShape" : "Boolean", "deprecated" : false, "documentation" : "

                  If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.

                  \n@param readOnly If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withReadOnly", "getterDocumentation" : "/**

                  If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.

                  \n@return If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.*/", "getterMethodName" : "getReadOnly", "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" : "readOnly", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "readOnly", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Boolean", "marshallingType" : "BOOLEAN", "name" : "ReadOnly", "setterDocumentation" : "/**

                  If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.

                  \n@param readOnly If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.*/", "setterMethodName" : "setReadOnly", "setterModel" : { "variableDeclarationType" : "Boolean", "variableName" : "readOnly", "variableType" : "Boolean", "documentation" : "", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "simple" : true, "varargSetterDocumentation" : "/**

                  If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.

                  \n@param readOnly If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Boolean", "variableName" : "readOnly", "variableType" : "Boolean", "documentation" : "

                  If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.

                  ", "simpleType" : "Boolean", "variableSetterType" : "Boolean" }, "xmlNameSpaceUri" : null }, "SourceVolume" : { "c2jName" : "sourceVolume", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the volume to mount.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the volume to mount.

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

                  The name of the volume to mount.

                  \n@return The name of the volume to mount.*/", "getterMethodName" : "getSourceVolume", "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" : "sourceVolume", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "sourceVolume", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "SourceVolume", "setterDocumentation" : "/**

                  The name of the volume to mount.

                  \n@param sourceVolume The name of the volume to mount.*/", "setterMethodName" : "setSourceVolume", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "sourceVolume", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the volume to mount.

                  \n@param sourceVolume The name of the volume to mount.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "sourceVolume", "variableType" : "String", "documentation" : "

                  The name of the volume to mount.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "MountPoint", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "MountPoint", "variableName" : "mountPoint", "variableType" : "MountPoint", "documentation" : null, "simpleType" : "MountPoint", "variableSetterType" : "MountPoint" }, "wrapper" : false }, "RegisterJobDefinitionRequest" : { "c2jName" : "RegisterJobDefinitionRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : { "action" : "RegisterJobDefinition", "locationName" : null, "requestUri" : "/v1/registerjobdefinition", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "c2jName" : "jobDefinitionName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job definition to register.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job definition to register.

                  \n@param jobDefinitionName The name of the job definition to register.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinitionName", "getterDocumentation" : "/**

                  The name of the job definition to register.

                  \n@return The name of the job definition to register.*/", "getterMethodName" : "getJobDefinitionName", "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" : "jobDefinitionName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinitionName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinitionName", "setterDocumentation" : "/**

                  The name of the job definition to register.

                  \n@param jobDefinitionName The name of the job definition to register.*/", "setterMethodName" : "setJobDefinitionName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job definition to register.

                  \n@param jobDefinitionName The name of the job definition to register.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionName", "variableType" : "String", "documentation" : "

                  The name of the job definition to register.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "type", "c2jShape" : "JobDefinitionType", "deprecated" : false, "documentation" : "

                  The type of job definition.

                  ", "enumType" : "JobDefinitionType", "fluentSetterDocumentation" : "/**

                  The type of job definition.

                  \n@param type The type of job definition.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JobDefinitionType*/", "fluentSetterMethodName" : "withType", "getterDocumentation" : "/**

                  The type of job definition.

                  \n@return The type of job definition.\n@see JobDefinitionType*/", "getterMethodName" : "getType", "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" : "type", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "type", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Type", "setterDocumentation" : "/**

                  The type of job definition.

                  \n@param type The type of job definition.\n@see JobDefinitionType*/", "setterMethodName" : "setType", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The type of job definition.

                  \n@param type The type of job definition.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JobDefinitionType*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "

                  The type of job definition.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "parameters", "c2jShape" : "ParametersMap", "deprecated" : false, "documentation" : "

                  Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withParameters", "getterDocumentation" : "/**

                  Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@return Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.*/", "getterMethodName" : "getParameters", "getterModel" : { "returnType" : "java.util.Map", "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, "statusCode" : false, "unmarshallLocationName" : "parameters", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : true, "mapModel" : { "implType" : "java.util.HashMap", "interfaceType" : "java.util.Map", "keyLocationName" : "key", "keyModel" : null, "keyType" : "String", "valueLocationName" : "value", "valueModel" : { "c2jName" : "value", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withValue", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getValue", "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" : "value", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "value", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Value", "setterDocumentation" : "/**\n@param value */", "setterMethodName" : "setValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "valueType" : "String", "entryType" : "Map.Entry", "keySimple" : true, "templateImplType" : "java.util.HashMap", "templateType" : "java.util.Map", "valueList" : false, "valueSimple" : true }, "marshallingTargetClass" : "Map", "marshallingType" : "MAP", "name" : "Parameters", "setterDocumentation" : "/**

                  Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.*/", "setterMethodName" : "setParameters", "setterModel" : { "variableDeclarationType" : "java.util.Map", "variableName" : "parameters", "variableType" : "java.util.Map", "documentation" : "", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "simple" : false, "varargSetterDocumentation" : "/**

                  Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.Map", "variableName" : "parameters", "variableType" : "java.util.Map", "documentation" : "

                  Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  ", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "xmlNameSpaceUri" : null }, { "c2jName" : "containerProperties", "c2jShape" : "ContainerProperties", "deprecated" : false, "documentation" : "

                  An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.

                  \n@param containerProperties An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withContainerProperties", "getterDocumentation" : "/**

                  An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.

                  \n@return An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.*/", "getterMethodName" : "getContainerProperties", "getterModel" : { "returnType" : "ContainerProperties", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "containerProperties", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "containerProperties", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "ContainerProperties", "setterDocumentation" : "/**

                  An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.

                  \n@param containerProperties An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.*/", "setterMethodName" : "setContainerProperties", "setterModel" : { "variableDeclarationType" : "ContainerProperties", "variableName" : "containerProperties", "variableType" : "ContainerProperties", "documentation" : "", "simpleType" : "ContainerProperties", "variableSetterType" : "ContainerProperties" }, "simple" : false, "varargSetterDocumentation" : "/**

                  An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.

                  \n@param containerProperties An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ContainerProperties", "variableName" : "containerProperties", "variableType" : "ContainerProperties", "documentation" : "

                  An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.

                  ", "simpleType" : "ContainerProperties", "variableSetterType" : "ContainerProperties" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ContainerProperties" : { "c2jName" : "containerProperties", "c2jShape" : "ContainerProperties", "deprecated" : false, "documentation" : "

                  An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.

                  \n@param containerProperties An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withContainerProperties", "getterDocumentation" : "/**

                  An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.

                  \n@return An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.*/", "getterMethodName" : "getContainerProperties", "getterModel" : { "returnType" : "ContainerProperties", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "containerProperties", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "containerProperties", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "ContainerProperties", "setterDocumentation" : "/**

                  An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.

                  \n@param containerProperties An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.*/", "setterMethodName" : "setContainerProperties", "setterModel" : { "variableDeclarationType" : "ContainerProperties", "variableName" : "containerProperties", "variableType" : "ContainerProperties", "documentation" : "", "simpleType" : "ContainerProperties", "variableSetterType" : "ContainerProperties" }, "simple" : false, "varargSetterDocumentation" : "/**

                  An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.

                  \n@param containerProperties An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ContainerProperties", "variableName" : "containerProperties", "variableType" : "ContainerProperties", "documentation" : "

                  An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.

                  ", "simpleType" : "ContainerProperties", "variableSetterType" : "ContainerProperties" }, "xmlNameSpaceUri" : null }, "JobDefinitionName" : { "c2jName" : "jobDefinitionName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job definition to register.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job definition to register.

                  \n@param jobDefinitionName The name of the job definition to register.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinitionName", "getterDocumentation" : "/**

                  The name of the job definition to register.

                  \n@return The name of the job definition to register.*/", "getterMethodName" : "getJobDefinitionName", "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" : "jobDefinitionName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinitionName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinitionName", "setterDocumentation" : "/**

                  The name of the job definition to register.

                  \n@param jobDefinitionName The name of the job definition to register.*/", "setterMethodName" : "setJobDefinitionName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job definition to register.

                  \n@param jobDefinitionName The name of the job definition to register.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionName", "variableType" : "String", "documentation" : "

                  The name of the job definition to register.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Parameters" : { "c2jName" : "parameters", "c2jShape" : "ParametersMap", "deprecated" : false, "documentation" : "

                  Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withParameters", "getterDocumentation" : "/**

                  Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@return Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.*/", "getterMethodName" : "getParameters", "getterModel" : { "returnType" : "java.util.Map", "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, "statusCode" : false, "unmarshallLocationName" : "parameters", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : true, "mapModel" : { "implType" : "java.util.HashMap", "interfaceType" : "java.util.Map", "keyLocationName" : "key", "keyModel" : null, "keyType" : "String", "valueLocationName" : "value", "valueModel" : { "c2jName" : "value", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withValue", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getValue", "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" : "value", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "value", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Value", "setterDocumentation" : "/**\n@param value */", "setterMethodName" : "setValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "valueType" : "String", "entryType" : "Map.Entry", "keySimple" : true, "templateImplType" : "java.util.HashMap", "templateType" : "java.util.Map", "valueList" : false, "valueSimple" : true }, "marshallingTargetClass" : "Map", "marshallingType" : "MAP", "name" : "Parameters", "setterDocumentation" : "/**

                  Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.*/", "setterMethodName" : "setParameters", "setterModel" : { "variableDeclarationType" : "java.util.Map", "variableName" : "parameters", "variableType" : "java.util.Map", "documentation" : "", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "simple" : false, "varargSetterDocumentation" : "/**

                  Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.Map", "variableName" : "parameters", "variableType" : "java.util.Map", "documentation" : "

                  Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  ", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "xmlNameSpaceUri" : null }, "Type" : { "c2jName" : "type", "c2jShape" : "JobDefinitionType", "deprecated" : false, "documentation" : "

                  The type of job definition.

                  ", "enumType" : "JobDefinitionType", "fluentSetterDocumentation" : "/**

                  The type of job definition.

                  \n@param type The type of job definition.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JobDefinitionType*/", "fluentSetterMethodName" : "withType", "getterDocumentation" : "/**

                  The type of job definition.

                  \n@return The type of job definition.\n@see JobDefinitionType*/", "getterMethodName" : "getType", "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" : "type", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "type", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Type", "setterDocumentation" : "/**

                  The type of job definition.

                  \n@param type The type of job definition.\n@see JobDefinitionType*/", "setterMethodName" : "setType", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The type of job definition.

                  \n@param type The type of job definition.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JobDefinitionType*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "type", "variableType" : "String", "documentation" : "

                  The type of job definition.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobDefinitionName", "type" ], "shapeName" : "RegisterJobDefinitionRequest", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "RegisterJobDefinitionRequest", "variableName" : "registerJobDefinitionRequest", "variableType" : "RegisterJobDefinitionRequest", "documentation" : null, "simpleType" : "RegisterJobDefinitionRequest", "variableSetterType" : "RegisterJobDefinitionRequest" }, "wrapper" : false }, "RegisterJobDefinitionResult" : { "c2jName" : "RegisterJobDefinitionResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "jobDefinitionName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job definition.

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

                  The name of the job definition.

                  \n@return The name of the job definition.*/", "getterMethodName" : "getJobDefinitionName", "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" : "jobDefinitionName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinitionName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinitionName", "setterDocumentation" : "/**

                  The name of the job definition.

                  \n@param jobDefinitionName The name of the job definition.*/", "setterMethodName" : "setJobDefinitionName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job definition.

                  \n@param jobDefinitionName The name of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionName", "variableType" : "String", "documentation" : "

                  The name of the job definition.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "jobDefinitionArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) of the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job definition.

                  \n@param jobDefinitionArn The Amazon Resource Name (ARN) of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinitionArn", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job definition.

                  \n@return The Amazon Resource Name (ARN) of the job definition.*/", "getterMethodName" : "getJobDefinitionArn", "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" : "jobDefinitionArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinitionArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinitionArn", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job definition.

                  \n@param jobDefinitionArn The Amazon Resource Name (ARN) of the job definition.*/", "setterMethodName" : "setJobDefinitionArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job definition.

                  \n@param jobDefinitionArn The Amazon Resource Name (ARN) of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionArn", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) of the job definition.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "revision", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The revision of the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The revision of the job definition.

                  \n@param revision The revision of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withRevision", "getterDocumentation" : "/**

                  The revision of the job definition.

                  \n@return The revision of the job definition.*/", "getterMethodName" : "getRevision", "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" : "revision", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "revision", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Revision", "setterDocumentation" : "/**

                  The revision of the job definition.

                  \n@param revision The revision of the job definition.*/", "setterMethodName" : "setRevision", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "revision", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The revision of the job definition.

                  \n@param revision The revision of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "revision", "variableType" : "Integer", "documentation" : "

                  The revision of the job definition.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "JobDefinitionArn" : { "c2jName" : "jobDefinitionArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) of the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job definition.

                  \n@param jobDefinitionArn The Amazon Resource Name (ARN) of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinitionArn", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job definition.

                  \n@return The Amazon Resource Name (ARN) of the job definition.*/", "getterMethodName" : "getJobDefinitionArn", "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" : "jobDefinitionArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinitionArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinitionArn", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job definition.

                  \n@param jobDefinitionArn The Amazon Resource Name (ARN) of the job definition.*/", "setterMethodName" : "setJobDefinitionArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job definition.

                  \n@param jobDefinitionArn The Amazon Resource Name (ARN) of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionArn", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) of the job definition.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "JobDefinitionName" : { "c2jName" : "jobDefinitionName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job definition.

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

                  The name of the job definition.

                  \n@return The name of the job definition.*/", "getterMethodName" : "getJobDefinitionName", "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" : "jobDefinitionName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinitionName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinitionName", "setterDocumentation" : "/**

                  The name of the job definition.

                  \n@param jobDefinitionName The name of the job definition.*/", "setterMethodName" : "setJobDefinitionName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job definition.

                  \n@param jobDefinitionName The name of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinitionName", "variableType" : "String", "documentation" : "

                  The name of the job definition.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Revision" : { "c2jName" : "revision", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The revision of the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The revision of the job definition.

                  \n@param revision The revision of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withRevision", "getterDocumentation" : "/**

                  The revision of the job definition.

                  \n@return The revision of the job definition.*/", "getterMethodName" : "getRevision", "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" : "revision", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "revision", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Revision", "setterDocumentation" : "/**

                  The revision of the job definition.

                  \n@param revision The revision of the job definition.*/", "setterMethodName" : "setRevision", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "revision", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The revision of the job definition.

                  \n@param revision The revision of the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "revision", "variableType" : "Integer", "documentation" : "

                  The revision of the job definition.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobDefinitionName", "jobDefinitionArn", "revision" ], "shapeName" : "RegisterJobDefinitionResult", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "RegisterJobDefinitionResult", "variableName" : "registerJobDefinitionResult", "variableType" : "RegisterJobDefinitionResult", "documentation" : null, "simpleType" : "RegisterJobDefinitionResult", "variableSetterType" : "RegisterJobDefinitionResult" }, "wrapper" : false }, "ServerException" : { "c2jName" : "ServerException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

                  These errors are usually caused by a server issue.

                  ", "enums" : null, "errorCode" : "ServerException", "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ ], "membersAsMap" : { }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "ServerException", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "ServerException", "variableName" : "serverException", "variableType" : "ServerException", "documentation" : null, "simpleType" : "ServerException", "variableSetterType" : "ServerException" }, "wrapper" : false }, "SubmitJobRequest" : { "c2jName" : "SubmitJobRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : { "action" : "SubmitJob", "locationName" : null, "requestUri" : "/v1/submitjob", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "c2jName" : "jobName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job.

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

                  The name of the job.

                  \n@return The name of the job.*/", "getterMethodName" : "getJobName", "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" : "jobName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobName", "setterDocumentation" : "/**

                  The name of the job.

                  \n@param jobName The name of the job.*/", "setterMethodName" : "setJobName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job.

                  \n@param jobName The name of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobName", "variableType" : "String", "documentation" : "

                  The name of the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "jobQueue", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.

                  \n@param jobQueue The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueue", "getterDocumentation" : "/**

                  The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.

                  \n@return The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.*/", "getterMethodName" : "getJobQueue", "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" : "jobQueue", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueue", "setterDocumentation" : "/**

                  The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.

                  \n@param jobQueue The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.*/", "setterMethodName" : "setJobQueue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.

                  \n@param jobQueue The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "

                  The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "dependsOn", "c2jShape" : "JobDependencyList", "deprecated" : false, "documentation" : "

                  A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.

                  \n@param dependsOn A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withDependsOn", "getterDocumentation" : "/**

                  A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.

                  \n@return A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.*/", "getterMethodName" : "getDependsOn", "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" : "dependsOn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "dependsOn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "JobDependency", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "JobDependency", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "JobDependency", "variableName" : "member", "variableType" : "JobDependency", "documentation" : "", "simpleType" : "JobDependency", "variableSetterType" : "JobDependency" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "JobDependency", "variableName" : "member", "variableType" : "JobDependency", "documentation" : "", "simpleType" : "JobDependency", "variableSetterType" : "JobDependency" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "JobDependency", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "JobDependency", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "DependsOn", "setterDocumentation" : "/**

                  A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.

                  \n@param dependsOn A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.*/", "setterMethodName" : "setDependsOn", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "dependsOn", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setDependsOn(java.util.Collection)} or {@link #withDependsOn(java.util.Collection)} if you want to override the existing values.

                  \n@param dependsOn A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "dependsOn", "variableType" : "java.util.List", "documentation" : "

                  A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, { "c2jName" : "jobDefinition", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.

                  \n@param jobDefinition The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinition", "getterDocumentation" : "/**

                  The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.

                  \n@return The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.*/", "getterMethodName" : "getJobDefinition", "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" : "jobDefinition", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinition", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinition", "setterDocumentation" : "/**

                  The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.

                  \n@param jobDefinition The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.*/", "setterMethodName" : "setJobDefinition", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinition", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.

                  \n@param jobDefinition The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinition", "variableType" : "String", "documentation" : "

                  The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "parameters", "c2jShape" : "ParametersMap", "deprecated" : false, "documentation" : "

                  Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withParameters", "getterDocumentation" : "/**

                  Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@return Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.*/", "getterMethodName" : "getParameters", "getterModel" : { "returnType" : "java.util.Map", "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, "statusCode" : false, "unmarshallLocationName" : "parameters", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : true, "mapModel" : { "implType" : "java.util.HashMap", "interfaceType" : "java.util.Map", "keyLocationName" : "key", "keyModel" : null, "keyType" : "String", "valueLocationName" : "value", "valueModel" : { "c2jName" : "value", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withValue", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getValue", "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" : "value", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "value", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Value", "setterDocumentation" : "/**\n@param value */", "setterMethodName" : "setValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "valueType" : "String", "entryType" : "Map.Entry", "keySimple" : true, "templateImplType" : "java.util.HashMap", "templateType" : "java.util.Map", "valueList" : false, "valueSimple" : true }, "marshallingTargetClass" : "Map", "marshallingType" : "MAP", "name" : "Parameters", "setterDocumentation" : "/**

                  Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.*/", "setterMethodName" : "setParameters", "setterModel" : { "variableDeclarationType" : "java.util.Map", "variableName" : "parameters", "variableType" : "java.util.Map", "documentation" : "", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "simple" : false, "varargSetterDocumentation" : "/**

                  Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.Map", "variableName" : "parameters", "variableType" : "java.util.Map", "documentation" : "

                  Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  ", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "xmlNameSpaceUri" : null }, { "c2jName" : "containerOverrides", "c2jShape" : "ContainerOverrides", "deprecated" : false, "documentation" : "

                  A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.

                  \n@param containerOverrides A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withContainerOverrides", "getterDocumentation" : "/**

                  A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.

                  \n@return A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.*/", "getterMethodName" : "getContainerOverrides", "getterModel" : { "returnType" : "ContainerOverrides", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "containerOverrides", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "containerOverrides", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "ContainerOverrides", "setterDocumentation" : "/**

                  A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.

                  \n@param containerOverrides A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.*/", "setterMethodName" : "setContainerOverrides", "setterModel" : { "variableDeclarationType" : "ContainerOverrides", "variableName" : "containerOverrides", "variableType" : "ContainerOverrides", "documentation" : "", "simpleType" : "ContainerOverrides", "variableSetterType" : "ContainerOverrides" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.

                  \n@param containerOverrides A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ContainerOverrides", "variableName" : "containerOverrides", "variableType" : "ContainerOverrides", "documentation" : "

                  A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.

                  ", "simpleType" : "ContainerOverrides", "variableSetterType" : "ContainerOverrides" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ContainerOverrides" : { "c2jName" : "containerOverrides", "c2jShape" : "ContainerOverrides", "deprecated" : false, "documentation" : "

                  A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.

                  \n@param containerOverrides A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withContainerOverrides", "getterDocumentation" : "/**

                  A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.

                  \n@return A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.*/", "getterMethodName" : "getContainerOverrides", "getterModel" : { "returnType" : "ContainerOverrides", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "containerOverrides", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "containerOverrides", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "ContainerOverrides", "setterDocumentation" : "/**

                  A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.

                  \n@param containerOverrides A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.*/", "setterMethodName" : "setContainerOverrides", "setterModel" : { "variableDeclarationType" : "ContainerOverrides", "variableName" : "containerOverrides", "variableType" : "ContainerOverrides", "documentation" : "", "simpleType" : "ContainerOverrides", "variableSetterType" : "ContainerOverrides" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.

                  \n@param containerOverrides A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ContainerOverrides", "variableName" : "containerOverrides", "variableType" : "ContainerOverrides", "documentation" : "

                  A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.

                  ", "simpleType" : "ContainerOverrides", "variableSetterType" : "ContainerOverrides" }, "xmlNameSpaceUri" : null }, "DependsOn" : { "c2jName" : "dependsOn", "c2jShape" : "JobDependencyList", "deprecated" : false, "documentation" : "

                  A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.

                  \n@param dependsOn A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withDependsOn", "getterDocumentation" : "/**

                  A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.

                  \n@return A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.*/", "getterMethodName" : "getDependsOn", "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" : "dependsOn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "dependsOn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "JobDependency", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "JobDependency", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "JobDependency", "variableName" : "member", "variableType" : "JobDependency", "documentation" : "", "simpleType" : "JobDependency", "variableSetterType" : "JobDependency" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "JobDependency", "variableName" : "member", "variableType" : "JobDependency", "documentation" : "", "simpleType" : "JobDependency", "variableSetterType" : "JobDependency" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "JobDependency", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "JobDependency", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "DependsOn", "setterDocumentation" : "/**

                  A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.

                  \n@param dependsOn A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.*/", "setterMethodName" : "setDependsOn", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "dependsOn", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setDependsOn(java.util.Collection)} or {@link #withDependsOn(java.util.Collection)} if you want to override the existing values.

                  \n@param dependsOn A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "dependsOn", "variableType" : "java.util.List", "documentation" : "

                  A list of job names or IDs on which this job depends. A job can depend upon a maximum of 100 jobs.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "JobDefinition" : { "c2jName" : "jobDefinition", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.

                  \n@param jobDefinition The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobDefinition", "getterDocumentation" : "/**

                  The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.

                  \n@return The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.*/", "getterMethodName" : "getJobDefinition", "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" : "jobDefinition", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobDefinition", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobDefinition", "setterDocumentation" : "/**

                  The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.

                  \n@param jobDefinition The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.*/", "setterMethodName" : "setJobDefinition", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobDefinition", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.

                  \n@param jobDefinition The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobDefinition", "variableType" : "String", "documentation" : "

                  The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "JobName" : { "c2jName" : "jobName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job.

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

                  The name of the job.

                  \n@return The name of the job.*/", "getterMethodName" : "getJobName", "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" : "jobName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobName", "setterDocumentation" : "/**

                  The name of the job.

                  \n@param jobName The name of the job.*/", "setterMethodName" : "setJobName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job.

                  \n@param jobName The name of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobName", "variableType" : "String", "documentation" : "

                  The name of the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "JobQueue" : { "c2jName" : "jobQueue", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.

                  \n@param jobQueue The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueue", "getterDocumentation" : "/**

                  The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.

                  \n@return The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.*/", "getterMethodName" : "getJobQueue", "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" : "jobQueue", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueue", "setterDocumentation" : "/**

                  The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.

                  \n@param jobQueue The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.*/", "setterMethodName" : "setJobQueue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.

                  \n@param jobQueue The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "

                  The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Parameters" : { "c2jName" : "parameters", "c2jShape" : "ParametersMap", "deprecated" : false, "documentation" : "

                  Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withParameters", "getterDocumentation" : "/**

                  Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@return Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.*/", "getterMethodName" : "getParameters", "getterModel" : { "returnType" : "java.util.Map", "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, "statusCode" : false, "unmarshallLocationName" : "parameters", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : true, "mapModel" : { "implType" : "java.util.HashMap", "interfaceType" : "java.util.Map", "keyLocationName" : "key", "keyModel" : null, "keyType" : "String", "valueLocationName" : "value", "valueModel" : { "c2jName" : "value", "c2jShape" : "String", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withValue", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getValue", "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" : "value", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "value", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Value", "setterDocumentation" : "/**\n@param value */", "setterMethodName" : "setValue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "value", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "valueType" : "String", "entryType" : "Map.Entry", "keySimple" : true, "templateImplType" : "java.util.HashMap", "templateType" : "java.util.Map", "valueList" : false, "valueSimple" : true }, "marshallingTargetClass" : "Map", "marshallingType" : "MAP", "name" : "Parameters", "setterDocumentation" : "/**

                  Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.*/", "setterMethodName" : "setParameters", "setterModel" : { "variableDeclarationType" : "java.util.Map", "variableName" : "parameters", "variableType" : "java.util.Map", "documentation" : "", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "simple" : false, "varargSetterDocumentation" : "/**

                  Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  \n@param parameters Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.Map", "variableName" : "parameters", "variableType" : "java.util.Map", "documentation" : "

                  Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

                  ", "simpleType" : "Map", "variableSetterType" : "java.util.Map" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobName", "jobQueue", "jobDefinition" ], "shapeName" : "SubmitJobRequest", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "SubmitJobRequest", "variableName" : "submitJobRequest", "variableType" : "SubmitJobRequest", "documentation" : null, "simpleType" : "SubmitJobRequest", "variableSetterType" : "SubmitJobRequest" }, "wrapper" : false }, "SubmitJobResult" : { "c2jName" : "SubmitJobResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "jobName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job.

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

                  The name of the job.

                  \n@return The name of the job.*/", "getterMethodName" : "getJobName", "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" : "jobName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobName", "setterDocumentation" : "/**

                  The name of the job.

                  \n@param jobName The name of the job.*/", "setterMethodName" : "setJobName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job.

                  \n@param jobName The name of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobName", "variableType" : "String", "documentation" : "

                  The name of the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "jobId", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The unique identifier for the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The unique identifier for the job.

                  \n@param jobId The unique identifier for the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobId", "getterDocumentation" : "/**

                  The unique identifier for the job.

                  \n@return The unique identifier for the job.*/", "getterMethodName" : "getJobId", "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" : "jobId", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobId", "setterDocumentation" : "/**

                  The unique identifier for the job.

                  \n@param jobId The unique identifier for the job.*/", "setterMethodName" : "setJobId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The unique identifier for the job.

                  \n@param jobId The unique identifier for the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "

                  The unique identifier for the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "JobId" : { "c2jName" : "jobId", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The unique identifier for the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The unique identifier for the job.

                  \n@param jobId The unique identifier for the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobId", "getterDocumentation" : "/**

                  The unique identifier for the job.

                  \n@return The unique identifier for the job.*/", "getterMethodName" : "getJobId", "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" : "jobId", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobId", "setterDocumentation" : "/**

                  The unique identifier for the job.

                  \n@param jobId The unique identifier for the job.*/", "setterMethodName" : "setJobId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The unique identifier for the job.

                  \n@param jobId The unique identifier for the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "

                  The unique identifier for the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "JobName" : { "c2jName" : "jobName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job.

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

                  The name of the job.

                  \n@return The name of the job.*/", "getterMethodName" : "getJobName", "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" : "jobName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobName", "setterDocumentation" : "/**

                  The name of the job.

                  \n@param jobName The name of the job.*/", "setterMethodName" : "setJobName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job.

                  \n@param jobName The name of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobName", "variableType" : "String", "documentation" : "

                  The name of the job.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobName", "jobId" ], "shapeName" : "SubmitJobResult", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "SubmitJobResult", "variableName" : "submitJobResult", "variableType" : "SubmitJobResult", "documentation" : null, "simpleType" : "SubmitJobResult", "variableSetterType" : "SubmitJobResult" }, "wrapper" : false }, "TerminateJobRequest" : { "c2jName" : "TerminateJobRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : { "action" : "TerminateJob", "locationName" : null, "requestUri" : "/v1/terminatejob", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "c2jName" : "jobId", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  Job IDs to be terminated. Up to 100 jobs can be specified.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  Job IDs to be terminated. Up to 100 jobs can be specified.

                  \n@param jobId Job IDs to be terminated. Up to 100 jobs can be specified.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobId", "getterDocumentation" : "/**

                  Job IDs to be terminated. Up to 100 jobs can be specified.

                  \n@return Job IDs to be terminated. Up to 100 jobs can be specified.*/", "getterMethodName" : "getJobId", "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" : "jobId", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobId", "setterDocumentation" : "/**

                  Job IDs to be terminated. Up to 100 jobs can be specified.

                  \n@param jobId Job IDs to be terminated. Up to 100 jobs can be specified.*/", "setterMethodName" : "setJobId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  Job IDs to be terminated. Up to 100 jobs can be specified.

                  \n@param jobId Job IDs to be terminated. Up to 100 jobs can be specified.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "

                  Job IDs to be terminated. Up to 100 jobs can be specified.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "reason", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

                  \n@param reason A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withReason", "getterDocumentation" : "/**

                  A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

                  \n@return A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.*/", "getterMethodName" : "getReason", "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" : "reason", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "reason", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Reason", "setterDocumentation" : "/**

                  A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

                  \n@param reason A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.*/", "setterMethodName" : "setReason", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "reason", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

                  \n@param reason A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "reason", "variableType" : "String", "documentation" : "

                  A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "JobId" : { "c2jName" : "jobId", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  Job IDs to be terminated. Up to 100 jobs can be specified.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  Job IDs to be terminated. Up to 100 jobs can be specified.

                  \n@param jobId Job IDs to be terminated. Up to 100 jobs can be specified.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobId", "getterDocumentation" : "/**

                  Job IDs to be terminated. Up to 100 jobs can be specified.

                  \n@return Job IDs to be terminated. Up to 100 jobs can be specified.*/", "getterMethodName" : "getJobId", "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" : "jobId", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobId", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobId", "setterDocumentation" : "/**

                  Job IDs to be terminated. Up to 100 jobs can be specified.

                  \n@param jobId Job IDs to be terminated. Up to 100 jobs can be specified.*/", "setterMethodName" : "setJobId", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  Job IDs to be terminated. Up to 100 jobs can be specified.

                  \n@param jobId Job IDs to be terminated. Up to 100 jobs can be specified.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobId", "variableType" : "String", "documentation" : "

                  Job IDs to be terminated. Up to 100 jobs can be specified.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Reason" : { "c2jName" : "reason", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

                  \n@param reason A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withReason", "getterDocumentation" : "/**

                  A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

                  \n@return A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.*/", "getterMethodName" : "getReason", "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" : "reason", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "reason", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Reason", "setterDocumentation" : "/**

                  A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

                  \n@param reason A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.*/", "setterMethodName" : "setReason", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "reason", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

                  \n@param reason A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "reason", "variableType" : "String", "documentation" : "

                  A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobId", "reason" ], "shapeName" : "TerminateJobRequest", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "TerminateJobRequest", "variableName" : "terminateJobRequest", "variableType" : "TerminateJobRequest", "documentation" : null, "simpleType" : "TerminateJobRequest", "variableSetterType" : "TerminateJobRequest" }, "wrapper" : false }, "TerminateJobResult" : { "c2jName" : "TerminateJobResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : null, "membersAsMap" : { }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "TerminateJobResult", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "TerminateJobResult", "variableName" : "terminateJobResult", "variableType" : "TerminateJobResult", "documentation" : null, "simpleType" : "TerminateJobResult", "variableSetterType" : "TerminateJobResult" }, "wrapper" : false }, "Ulimit" : { "c2jName" : "Ulimit", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

                  The ulimit settings to pass to the container.

                  ", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "hardLimit", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The hard limit for the ulimit type.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The hard limit for the ulimit type.

                  \n@param hardLimit The hard limit for the ulimit type.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withHardLimit", "getterDocumentation" : "/**

                  The hard limit for the ulimit type.

                  \n@return The hard limit for the ulimit type.*/", "getterMethodName" : "getHardLimit", "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" : "hardLimit", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "hardLimit", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "HardLimit", "setterDocumentation" : "/**

                  The hard limit for the ulimit type.

                  \n@param hardLimit The hard limit for the ulimit type.*/", "setterMethodName" : "setHardLimit", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "hardLimit", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The hard limit for the ulimit type.

                  \n@param hardLimit The hard limit for the ulimit type.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "hardLimit", "variableType" : "Integer", "documentation" : "

                  The hard limit for the ulimit type.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "name", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The type of the ulimit.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The type of the ulimit.

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

                  The type of the ulimit.

                  \n@return The type of the ulimit.*/", "getterMethodName" : "getName", "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, "statusCode" : false, "unmarshallLocationName" : "name", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Name", "setterDocumentation" : "/**

                  The type of the ulimit.

                  \n@param name The type of the ulimit.*/", "setterMethodName" : "setName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The type of the ulimit.

                  \n@param name The type of the ulimit.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "

                  The type of the ulimit.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "softLimit", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The soft limit for the ulimit type.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The soft limit for the ulimit type.

                  \n@param softLimit The soft limit for the ulimit type.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withSoftLimit", "getterDocumentation" : "/**

                  The soft limit for the ulimit type.

                  \n@return The soft limit for the ulimit type.*/", "getterMethodName" : "getSoftLimit", "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" : "softLimit", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "softLimit", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "SoftLimit", "setterDocumentation" : "/**

                  The soft limit for the ulimit type.

                  \n@param softLimit The soft limit for the ulimit type.*/", "setterMethodName" : "setSoftLimit", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "softLimit", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The soft limit for the ulimit type.

                  \n@param softLimit The soft limit for the ulimit type.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "softLimit", "variableType" : "Integer", "documentation" : "

                  The soft limit for the ulimit type.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "HardLimit" : { "c2jName" : "hardLimit", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The hard limit for the ulimit type.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The hard limit for the ulimit type.

                  \n@param hardLimit The hard limit for the ulimit type.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withHardLimit", "getterDocumentation" : "/**

                  The hard limit for the ulimit type.

                  \n@return The hard limit for the ulimit type.*/", "getterMethodName" : "getHardLimit", "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" : "hardLimit", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "hardLimit", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "HardLimit", "setterDocumentation" : "/**

                  The hard limit for the ulimit type.

                  \n@param hardLimit The hard limit for the ulimit type.*/", "setterMethodName" : "setHardLimit", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "hardLimit", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The hard limit for the ulimit type.

                  \n@param hardLimit The hard limit for the ulimit type.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "hardLimit", "variableType" : "Integer", "documentation" : "

                  The hard limit for the ulimit type.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "Name" : { "c2jName" : "name", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The type of the ulimit.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The type of the ulimit.

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

                  The type of the ulimit.

                  \n@return The type of the ulimit.*/", "getterMethodName" : "getName", "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, "statusCode" : false, "unmarshallLocationName" : "name", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Name", "setterDocumentation" : "/**

                  The type of the ulimit.

                  \n@param name The type of the ulimit.*/", "setterMethodName" : "setName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The type of the ulimit.

                  \n@param name The type of the ulimit.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "

                  The type of the ulimit.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "SoftLimit" : { "c2jName" : "softLimit", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The soft limit for the ulimit type.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The soft limit for the ulimit type.

                  \n@param softLimit The soft limit for the ulimit type.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withSoftLimit", "getterDocumentation" : "/**

                  The soft limit for the ulimit type.

                  \n@return The soft limit for the ulimit type.*/", "getterMethodName" : "getSoftLimit", "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" : "softLimit", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "softLimit", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "SoftLimit", "setterDocumentation" : "/**

                  The soft limit for the ulimit type.

                  \n@param softLimit The soft limit for the ulimit type.*/", "setterMethodName" : "setSoftLimit", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "softLimit", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The soft limit for the ulimit type.

                  \n@param softLimit The soft limit for the ulimit type.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "softLimit", "variableType" : "Integer", "documentation" : "

                  The soft limit for the ulimit type.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "hardLimit", "name", "softLimit" ], "shapeName" : "Ulimit", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "Ulimit", "variableName" : "ulimit", "variableType" : "Ulimit", "documentation" : null, "simpleType" : "Ulimit", "variableSetterType" : "Ulimit" }, "wrapper" : false }, "UpdateComputeEnvironmentRequest" : { "c2jName" : "UpdateComputeEnvironmentRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : { "action" : "UpdateComputeEnvironment", "locationName" : null, "requestUri" : "/v1/updatecomputeenvironment", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "c2jName" : "computeEnvironment", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name or full Amazon Resource Name (ARN) of the compute environment to update.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the compute environment to update.

                  \n@param computeEnvironment The name or full Amazon Resource Name (ARN) of the compute environment to update.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironment", "getterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the compute environment to update.

                  \n@return The name or full Amazon Resource Name (ARN) of the compute environment to update.*/", "getterMethodName" : "getComputeEnvironment", "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" : "computeEnvironment", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironment", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironment", "setterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the compute environment to update.

                  \n@param computeEnvironment The name or full Amazon Resource Name (ARN) of the compute environment to update.*/", "setterMethodName" : "setComputeEnvironment", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironment", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the compute environment to update.

                  \n@param computeEnvironment The name or full Amazon Resource Name (ARN) of the compute environment to update.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironment", "variableType" : "String", "documentation" : "

                  The name or full Amazon Resource Name (ARN) of the compute environment to update.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "state", "c2jShape" : "CEState", "deprecated" : false, "documentation" : "

                  The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.

                  ", "enumType" : "CEState", "fluentSetterDocumentation" : "/**

                  The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.

                  \n@param state The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEState*/", "fluentSetterMethodName" : "withState", "getterDocumentation" : "/**

                  The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.

                  \n@return The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.\n@see CEState*/", "getterMethodName" : "getState", "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" : "state", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "state", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "State", "setterDocumentation" : "/**

                  The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.

                  \n@param state The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.\n@see CEState*/", "setterMethodName" : "setState", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.

                  \n@param state The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEState*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "

                  The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "computeResources", "c2jShape" : "ComputeResourceUpdate", "deprecated" : false, "documentation" : "

                  Details of the compute resources managed by the compute environment. Required for a managed compute environment.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  Details of the compute resources managed by the compute environment. Required for a managed compute environment.

                  \n@param computeResources Details of the compute resources managed by the compute environment. Required for a managed compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeResources", "getterDocumentation" : "/**

                  Details of the compute resources managed by the compute environment. Required for a managed compute environment.

                  \n@return Details of the compute resources managed by the compute environment. Required for a managed compute environment.*/", "getterMethodName" : "getComputeResources", "getterModel" : { "returnType" : "ComputeResourceUpdate", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "computeResources", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeResources", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "ComputeResources", "setterDocumentation" : "/**

                  Details of the compute resources managed by the compute environment. Required for a managed compute environment.

                  \n@param computeResources Details of the compute resources managed by the compute environment. Required for a managed compute environment.*/", "setterMethodName" : "setComputeResources", "setterModel" : { "variableDeclarationType" : "ComputeResourceUpdate", "variableName" : "computeResources", "variableType" : "ComputeResourceUpdate", "documentation" : "", "simpleType" : "ComputeResourceUpdate", "variableSetterType" : "ComputeResourceUpdate" }, "simple" : false, "varargSetterDocumentation" : "/**

                  Details of the compute resources managed by the compute environment. Required for a managed compute environment.

                  \n@param computeResources Details of the compute resources managed by the compute environment. Required for a managed compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ComputeResourceUpdate", "variableName" : "computeResources", "variableType" : "ComputeResourceUpdate", "documentation" : "

                  Details of the compute resources managed by the compute environment. Required for a managed compute environment.

                  ", "simpleType" : "ComputeResourceUpdate", "variableSetterType" : "ComputeResourceUpdate" }, "xmlNameSpaceUri" : null }, { "c2jName" : "serviceRole", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.

                  \n@param serviceRole The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withServiceRole", "getterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.

                  \n@return The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.*/", "getterMethodName" : "getServiceRole", "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" : "serviceRole", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "serviceRole", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ServiceRole", "setterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.

                  \n@param serviceRole The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.*/", "setterMethodName" : "setServiceRole", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "serviceRole", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.

                  \n@param serviceRole The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "serviceRole", "variableType" : "String", "documentation" : "

                  The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ComputeEnvironment" : { "c2jName" : "computeEnvironment", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name or full Amazon Resource Name (ARN) of the compute environment to update.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the compute environment to update.

                  \n@param computeEnvironment The name or full Amazon Resource Name (ARN) of the compute environment to update.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironment", "getterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the compute environment to update.

                  \n@return The name or full Amazon Resource Name (ARN) of the compute environment to update.*/", "getterMethodName" : "getComputeEnvironment", "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" : "computeEnvironment", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironment", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironment", "setterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the compute environment to update.

                  \n@param computeEnvironment The name or full Amazon Resource Name (ARN) of the compute environment to update.*/", "setterMethodName" : "setComputeEnvironment", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironment", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the compute environment to update.

                  \n@param computeEnvironment The name or full Amazon Resource Name (ARN) of the compute environment to update.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironment", "variableType" : "String", "documentation" : "

                  The name or full Amazon Resource Name (ARN) of the compute environment to update.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "ComputeResources" : { "c2jName" : "computeResources", "c2jShape" : "ComputeResourceUpdate", "deprecated" : false, "documentation" : "

                  Details of the compute resources managed by the compute environment. Required for a managed compute environment.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  Details of the compute resources managed by the compute environment. Required for a managed compute environment.

                  \n@param computeResources Details of the compute resources managed by the compute environment. Required for a managed compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeResources", "getterDocumentation" : "/**

                  Details of the compute resources managed by the compute environment. Required for a managed compute environment.

                  \n@return Details of the compute resources managed by the compute environment. Required for a managed compute environment.*/", "getterMethodName" : "getComputeResources", "getterModel" : { "returnType" : "ComputeResourceUpdate", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "computeResources", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeResources", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "ComputeResources", "setterDocumentation" : "/**

                  Details of the compute resources managed by the compute environment. Required for a managed compute environment.

                  \n@param computeResources Details of the compute resources managed by the compute environment. Required for a managed compute environment.*/", "setterMethodName" : "setComputeResources", "setterModel" : { "variableDeclarationType" : "ComputeResourceUpdate", "variableName" : "computeResources", "variableType" : "ComputeResourceUpdate", "documentation" : "", "simpleType" : "ComputeResourceUpdate", "variableSetterType" : "ComputeResourceUpdate" }, "simple" : false, "varargSetterDocumentation" : "/**

                  Details of the compute resources managed by the compute environment. Required for a managed compute environment.

                  \n@param computeResources Details of the compute resources managed by the compute environment. Required for a managed compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ComputeResourceUpdate", "variableName" : "computeResources", "variableType" : "ComputeResourceUpdate", "documentation" : "

                  Details of the compute resources managed by the compute environment. Required for a managed compute environment.

                  ", "simpleType" : "ComputeResourceUpdate", "variableSetterType" : "ComputeResourceUpdate" }, "xmlNameSpaceUri" : null }, "ServiceRole" : { "c2jName" : "serviceRole", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.

                  \n@param serviceRole The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withServiceRole", "getterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.

                  \n@return The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.*/", "getterMethodName" : "getServiceRole", "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" : "serviceRole", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "serviceRole", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ServiceRole", "setterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.

                  \n@param serviceRole The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.*/", "setterMethodName" : "setServiceRole", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "serviceRole", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.

                  \n@param serviceRole The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "serviceRole", "variableType" : "String", "documentation" : "

                  The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "State" : { "c2jName" : "state", "c2jShape" : "CEState", "deprecated" : false, "documentation" : "

                  The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.

                  ", "enumType" : "CEState", "fluentSetterDocumentation" : "/**

                  The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.

                  \n@param state The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEState*/", "fluentSetterMethodName" : "withState", "getterDocumentation" : "/**

                  The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.

                  \n@return The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.\n@see CEState*/", "getterMethodName" : "getState", "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" : "state", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "state", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "State", "setterDocumentation" : "/**

                  The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.

                  \n@param state The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.\n@see CEState*/", "setterMethodName" : "setState", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.

                  \n@param state The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.\n@return Returns a reference to this object so that method calls can be chained together.\n@see CEState*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "

                  The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "computeEnvironment" ], "shapeName" : "UpdateComputeEnvironmentRequest", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "UpdateComputeEnvironmentRequest", "variableName" : "updateComputeEnvironmentRequest", "variableType" : "UpdateComputeEnvironmentRequest", "documentation" : null, "simpleType" : "UpdateComputeEnvironmentRequest", "variableSetterType" : "UpdateComputeEnvironmentRequest" }, "wrapper" : false }, "UpdateComputeEnvironmentResult" : { "c2jName" : "UpdateComputeEnvironmentResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "computeEnvironmentName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of compute environment.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of compute environment.

                  \n@param computeEnvironmentName The name of compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironmentName", "getterDocumentation" : "/**

                  The name of compute environment.

                  \n@return The name of compute environment.*/", "getterMethodName" : "getComputeEnvironmentName", "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" : "computeEnvironmentName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironmentName", "setterDocumentation" : "/**

                  The name of compute environment.

                  \n@param computeEnvironmentName The name of compute environment.*/", "setterMethodName" : "setComputeEnvironmentName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of compute environment.

                  \n@param computeEnvironmentName The name of compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentName", "variableType" : "String", "documentation" : "

                  The name of compute environment.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "computeEnvironmentArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) of the compute environment.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the compute environment.

                  \n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironmentArn", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the compute environment.

                  \n@return The Amazon Resource Name (ARN) of the compute environment.*/", "getterMethodName" : "getComputeEnvironmentArn", "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" : "computeEnvironmentArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironmentArn", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the compute environment.

                  \n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.*/", "setterMethodName" : "setComputeEnvironmentArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the compute environment.

                  \n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentArn", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) of the compute environment.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ComputeEnvironmentArn" : { "c2jName" : "computeEnvironmentArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) of the compute environment.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the compute environment.

                  \n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironmentArn", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the compute environment.

                  \n@return The Amazon Resource Name (ARN) of the compute environment.*/", "getterMethodName" : "getComputeEnvironmentArn", "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" : "computeEnvironmentArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironmentArn", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the compute environment.

                  \n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.*/", "setterMethodName" : "setComputeEnvironmentArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the compute environment.

                  \n@param computeEnvironmentArn The Amazon Resource Name (ARN) of the compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentArn", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) of the compute environment.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "ComputeEnvironmentName" : { "c2jName" : "computeEnvironmentName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of compute environment.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of compute environment.

                  \n@param computeEnvironmentName The name of compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironmentName", "getterDocumentation" : "/**

                  The name of compute environment.

                  \n@return The name of compute environment.*/", "getterMethodName" : "getComputeEnvironmentName", "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" : "computeEnvironmentName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "ComputeEnvironmentName", "setterDocumentation" : "/**

                  The name of compute environment.

                  \n@param computeEnvironmentName The name of compute environment.*/", "setterMethodName" : "setComputeEnvironmentName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of compute environment.

                  \n@param computeEnvironmentName The name of compute environment.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "computeEnvironmentName", "variableType" : "String", "documentation" : "

                  The name of compute environment.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "UpdateComputeEnvironmentResult", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "UpdateComputeEnvironmentResult", "variableName" : "updateComputeEnvironmentResult", "variableType" : "UpdateComputeEnvironmentResult", "documentation" : null, "simpleType" : "UpdateComputeEnvironmentResult", "variableSetterType" : "UpdateComputeEnvironmentResult" }, "wrapper" : false }, "UpdateJobQueueRequest" : { "c2jName" : "UpdateJobQueueRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : { "action" : "UpdateJobQueue", "locationName" : null, "requestUri" : "/v1/updatejobqueue", "target" : null, "verb" : "POST", "xmlNameSpaceUri" : null }, "members" : [ { "c2jName" : "jobQueue", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name or the Amazon Resource Name (ARN) of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name or the Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueue The name or the Amazon Resource Name (ARN) of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueue", "getterDocumentation" : "/**

                  The name or the Amazon Resource Name (ARN) of the job queue.

                  \n@return The name or the Amazon Resource Name (ARN) of the job queue.*/", "getterMethodName" : "getJobQueue", "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" : "jobQueue", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueue", "setterDocumentation" : "/**

                  The name or the Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueue The name or the Amazon Resource Name (ARN) of the job queue.*/", "setterMethodName" : "setJobQueue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name or the Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueue The name or the Amazon Resource Name (ARN) of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "

                  The name or the Amazon Resource Name (ARN) of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "state", "c2jShape" : "JQState", "deprecated" : false, "documentation" : "

                  Describes the queue's ability to accept new jobs.

                  ", "enumType" : "JQState", "fluentSetterDocumentation" : "/**

                  Describes the queue's ability to accept new jobs.

                  \n@param state Describes the queue's ability to accept new jobs.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JQState*/", "fluentSetterMethodName" : "withState", "getterDocumentation" : "/**

                  Describes the queue's ability to accept new jobs.

                  \n@return Describes the queue's ability to accept new jobs.\n@see JQState*/", "getterMethodName" : "getState", "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" : "state", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "state", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "State", "setterDocumentation" : "/**

                  Describes the queue's ability to accept new jobs.

                  \n@param state Describes the queue's ability to accept new jobs.\n@see JQState*/", "setterMethodName" : "setState", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  Describes the queue's ability to accept new jobs.

                  \n@param state Describes the queue's ability to accept new jobs.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JQState*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "

                  Describes the queue's ability to accept new jobs.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "priority", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  \n@param priority The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withPriority", "getterDocumentation" : "/**

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  \n@return The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.*/", "getterMethodName" : "getPriority", "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" : "priority", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "priority", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Priority", "setterDocumentation" : "/**

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  \n@param priority The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.*/", "setterMethodName" : "setPriority", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "priority", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  \n@param priority The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "priority", "variableType" : "Integer", "documentation" : "

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, { "c2jName" : "computeEnvironmentOrder", "c2jShape" : "ComputeEnvironmentOrders", "deprecated" : false, "documentation" : "

                  Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.

                  \n@param computeEnvironmentOrder Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironmentOrder", "getterDocumentation" : "/**

                  Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.

                  \n@return Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.*/", "getterMethodName" : "getComputeEnvironmentOrder", "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" : "computeEnvironmentOrder", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentOrder", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "ComputeEnvironmentOrder", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "ComputeEnvironmentOrder", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ComputeEnvironmentOrder", "variableName" : "member", "variableType" : "ComputeEnvironmentOrder", "documentation" : "", "simpleType" : "ComputeEnvironmentOrder", "variableSetterType" : "ComputeEnvironmentOrder" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ComputeEnvironmentOrder", "variableName" : "member", "variableType" : "ComputeEnvironmentOrder", "documentation" : "", "simpleType" : "ComputeEnvironmentOrder", "variableSetterType" : "ComputeEnvironmentOrder" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ComputeEnvironmentOrder", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "ComputeEnvironmentOrder", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "ComputeEnvironmentOrder", "setterDocumentation" : "/**

                  Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.

                  \n@param computeEnvironmentOrder Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.*/", "setterMethodName" : "setComputeEnvironmentOrder", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironmentOrder", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setComputeEnvironmentOrder(java.util.Collection)} or {@link #withComputeEnvironmentOrder(java.util.Collection)} if you want to override the existing values.

                  \n@param computeEnvironmentOrder Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironmentOrder", "variableType" : "java.util.List", "documentation" : "

                  Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "ComputeEnvironmentOrder" : { "c2jName" : "computeEnvironmentOrder", "c2jShape" : "ComputeEnvironmentOrders", "deprecated" : false, "documentation" : "

                  Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.

                  \n@param computeEnvironmentOrder Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withComputeEnvironmentOrder", "getterDocumentation" : "/**

                  Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.

                  \n@return Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.*/", "getterMethodName" : "getComputeEnvironmentOrder", "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" : "computeEnvironmentOrder", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "computeEnvironmentOrder", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : true, "listModel" : { "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "c2jName" : "member", "c2jShape" : "ComputeEnvironmentOrder", "deprecated" : false, "documentation" : "", "enumType" : null, "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withMember", "getterDocumentation" : "/**\n@return */", "getterMethodName" : "getMember", "getterModel" : { "returnType" : "ComputeEnvironmentOrder", "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, "statusCode" : false, "unmarshallLocationName" : "member", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Member", "setterDocumentation" : "/**\n@param member */", "setterMethodName" : "setMember", "setterModel" : { "variableDeclarationType" : "ComputeEnvironmentOrder", "variableName" : "member", "variableType" : "ComputeEnvironmentOrder", "documentation" : "", "simpleType" : "ComputeEnvironmentOrder", "variableSetterType" : "ComputeEnvironmentOrder" }, "simple" : false, "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "ComputeEnvironmentOrder", "variableName" : "member", "variableType" : "ComputeEnvironmentOrder", "documentation" : "", "simpleType" : "ComputeEnvironmentOrder", "variableSetterType" : "ComputeEnvironmentOrder" }, "xmlNameSpaceUri" : null }, "memberLocationName" : null, "memberType" : "ComputeEnvironmentOrder", "map" : false, "marshallNonAutoConstructedEmptyLists" : false, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "simpleType" : "ComputeEnvironmentOrder", "templateImplType" : "java.util.ArrayList", "templateType" : "java.util.List" }, "map" : false, "mapModel" : null, "marshallingTargetClass" : "List", "marshallingType" : "LIST", "name" : "ComputeEnvironmentOrder", "setterDocumentation" : "/**

                  Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.

                  \n@param computeEnvironmentOrder Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.*/", "setterMethodName" : "setComputeEnvironmentOrder", "setterModel" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironmentOrder", "variableType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "simple" : false, "varargSetterDocumentation" : "/**

                  Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.

                  \n

                  NOTE: This method appends the values to the existing list (if any). Use {@link #setComputeEnvironmentOrder(java.util.Collection)} or {@link #withComputeEnvironmentOrder(java.util.Collection)} if you want to override the existing values.

                  \n@param computeEnvironmentOrder Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "java.util.List", "variableName" : "computeEnvironmentOrder", "variableType" : "java.util.List", "documentation" : "

                  Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.

                  ", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "xmlNameSpaceUri" : null }, "JobQueue" : { "c2jName" : "jobQueue", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name or the Amazon Resource Name (ARN) of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name or the Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueue The name or the Amazon Resource Name (ARN) of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueue", "getterDocumentation" : "/**

                  The name or the Amazon Resource Name (ARN) of the job queue.

                  \n@return The name or the Amazon Resource Name (ARN) of the job queue.*/", "getterMethodName" : "getJobQueue", "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" : "jobQueue", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueue", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueue", "setterDocumentation" : "/**

                  The name or the Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueue The name or the Amazon Resource Name (ARN) of the job queue.*/", "setterMethodName" : "setJobQueue", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name or the Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueue The name or the Amazon Resource Name (ARN) of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueue", "variableType" : "String", "documentation" : "

                  The name or the Amazon Resource Name (ARN) of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "Priority" : { "c2jName" : "priority", "c2jShape" : "Integer", "deprecated" : false, "documentation" : "

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  \n@param priority The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withPriority", "getterDocumentation" : "/**

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  \n@return The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.*/", "getterMethodName" : "getPriority", "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" : "priority", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "priority", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "Integer", "marshallingType" : "INTEGER", "name" : "Priority", "setterDocumentation" : "/**

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  \n@param priority The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.*/", "setterMethodName" : "setPriority", "setterModel" : { "variableDeclarationType" : "Integer", "variableName" : "priority", "variableType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  \n@param priority The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Integer", "variableName" : "priority", "variableType" : "Integer", "documentation" : "

                  The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

                  ", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "xmlNameSpaceUri" : null }, "State" : { "c2jName" : "state", "c2jShape" : "JQState", "deprecated" : false, "documentation" : "

                  Describes the queue's ability to accept new jobs.

                  ", "enumType" : "JQState", "fluentSetterDocumentation" : "/**

                  Describes the queue's ability to accept new jobs.

                  \n@param state Describes the queue's ability to accept new jobs.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JQState*/", "fluentSetterMethodName" : "withState", "getterDocumentation" : "/**

                  Describes the queue's ability to accept new jobs.

                  \n@return Describes the queue's ability to accept new jobs.\n@see JQState*/", "getterMethodName" : "getState", "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" : "state", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "state", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "State", "setterDocumentation" : "/**

                  Describes the queue's ability to accept new jobs.

                  \n@param state Describes the queue's ability to accept new jobs.\n@see JQState*/", "setterMethodName" : "setState", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  Describes the queue's ability to accept new jobs.

                  \n@param state Describes the queue's ability to accept new jobs.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JQState*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "state", "variableType" : "String", "documentation" : "

                  Describes the queue's ability to accept new jobs.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : [ "jobQueue" ], "shapeName" : "UpdateJobQueueRequest", "unmarshaller" : null, "variable" : { "variableDeclarationType" : "UpdateJobQueueRequest", "variableName" : "updateJobQueueRequest", "variableType" : "UpdateJobQueueRequest", "documentation" : null, "simpleType" : "UpdateJobQueueRequest", "variableSetterType" : "UpdateJobQueueRequest" }, "wrapper" : false }, "UpdateJobQueueResult" : { "c2jName" : "UpdateJobQueueResponse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "jobQueueName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job queue.

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

                  The name of the job queue.

                  \n@return The name of the job queue.*/", "getterMethodName" : "getJobQueueName", "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" : "jobQueueName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueueName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueueName", "setterDocumentation" : "/**

                  The name of the job queue.

                  \n@param jobQueueName The name of the job queue.*/", "setterMethodName" : "setJobQueueName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueueName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job queue.

                  \n@param jobQueueName The name of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueueName", "variableType" : "String", "documentation" : "

                  The name of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, { "c2jName" : "jobQueueArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueueArn", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@return The Amazon Resource Name (ARN) of the job queue.*/", "getterMethodName" : "getJobQueueArn", "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" : "jobQueueArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueueArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueueArn", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.*/", "setterMethodName" : "setJobQueueArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueueArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueueArn", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "JobQueueArn" : { "c2jName" : "jobQueueArn", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The Amazon Resource Name (ARN) of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withJobQueueArn", "getterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@return The Amazon Resource Name (ARN) of the job queue.*/", "getterMethodName" : "getJobQueueArn", "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" : "jobQueueArn", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueueArn", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueueArn", "setterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.*/", "setterMethodName" : "setJobQueueArn", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueueArn", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The Amazon Resource Name (ARN) of the job queue.

                  \n@param jobQueueArn The Amazon Resource Name (ARN) of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueueArn", "variableType" : "String", "documentation" : "

                  The Amazon Resource Name (ARN) of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null }, "JobQueueName" : { "c2jName" : "jobQueueName", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the job queue.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the job queue.

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

                  The name of the job queue.

                  \n@return The name of the job queue.*/", "getterMethodName" : "getJobQueueName", "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" : "jobQueueName", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "jobQueueName", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "JobQueueName", "setterDocumentation" : "/**

                  The name of the job queue.

                  \n@param jobQueueName The name of the job queue.*/", "setterMethodName" : "setJobQueueName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "jobQueueName", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the job queue.

                  \n@param jobQueueName The name of the job queue.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "jobQueueName", "variableType" : "String", "documentation" : "

                  The name of the job queue.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "UpdateJobQueueResult", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "UpdateJobQueueResult", "variableName" : "updateJobQueueResult", "variableType" : "UpdateJobQueueResult", "documentation" : null, "simpleType" : "UpdateJobQueueResult", "variableSetterType" : "UpdateJobQueueResult" }, "wrapper" : false }, "Volume" : { "c2jName" : "Volume", "customization" : { "artificialResultWrapper" : null, "skipGeneratingMarshaller" : false, "skipGeneratingModelClass" : false, "skipGeneratingUnmarshaller" : false }, "deprecated" : false, "documentation" : "

                  A data volume used in a job's container properties.

                  ", "enums" : null, "errorCode" : null, "hasHeaderMember" : false, "hasPayloadMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "marshaller" : null, "members" : [ { "c2jName" : "host", "c2jShape" : "Host", "deprecated" : false, "documentation" : "

                  The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

                  \n@param host The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withHost", "getterDocumentation" : "/**

                  The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

                  \n@return The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.*/", "getterMethodName" : "getHost", "getterModel" : { "returnType" : "Host", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "host", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "host", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Host", "setterDocumentation" : "/**

                  The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

                  \n@param host The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.*/", "setterMethodName" : "setHost", "setterModel" : { "variableDeclarationType" : "Host", "variableName" : "host", "variableType" : "Host", "documentation" : "", "simpleType" : "Host", "variableSetterType" : "Host" }, "simple" : false, "varargSetterDocumentation" : "/**

                  The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

                  \n@param host The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Host", "variableName" : "host", "variableType" : "Host", "documentation" : "

                  The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

                  ", "simpleType" : "Host", "variableSetterType" : "Host" }, "xmlNameSpaceUri" : null }, { "c2jName" : "name", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.

                  \n@param name The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withName", "getterDocumentation" : "/**

                  The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.

                  \n@return The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.*/", "getterMethodName" : "getName", "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, "statusCode" : false, "unmarshallLocationName" : "name", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Name", "setterDocumentation" : "/**

                  The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.

                  \n@param name The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.*/", "setterMethodName" : "setName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.

                  \n@param name The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "

                  The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } ], "membersAsMap" : { "Host" : { "c2jName" : "host", "c2jShape" : "Host", "deprecated" : false, "documentation" : "

                  The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

                  \n@param host The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withHost", "getterDocumentation" : "/**

                  The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

                  \n@return The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.*/", "getterMethodName" : "getHost", "getterModel" : { "returnType" : "Host", "documentation" : null }, "http" : { "additionalMarshallingPath" : null, "additionalUnmarshallingPath" : null, "flattened" : false, "greedy" : false, "header" : false, "isPayload" : false, "isStreaming" : false, "location" : null, "marshallLocation" : "PAYLOAD", "marshallLocationName" : "host", "queryString" : false, "statusCode" : false, "unmarshallLocationName" : "host", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "StructuredPojo", "marshallingType" : "STRUCTURED", "name" : "Host", "setterDocumentation" : "/**

                  The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

                  \n@param host The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.*/", "setterMethodName" : "setHost", "setterModel" : { "variableDeclarationType" : "Host", "variableName" : "host", "variableType" : "Host", "documentation" : "", "simpleType" : "Host", "variableSetterType" : "Host" }, "simple" : false, "varargSetterDocumentation" : "/**

                  The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

                  \n@param host The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "Host", "variableName" : "host", "variableType" : "Host", "documentation" : "

                  The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

                  ", "simpleType" : "Host", "variableSetterType" : "Host" }, "xmlNameSpaceUri" : null }, "Name" : { "c2jName" : "name", "c2jShape" : "String", "deprecated" : false, "documentation" : "

                  The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.

                  ", "enumType" : null, "fluentSetterDocumentation" : "/**

                  The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.

                  \n@param name The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withName", "getterDocumentation" : "/**

                  The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.

                  \n@return The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.*/", "getterMethodName" : "getName", "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, "statusCode" : false, "unmarshallLocationName" : "name", "uri" : false }, "idempotencyToken" : false, "isBinary" : false, "list" : false, "listModel" : null, "map" : false, "mapModel" : null, "marshallingTargetClass" : "String", "marshallingType" : "STRING", "name" : "Name", "setterDocumentation" : "/**

                  The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.

                  \n@param name The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.*/", "setterMethodName" : "setName", "setterModel" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "simple" : true, "varargSetterDocumentation" : "/**

                  The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.

                  \n@param name The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "variableDeclarationType" : "String", "variableName" : "name", "variableType" : "String", "documentation" : "

                  The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.

                  ", "simpleType" : "String", "variableSetterType" : "String" }, "xmlNameSpaceUri" : null } }, "requestSignerAware" : false, "requestSignerClassFqcn" : null, "required" : null, "shapeName" : "Volume", "unmarshaller" : { "flattened" : false, "resultWrapper" : null }, "variable" : { "variableDeclarationType" : "Volume", "variableName" : "volume", "variableType" : "Volume", "documentation" : null, "simpleType" : "Volume", "variableSetterType" : "Volume" }, "wrapper" : false } }, "clientConfigFactory" : "ClientConfigurationFactory", "customAuthorizers" : { }, "examples" : { "examples" : { "CancelJob" : [ { "comments" : { "input" : { }, "output" : { } }, "description" : "This example cancels a job with the specified job ID.", "id" : "to-cancel-a-job-1481152314733", "input" : { "jobId" : "1d828f65-7a4d-42e8-996d-3b900ed59dc4", "reason" : "Cancelling job." }, "output" : { }, "title" : "To cancel a job" } ], "CreateComputeEnvironment" : [ { "comments" : { "input" : { }, "output" : { } }, "description" : "This example creates a managed compute environment with specific C4 instance types that are launched on demand. The compute environment is called C4OnDemand.", "id" : "to-create-a-managed-ec2-compute-environment-1481152600017", "input" : { "computeEnvironmentName" : "C4OnDemand", "type" : "MANAGED", "state" : "ENABLED", "computeResources" : { "type" : "EC2", "minvCpus" : 0, "maxvCpus" : 128, "desiredvCpus" : 48, "instanceTypes" : [ "c4.large", "c4.xlarge", "c4.2xlarge", "c4.4xlarge", "c4.8xlarge" ], "subnets" : [ "subnet-220c0e0a", "subnet-1a95556d", "subnet-978f6dce" ], "securityGroupIds" : [ "sg-cf5093b2" ], "ec2KeyPair" : "id_rsa", "instanceRole" : "ecsInstanceRole", "tags" : { } }, "serviceRole" : "arn:aws:iam::012345678910:role/AWSBatchServiceRole" }, "output" : { "computeEnvironmentName" : "C4OnDemand", "computeEnvironmentArn" : "arn:aws:batch:us-east-1:012345678910:compute-environment/C4OnDemand" }, "title" : "To create a managed EC2 compute environment" }, { "comments" : { "input" : { }, "output" : { } }, "description" : "This example creates a managed compute environment with the M4 instance type that is launched when the Spot bid price is at or below 20% of the On-Demand price for the instance type. The compute environment is called M4Spot.", "id" : "to-create-a-managed-ec2-spot-compute-environment-1481152844190", "input" : { "computeEnvironmentName" : "M4Spot", "type" : "MANAGED", "state" : "ENABLED", "computeResources" : { "type" : "SPOT", "minvCpus" : 0, "maxvCpus" : 128, "desiredvCpus" : 4, "instanceTypes" : [ "m4" ], "subnets" : [ "subnet-220c0e0a", "subnet-1a95556d", "subnet-978f6dce" ], "securityGroupIds" : [ "sg-cf5093b2" ], "ec2KeyPair" : "id_rsa", "instanceRole" : "ecsInstanceRole", "tags" : { }, "bidPercentage" : 20, "spotIamFleetRole" : "arn:aws:iam::012345678910:role/aws-ec2-spot-fleet-role" }, "serviceRole" : "arn:aws:iam::012345678910:role/AWSBatchServiceRole" }, "output" : { "computeEnvironmentName" : "M4Spot", "computeEnvironmentArn" : "arn:aws:batch:us-east-1:012345678910:compute-environment/M4Spot" }, "title" : "To create a managed EC2 Spot compute environment" } ], "CreateJobQueue" : [ { "comments" : { "input" : { }, "output" : { } }, "description" : "This example creates a job queue called LowPriority that uses the M4Spot compute environment.", "id" : "to-create-a-job-queue-with-a-single-compute-environment-1481152967946", "input" : { "jobQueueName" : "LowPriority", "state" : "ENABLED", "priority" : 10, "computeEnvironmentOrder" : [ { "order" : 1, "computeEnvironment" : "M4Spot" } ] }, "output" : { "jobQueueName" : "LowPriority", "jobQueueArn" : "arn:aws:batch:us-east-1:012345678910:job-queue/LowPriority" }, "title" : "To create a job queue with a single compute environment" }, { "comments" : { "input" : { }, "output" : { } }, "description" : "This example creates a job queue called HighPriority that uses the C4OnDemand compute environment with an order of 1 and the M4Spot compute environment with an order of 2.", "id" : "to-create-a-job-queue-with-multiple-compute-environments-1481153027051", "input" : { "jobQueueName" : "HighPriority", "state" : "ENABLED", "priority" : 1, "computeEnvironmentOrder" : [ { "order" : 1, "computeEnvironment" : "C4OnDemand" }, { "order" : 2, "computeEnvironment" : "M4Spot" } ] }, "output" : { "jobQueueName" : "HighPriority", "jobQueueArn" : "arn:aws:batch:us-east-1:012345678910:job-queue/HighPriority" }, "title" : "To create a job queue with multiple compute environments" } ], "DeleteComputeEnvironment" : [ { "comments" : { "input" : { }, "output" : { } }, "description" : "This example deletes the P2OnDemand compute environment.", "id" : "to-delete-a-compute-environment-1481153105644", "input" : { "computeEnvironment" : "P2OnDemand" }, "output" : { }, "title" : "To delete a compute environment" } ], "DeleteJobQueue" : [ { "comments" : { "input" : { }, "output" : { } }, "description" : "This example deletes the GPGPU job queue.", "id" : "to-delete-a-job-queue-1481153508134", "input" : { "jobQueue" : "GPGPU" }, "output" : { }, "title" : "To delete a job queue" } ], "DeregisterJobDefinition" : [ { "comments" : { "input" : { }, "output" : { } }, "description" : "This example deregisters a job definition called sleep10.", "id" : "to-deregister-a-job-definition-1481153579565", "input" : { "jobDefinition" : "sleep10" }, "output" : { }, "title" : "To deregister a job definition" } ], "DescribeComputeEnvironments" : [ { "comments" : { "input" : { }, "output" : { } }, "description" : "This example describes the P2OnDemand compute environment.", "id" : "to-describe-a-compute-environment-1481153713334", "input" : { "computeEnvironments" : [ "P2OnDemand" ] }, "output" : { "computeEnvironments" : [ { "computeEnvironmentName" : "P2OnDemand", "computeEnvironmentArn" : "arn:aws:batch:us-east-1:012345678910:compute-environment/P2OnDemand", "ecsClusterArn" : "arn:aws:ecs:us-east-1:012345678910:cluster/P2OnDemand_Batch_2c06f29d-d1fe-3a49-879d-42394c86effc", "type" : "MANAGED", "state" : "ENABLED", "status" : "VALID", "statusReason" : "ComputeEnvironment Healthy", "computeResources" : { "type" : "EC2", "minvCpus" : 0, "maxvCpus" : 128, "desiredvCpus" : 48, "instanceTypes" : [ "p2" ], "subnets" : [ "subnet-220c0e0a", "subnet-1a95556d", "subnet-978f6dce" ], "securityGroupIds" : [ "sg-cf5093b2" ], "ec2KeyPair" : "id_rsa", "instanceRole" : "ecsInstanceRole", "tags" : { } }, "serviceRole" : "arn:aws:iam::012345678910:role/AWSBatchServiceRole" } ] }, "title" : "To describe a compute environment" } ], "DescribeJobDefinitions" : [ { "comments" : { "input" : { }, "output" : { } }, "description" : "This example describes all of your active job definitions.", "id" : "to-describe-active-job-definitions-1481153895831", "input" : { "status" : "ACTIVE" }, "output" : { "jobDefinitions" : [ { "jobDefinitionName" : "sleep60", "jobDefinitionArn" : "arn:aws:batch:us-east-1:012345678910:job-definition/sleep60:1", "revision" : 1, "status" : "ACTIVE", "type" : "container", "containerProperties" : { "image" : "busybox", "vcpus" : 1, "memory" : 128, "command" : [ "sleep", "60" ], "volumes" : [ ], "environment" : [ ], "mountPoints" : [ ], "ulimits" : [ ] } } ] }, "title" : "To describe active job definitions" } ], "DescribeJobQueues" : [ { "comments" : { "input" : { }, "output" : { } }, "description" : "This example describes the HighPriority job queue.", "id" : "to-describe-a-job-queue-1481153995804", "input" : { "jobQueues" : [ "HighPriority" ] }, "output" : { "jobQueues" : [ { "jobQueueName" : "HighPriority", "jobQueueArn" : "arn:aws:batch:us-east-1:012345678910:job-queue/HighPriority", "state" : "ENABLED", "status" : "VALID", "statusReason" : "JobQueue Healthy", "priority" : 1, "computeEnvironmentOrder" : [ { "order" : 1, "computeEnvironment" : "arn:aws:batch:us-east-1:012345678910:compute-environment/C4OnDemand" } ] } ] }, "title" : "To describe a job queue" } ], "DescribeJobs" : [ { "comments" : { "input" : { }, "output" : { } }, "description" : "This example describes a job with the specified job ID.", "id" : "to-describe-a-specific-job-1481154090490", "input" : { "jobs" : [ "24fa2d7a-64c4-49d2-8b47-f8da4fbde8e9" ] }, "output" : { "jobs" : [ { "jobName" : "example", "jobId" : "24fa2d7a-64c4-49d2-8b47-f8da4fbde8e9", "jobQueue" : "arn:aws:batch:us-east-1:012345678910:job-queue/HighPriority", "status" : "SUCCEEDED", "createdAt" : 1480460782010, "startedAt" : 1480460816500, "stoppedAt" : 1480460880699, "dependsOn" : [ ], "jobDefinition" : "sleep60", "parameters" : { }, "container" : { "image" : "busybox", "vcpus" : 1, "memory" : 128, "command" : [ "sleep", "60" ], "volumes" : [ ], "environment" : [ ], "mountPoints" : [ ], "ulimits" : [ ], "exitCode" : 0, "containerInstanceArn" : "arn:aws:ecs:us-east-1:012345678910:container-instance/5406d7cd-58bd-4b8f-9936-48d7c6b1526c" } } ] }, "title" : "To describe a specific job" } ], "ListJobs" : [ { "comments" : { "input" : { }, "output" : { } }, "description" : "This example lists the running jobs in the HighPriority job queue.", "id" : "to-list-running-jobs-1481154202164", "input" : { "jobQueue" : "HighPriority" }, "output" : { "jobSummaryList" : [ { "jobId" : "e66ff5fd-a1ff-4640-b1a2-0b0a142f49bb", "jobName" : "example" } ] }, "title" : "To list running jobs" }, { "comments" : { "input" : { }, "output" : { } }, "description" : "This example lists jobs in the HighPriority job queue that are in the SUBMITTED job status.", "id" : "to-list-submitted-jobs-1481154251623", "input" : { "jobQueue" : "HighPriority", "jobStatus" : "SUBMITTED" }, "output" : { "jobSummaryList" : [ { "jobId" : "68f0c163-fbd4-44e6-9fd1-25b14a434786", "jobName" : "example" } ] }, "title" : "To list submitted jobs" } ], "RegisterJobDefinition" : [ { "comments" : { "input" : { }, "output" : { } }, "description" : "This example registers a job definition for a simple container job.", "id" : "to-register-a-job-definition-1481154325325", "input" : { "jobDefinitionName" : "sleep10", "type" : "container", "containerProperties" : { "image" : "busybox", "vcpus" : 1, "memory" : 128, "command" : [ "sleep", "10" ] } }, "output" : { "jobDefinitionName" : "sleep10", "jobDefinitionArn" : "arn:aws:batch:us-east-1:012345678910:job-definition/sleep10:1", "revision" : 1 }, "title" : "To register a job definition" } ], "SubmitJob" : [ { "comments" : { "input" : { }, "output" : { } }, "description" : "This example submits a simple container job called example to the HighPriority job queue.", "id" : "to-submit-a-job-to-a-queue-1481154481673", "input" : { "jobName" : "example", "jobQueue" : "HighPriority", "jobDefinition" : "sleep60" }, "output" : { "jobName" : "example", "jobId" : "876da822-4198-45f2-a252-6cea32512ea8" }, "title" : "To submit a job to a queue" } ], "TerminateJob" : [ { "comments" : { "input" : { }, "output" : { } }, "description" : "This example terminates a job with the specified job ID.", "id" : "to-terminate-a-job-1481154558276", "input" : { "jobId" : "61e743ed-35e4-48da-b2de-5c8333821c84", "reason" : "Terminating job." }, "output" : { }, "title" : "To terminate a job" } ], "UpdateComputeEnvironment" : [ { "comments" : { "input" : { }, "output" : { } }, "description" : "This example disables the P2OnDemand compute environment so it can be deleted.", "id" : "to-update-a-compute-environment-1481154702731", "input" : { "computeEnvironment" : "P2OnDemand", "state" : "DISABLED" }, "output" : { "computeEnvironmentName" : "P2OnDemand", "computeEnvironmentArn" : "arn:aws:batch:us-east-1:012345678910:compute-environment/P2OnDemand" }, "title" : "To update a compute environment" } ], "UpdateJobQueue" : [ { "comments" : { "input" : { }, "output" : { } }, "description" : "This example disables a job queue so that it can be deleted.", "id" : "to-update-a-job-queue-1481154806981", "input" : { "jobQueue" : "GPGPU", "state" : "DISABLED" }, "output" : { "jobQueueName" : "GPGPU", "jobQueueArn" : "arn:aws:batch:us-east-1:012345678910:job-queue/GPGPU" }, "title" : "To update a job queue" } ] }, "version" : "1.0" }, "exceptionUnmarshallerImpl" : null, "fileHeader" : "/*\n * Copyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights\n * 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 */", "hasWaiters" : false, "sdkBaseResponseFqcn" : "com.amazonaws.AmazonWebServiceResult", "sdkModeledExceptionBaseClassName" : "AWSBatchException", "sdkModeledExceptionBaseFqcn" : "com.amazonaws.services.batch.model.AWSBatchException", "serviceBaseExceptionFqcn" : "com.amazonaws.AmazonServiceException", "transformPackage" : "com.amazonaws.services.batch.model.transform" }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy