
models.codepipeline-2015-07-09-intermediate.json Maven / Gradle / Ivy
Show all versions of aws-java-sdk-codepipeline Show documentation
{
"metadata" : {
"apiVersion" : "2015-07-09",
"protocol" : "json",
"checksumFormat" : null,
"documentation" : "AWS CodePipeline Overview
This is the AWS CodePipeline API Reference. This guide provides descriptions of the actions and data types for AWS CodePipeline. Some functionality for your pipeline is only configurable through the API. For additional information, see the AWS CodePipeline User Guide.
You can use the AWS CodePipeline API to work with pipelines, stages, actions, gates, and transitions, as described below.
Pipelines are models of automated release processes. Each pipeline is uniquely named, and consists of actions, gates, and stages.
You can work with pipelines by calling:
-
CreatePipeline, which creates a uniquely-named pipeline.
-
DeletePipeline, which deletes the specified pipeline.
-
GetPipeline, which returns information about a pipeline structure.
-
GetPipelineExecution, which returns information about a specific execution of a pipeline.
-
GetPipelineState, which returns information about the current state of the stages and actions of a pipeline.
-
ListPipelines, which gets a summary of all of the pipelines associated with your account.
-
StartPipelineExecution, which runs the the most recent revision of an artifact through the pipeline.
-
UpdatePipeline, which updates a pipeline with edits or changes to the structure of the pipeline.
Pipelines include stages, which are which are logical groupings of gates and actions. Each stage contains one or more actions that must complete before the next stage begins. A stage will result in success or failure. If a stage fails, then the pipeline stops at that stage and will remain stopped until either a new version of an artifact appears in the source location, or a user takes action to re-run the most recent artifact through the pipeline. You can call GetPipelineState, which displays the status of a pipeline, including the status of stages in the pipeline, or GetPipeline, which returns the entire structure of the pipeline, including the stages of that pipeline. For more information about the structure of stages and actions, also refer to the AWS CodePipeline Pipeline Structure Reference.
Pipeline stages include actions, which are categorized into categories such as source or build actions performed within a stage of a pipeline. For example, you can use a source action to import artifacts into a pipeline from a source such as Amazon S3. Like stages, you do not work with actions directly in most cases, but you do define and interact with actions when working with pipeline operations such as CreatePipeline and GetPipelineState.
Pipelines also include transitions, which allow the transition of artifacts from one stage to the next in a pipeline after the actions in one stage complete.
You can work with transitions by calling:
-
DisableStageTransition, which prevents artifacts from transitioning to the next stage in a pipeline.
-
EnableStageTransition, which enables transition of artifacts between stages in a pipeline.
Using the API to integrate with AWS CodePipeline
For third-party integrators or developers who want to create their own integrations with AWS CodePipeline, the expected sequence varies from the standard API user. In order to integrate with AWS CodePipeline, developers will need to work with the following items:
Jobs, which are instances of an action. For example, a job for a source action might import a revision of an artifact from a source.
You can work with jobs by calling:
-
AcknowledgeJob, which confirms whether a job worker has received the specified job,
-
GetJobDetails, which returns the details of a job,
-
PollForJobs, which determines whether there are any jobs to act upon,
-
PutJobFailureResult, which provides details of a job failure, and
-
PutJobSuccessResult, which provides details of a job success.
Third party jobs, which are instances of an action created by a partner action and integrated into AWS CodePipeline. Partner actions are created by members of the AWS Partner Network.
You can work with third party jobs by calling:
-
AcknowledgeThirdPartyJob, which confirms whether a job worker has received the specified job,
-
GetThirdPartyJobDetails, which requests the details of a job for a partner action,
-
PollForThirdPartyJobs, which determines whether there are any jobs to act upon,
-
PutThirdPartyJobFailureResult, which provides details of a job failure, and
-
PutThirdPartyJobSuccessResult, which provides details of a job success.
",
"defaultEndpoint" : "https://codepipeline.us-east-1.amazonaws.com",
"defaultEndpointWithoutHttpProtocol" : "codepipeline.us-east-1.amazonaws.com",
"syncInterface" : "AWSCodePipeline",
"syncClient" : "AWSCodePipelineClient",
"asyncInterface" : "AWSCodePipelineAsync",
"asyncClient" : "AWSCodePipelineAsyncClient",
"packageName" : "com.amazonaws.services.codepipeline",
"packagePath" : "com/amazonaws/services/codepipeline",
"serviceAbbreviation" : "CodePipeline",
"serviceFullName" : "AWS CodePipeline",
"hasApiWithStreamInput" : false,
"contentType" : null,
"jsonVersion" : "1.1",
"endpointPrefix" : "codepipeline",
"signingName" : "codepipeline",
"protocolDefaultExceptionUmarshallerImpl" : null,
"syncClientBuilderClassName" : "AWSCodePipelineClientBuilder",
"asyncClientBuilderClassName" : "AWSCodePipelineAsyncClientBuilder",
"cucumberModuleInjectorClassName" : "AWSCodePipelineModuleInjector",
"smokeTestsPackageName" : "com.amazonaws.services.codepipeline.smoketests",
"serviceName" : "CodePipeline",
"cborProtocol" : false,
"xmlProtocol" : false,
"unmarshallerContextClassName" : "JsonUnmarshallerContext",
"unmarshallerClassSuffix" : "JsonUnmarshaller",
"jsonProtocol" : true
},
"operations" : {
"AcknowledgeJob" : {
"documentation" : "Returns information about a specified job and whether that job has been received by the job worker. Only used for custom actions.
",
"operationName" : "AcknowledgeJob",
"deprecated" : false,
"input" : {
"variableName" : "acknowledgeJobRequest",
"variableType" : "AcknowledgeJobRequest",
"variableDeclarationType" : "AcknowledgeJobRequest",
"documentation" : "Represents the input of an acknowledge job action.
",
"simpleType" : "AcknowledgeJobRequest",
"variableSetterType" : "AcknowledgeJobRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "AcknowledgeJobResult",
"documentation" : "Represents the output of an acknowledge job action.
"
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "InvalidNonceException",
"documentation" : "The specified nonce was specified in an invalid format.
"
}, {
"exceptionName" : "JobNotFoundException",
"documentation" : "The specified job was specified in an invalid format or cannot be found.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "AcknowledgeJobResult",
"asyncReturnType" : "AcknowledgeJobResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "acknowledgeJob"
},
"AcknowledgeThirdPartyJob" : {
"documentation" : "Confirms a job worker has received the specified job. Only used for partner actions.
",
"operationName" : "AcknowledgeThirdPartyJob",
"deprecated" : false,
"input" : {
"variableName" : "acknowledgeThirdPartyJobRequest",
"variableType" : "AcknowledgeThirdPartyJobRequest",
"variableDeclarationType" : "AcknowledgeThirdPartyJobRequest",
"documentation" : "Represents the input of an acknowledge third party job action.
",
"simpleType" : "AcknowledgeThirdPartyJobRequest",
"variableSetterType" : "AcknowledgeThirdPartyJobRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "AcknowledgeThirdPartyJobResult",
"documentation" : "Represents the output of an acknowledge third party job action.
"
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "InvalidNonceException",
"documentation" : "The specified nonce was specified in an invalid format.
"
}, {
"exceptionName" : "JobNotFoundException",
"documentation" : "The specified job was specified in an invalid format or cannot be found.
"
}, {
"exceptionName" : "InvalidClientTokenException",
"documentation" : "The client token was specified in an invalid format
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "AcknowledgeThirdPartyJobResult",
"asyncReturnType" : "AcknowledgeThirdPartyJobResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "acknowledgeThirdPartyJob"
},
"CreateCustomActionType" : {
"documentation" : "Creates a new custom action that can be used in all pipelines associated with the AWS account. Only used for custom actions.
",
"operationName" : "CreateCustomActionType",
"deprecated" : false,
"input" : {
"variableName" : "createCustomActionTypeRequest",
"variableType" : "CreateCustomActionTypeRequest",
"variableDeclarationType" : "CreateCustomActionTypeRequest",
"documentation" : "Represents the input of a create custom action operation.
",
"simpleType" : "CreateCustomActionTypeRequest",
"variableSetterType" : "CreateCustomActionTypeRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "CreateCustomActionTypeResult",
"documentation" : "Represents the output of a create custom action operation.
"
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "LimitExceededException",
"documentation" : "The number of pipelines associated with the AWS account has exceeded the limit allowed for the account.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "CreateCustomActionTypeResult",
"asyncReturnType" : "CreateCustomActionTypeResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "createCustomActionType"
},
"CreatePipeline" : {
"documentation" : "Creates a pipeline.
",
"operationName" : "CreatePipeline",
"deprecated" : false,
"input" : {
"variableName" : "createPipelineRequest",
"variableType" : "CreatePipelineRequest",
"variableDeclarationType" : "CreatePipelineRequest",
"documentation" : "Represents the input of a create pipeline action.
",
"simpleType" : "CreatePipelineRequest",
"variableSetterType" : "CreatePipelineRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "CreatePipelineResult",
"documentation" : "Represents the output of a create pipeline action.
"
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "PipelineNameInUseException",
"documentation" : "The specified pipeline name is already in use.
"
}, {
"exceptionName" : "InvalidStageDeclarationException",
"documentation" : "The specified stage declaration was specified in an invalid format.
"
}, {
"exceptionName" : "InvalidActionDeclarationException",
"documentation" : "The specified action declaration was specified in an invalid format.
"
}, {
"exceptionName" : "InvalidBlockerDeclarationException",
"documentation" : "Reserved for future use.
"
}, {
"exceptionName" : "InvalidStructureException",
"documentation" : "The specified structure was specified in an invalid format.
"
}, {
"exceptionName" : "LimitExceededException",
"documentation" : "The number of pipelines associated with the AWS account has exceeded the limit allowed for the account.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "CreatePipelineResult",
"asyncReturnType" : "CreatePipelineResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "createPipeline"
},
"DeleteCustomActionType" : {
"documentation" : "Marks a custom action as deleted. PollForJobs for the custom action will fail after the action is marked for deletion. Only used for custom actions.
You cannot recreate a custom action after it has been deleted unless you increase the version number of the action.
",
"operationName" : "DeleteCustomActionType",
"deprecated" : false,
"input" : {
"variableName" : "deleteCustomActionTypeRequest",
"variableType" : "DeleteCustomActionTypeRequest",
"variableDeclarationType" : "DeleteCustomActionTypeRequest",
"documentation" : "Represents the input of a delete custom action operation. The custom action will be marked as deleted.
",
"simpleType" : "DeleteCustomActionTypeRequest",
"variableSetterType" : "DeleteCustomActionTypeRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DeleteCustomActionTypeResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "DeleteCustomActionTypeResult",
"asyncReturnType" : "DeleteCustomActionTypeResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "deleteCustomActionType"
},
"DeletePipeline" : {
"documentation" : "Deletes the specified pipeline.
",
"operationName" : "DeletePipeline",
"deprecated" : false,
"input" : {
"variableName" : "deletePipelineRequest",
"variableType" : "DeletePipelineRequest",
"variableDeclarationType" : "DeletePipelineRequest",
"documentation" : "Represents the input of a delete pipeline action.
",
"simpleType" : "DeletePipelineRequest",
"variableSetterType" : "DeletePipelineRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DeletePipelineResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "DeletePipelineResult",
"asyncReturnType" : "DeletePipelineResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "deletePipeline"
},
"DisableStageTransition" : {
"documentation" : "Prevents artifacts in a pipeline from transitioning to the next stage in the pipeline.
",
"operationName" : "DisableStageTransition",
"deprecated" : false,
"input" : {
"variableName" : "disableStageTransitionRequest",
"variableType" : "DisableStageTransitionRequest",
"variableDeclarationType" : "DisableStageTransitionRequest",
"documentation" : "Represents the input of a disable stage transition input action.
",
"simpleType" : "DisableStageTransitionRequest",
"variableSetterType" : "DisableStageTransitionRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DisableStageTransitionResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "PipelineNotFoundException",
"documentation" : "The specified pipeline was specified in an invalid format or cannot be found.
"
}, {
"exceptionName" : "StageNotFoundException",
"documentation" : "The specified stage was specified in an invalid format or cannot be found.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "DisableStageTransitionResult",
"asyncReturnType" : "DisableStageTransitionResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "disableStageTransition"
},
"EnableStageTransition" : {
"documentation" : "Enables artifacts in a pipeline to transition to a stage in a pipeline.
",
"operationName" : "EnableStageTransition",
"deprecated" : false,
"input" : {
"variableName" : "enableStageTransitionRequest",
"variableType" : "EnableStageTransitionRequest",
"variableDeclarationType" : "EnableStageTransitionRequest",
"documentation" : "Represents the input of an enable stage transition action.
",
"simpleType" : "EnableStageTransitionRequest",
"variableSetterType" : "EnableStageTransitionRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "EnableStageTransitionResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "PipelineNotFoundException",
"documentation" : "The specified pipeline was specified in an invalid format or cannot be found.
"
}, {
"exceptionName" : "StageNotFoundException",
"documentation" : "The specified stage was specified in an invalid format or cannot be found.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "EnableStageTransitionResult",
"asyncReturnType" : "EnableStageTransitionResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "enableStageTransition"
},
"GetJobDetails" : {
"documentation" : "Returns information about a job. Only used for custom actions.
When this API is called, AWS CodePipeline returns temporary credentials for the Amazon S3 bucket used to store artifacts for the pipeline, if the action requires access to that Amazon S3 bucket for input or output artifacts. Additionally, this API returns any secret values defined for the action.
",
"operationName" : "GetJobDetails",
"deprecated" : false,
"input" : {
"variableName" : "getJobDetailsRequest",
"variableType" : "GetJobDetailsRequest",
"variableDeclarationType" : "GetJobDetailsRequest",
"documentation" : "Represents the input of a get job details action.
",
"simpleType" : "GetJobDetailsRequest",
"variableSetterType" : "GetJobDetailsRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetJobDetailsResult",
"documentation" : "Represents the output of a get job details action.
"
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "JobNotFoundException",
"documentation" : "The specified job was specified in an invalid format or cannot be found.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "GetJobDetailsResult",
"asyncReturnType" : "GetJobDetailsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "getJobDetails"
},
"GetPipeline" : {
"documentation" : "Returns the metadata, structure, stages, and actions of a pipeline. Can be used to return the entire structure of a pipeline in JSON format, which can then be modified and used to update the pipeline structure with UpdatePipeline.
",
"operationName" : "GetPipeline",
"deprecated" : false,
"input" : {
"variableName" : "getPipelineRequest",
"variableType" : "GetPipelineRequest",
"variableDeclarationType" : "GetPipelineRequest",
"documentation" : "Represents the input of a get pipeline action.
",
"simpleType" : "GetPipelineRequest",
"variableSetterType" : "GetPipelineRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetPipelineResult",
"documentation" : "Represents the output of a get pipeline action.
"
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "PipelineNotFoundException",
"documentation" : "The specified pipeline was specified in an invalid format or cannot be found.
"
}, {
"exceptionName" : "PipelineVersionNotFoundException",
"documentation" : "The specified pipeline version was specified in an invalid format or cannot be found.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "GetPipelineResult",
"asyncReturnType" : "GetPipelineResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "getPipeline"
},
"GetPipelineExecution" : {
"documentation" : "Returns information about an execution of a pipeline, including details about artifacts, the pipeline execution ID, and the name, version, and status of the pipeline.
",
"operationName" : "GetPipelineExecution",
"deprecated" : false,
"input" : {
"variableName" : "getPipelineExecutionRequest",
"variableType" : "GetPipelineExecutionRequest",
"variableDeclarationType" : "GetPipelineExecutionRequest",
"documentation" : "Represents the input of a get pipeline execution action.
",
"simpleType" : "GetPipelineExecutionRequest",
"variableSetterType" : "GetPipelineExecutionRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetPipelineExecutionResult",
"documentation" : "Represents the output of a get pipeline execution action.
"
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "PipelineNotFoundException",
"documentation" : "The specified pipeline was specified in an invalid format or cannot be found.
"
}, {
"exceptionName" : "PipelineExecutionNotFoundException",
"documentation" : "The pipeline execution was specified in an invalid format or cannot be found, or an execution ID does not belong to the specified pipeline.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "GetPipelineExecutionResult",
"asyncReturnType" : "GetPipelineExecutionResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "getPipelineExecution"
},
"GetPipelineState" : {
"documentation" : "Returns information about the state of a pipeline, including the stages and actions.
",
"operationName" : "GetPipelineState",
"deprecated" : false,
"input" : {
"variableName" : "getPipelineStateRequest",
"variableType" : "GetPipelineStateRequest",
"variableDeclarationType" : "GetPipelineStateRequest",
"documentation" : "Represents the input of a get pipeline state action.
",
"simpleType" : "GetPipelineStateRequest",
"variableSetterType" : "GetPipelineStateRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetPipelineStateResult",
"documentation" : "Represents the output of a get pipeline state action.
"
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "PipelineNotFoundException",
"documentation" : "The specified pipeline was specified in an invalid format or cannot be found.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "GetPipelineStateResult",
"asyncReturnType" : "GetPipelineStateResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "getPipelineState"
},
"GetThirdPartyJobDetails" : {
"documentation" : "Requests the details of a job for a third party action. Only used for partner actions.
When this API is called, AWS CodePipeline returns temporary credentials for the Amazon S3 bucket used to store artifacts for the pipeline, if the action requires access to that Amazon S3 bucket for input or output artifacts. Additionally, this API returns any secret values defined for the action.
",
"operationName" : "GetThirdPartyJobDetails",
"deprecated" : false,
"input" : {
"variableName" : "getThirdPartyJobDetailsRequest",
"variableType" : "GetThirdPartyJobDetailsRequest",
"variableDeclarationType" : "GetThirdPartyJobDetailsRequest",
"documentation" : "Represents the input of a get third party job details action.
",
"simpleType" : "GetThirdPartyJobDetailsRequest",
"variableSetterType" : "GetThirdPartyJobDetailsRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetThirdPartyJobDetailsResult",
"documentation" : "Represents the output of a get third party job details action.
"
},
"exceptions" : [ {
"exceptionName" : "JobNotFoundException",
"documentation" : "The specified job was specified in an invalid format or cannot be found.
"
}, {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "InvalidClientTokenException",
"documentation" : "The client token was specified in an invalid format
"
}, {
"exceptionName" : "InvalidJobException",
"documentation" : "The specified job was specified in an invalid format or cannot be found.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "GetThirdPartyJobDetailsResult",
"asyncReturnType" : "GetThirdPartyJobDetailsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "getThirdPartyJobDetails"
},
"ListActionTypes" : {
"documentation" : "Gets a summary of all AWS CodePipeline action types associated with your account.
",
"operationName" : "ListActionTypes",
"deprecated" : false,
"input" : {
"variableName" : "listActionTypesRequest",
"variableType" : "ListActionTypesRequest",
"variableDeclarationType" : "ListActionTypesRequest",
"documentation" : "Represents the input of a list action types action.
",
"simpleType" : "ListActionTypesRequest",
"variableSetterType" : "ListActionTypesRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ListActionTypesResult",
"documentation" : "Represents the output of a list action types action.
"
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "InvalidNextTokenException",
"documentation" : "The next token was specified in an invalid format. Make sure that the next token you provided is the token returned by a previous call.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "ListActionTypesResult",
"asyncReturnType" : "ListActionTypesResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "listActionTypes"
},
"ListPipelines" : {
"documentation" : "Gets a summary of all of the pipelines associated with your account.
",
"operationName" : "ListPipelines",
"deprecated" : false,
"input" : {
"variableName" : "listPipelinesRequest",
"variableType" : "ListPipelinesRequest",
"variableDeclarationType" : "ListPipelinesRequest",
"documentation" : "Represents the input of a list pipelines action.
",
"simpleType" : "ListPipelinesRequest",
"variableSetterType" : "ListPipelinesRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ListPipelinesResult",
"documentation" : "Represents the output of a list pipelines action.
"
},
"exceptions" : [ {
"exceptionName" : "InvalidNextTokenException",
"documentation" : "The next token was specified in an invalid format. Make sure that the next token you provided is the token returned by a previous call.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "ListPipelinesResult",
"asyncReturnType" : "ListPipelinesResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "listPipelines"
},
"PollForJobs" : {
"documentation" : "Returns information about any jobs for AWS CodePipeline to act upon.
When this API is called, AWS CodePipeline returns temporary credentials for the Amazon S3 bucket used to store artifacts for the pipeline, if the action requires access to that Amazon S3 bucket for input or output artifacts. Additionally, this API returns any secret values defined for the action.
",
"operationName" : "PollForJobs",
"deprecated" : false,
"input" : {
"variableName" : "pollForJobsRequest",
"variableType" : "PollForJobsRequest",
"variableDeclarationType" : "PollForJobsRequest",
"documentation" : "Represents the input of a poll for jobs action.
",
"simpleType" : "PollForJobsRequest",
"variableSetterType" : "PollForJobsRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "PollForJobsResult",
"documentation" : "Represents the output of a poll for jobs action.
"
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "ActionTypeNotFoundException",
"documentation" : "The specified action type cannot be found.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "PollForJobsResult",
"asyncReturnType" : "PollForJobsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "pollForJobs"
},
"PollForThirdPartyJobs" : {
"documentation" : "Determines whether there are any third party jobs for a job worker to act on. Only used for partner actions.
When this API is called, AWS CodePipeline returns temporary credentials for the Amazon S3 bucket used to store artifacts for the pipeline, if the action requires access to that Amazon S3 bucket for input or output artifacts.
",
"operationName" : "PollForThirdPartyJobs",
"deprecated" : false,
"input" : {
"variableName" : "pollForThirdPartyJobsRequest",
"variableType" : "PollForThirdPartyJobsRequest",
"variableDeclarationType" : "PollForThirdPartyJobsRequest",
"documentation" : "Represents the input of a poll for third party jobs action.
",
"simpleType" : "PollForThirdPartyJobsRequest",
"variableSetterType" : "PollForThirdPartyJobsRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "PollForThirdPartyJobsResult",
"documentation" : "Represents the output of a poll for third party jobs action.
"
},
"exceptions" : [ {
"exceptionName" : "ActionTypeNotFoundException",
"documentation" : "The specified action type cannot be found.
"
}, {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "PollForThirdPartyJobsResult",
"asyncReturnType" : "PollForThirdPartyJobsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "pollForThirdPartyJobs"
},
"PutActionRevision" : {
"documentation" : "Provides information to AWS CodePipeline about new revisions to a source.
",
"operationName" : "PutActionRevision",
"deprecated" : false,
"input" : {
"variableName" : "putActionRevisionRequest",
"variableType" : "PutActionRevisionRequest",
"variableDeclarationType" : "PutActionRevisionRequest",
"documentation" : "Represents the input of a put action revision action.
",
"simpleType" : "PutActionRevisionRequest",
"variableSetterType" : "PutActionRevisionRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "PutActionRevisionResult",
"documentation" : "Represents the output of a put action revision action.
"
},
"exceptions" : [ {
"exceptionName" : "PipelineNotFoundException",
"documentation" : "The specified pipeline was specified in an invalid format or cannot be found.
"
}, {
"exceptionName" : "StageNotFoundException",
"documentation" : "The specified stage was specified in an invalid format or cannot be found.
"
}, {
"exceptionName" : "ActionNotFoundException",
"documentation" : "The specified action cannot be found.
"
}, {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "PutActionRevisionResult",
"asyncReturnType" : "PutActionRevisionResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "putActionRevision"
},
"PutApprovalResult" : {
"documentation" : "Provides the response to a manual approval request to AWS CodePipeline. Valid responses include Approved and Rejected.
",
"operationName" : "PutApprovalResult",
"deprecated" : false,
"input" : {
"variableName" : "putApprovalResultRequest",
"variableType" : "PutApprovalResultRequest",
"variableDeclarationType" : "PutApprovalResultRequest",
"documentation" : "Represents the input of a put approval result action.
",
"simpleType" : "PutApprovalResultRequest",
"variableSetterType" : "PutApprovalResultRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "PutApprovalResultResult",
"documentation" : "Represents the output of a put approval result action.
"
},
"exceptions" : [ {
"exceptionName" : "InvalidApprovalTokenException",
"documentation" : "The approval request already received a response or has expired.
"
}, {
"exceptionName" : "ApprovalAlreadyCompletedException",
"documentation" : "The approval action has already been approved or rejected.
"
}, {
"exceptionName" : "PipelineNotFoundException",
"documentation" : "The specified pipeline was specified in an invalid format or cannot be found.
"
}, {
"exceptionName" : "StageNotFoundException",
"documentation" : "The specified stage was specified in an invalid format or cannot be found.
"
}, {
"exceptionName" : "ActionNotFoundException",
"documentation" : "The specified action cannot be found.
"
}, {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "PutApprovalResultResult",
"asyncReturnType" : "PutApprovalResultResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "putApprovalResult"
},
"PutJobFailureResult" : {
"documentation" : "Represents the failure of a job as returned to the pipeline by a job worker. Only used for custom actions.
",
"operationName" : "PutJobFailureResult",
"deprecated" : false,
"input" : {
"variableName" : "putJobFailureResultRequest",
"variableType" : "PutJobFailureResultRequest",
"variableDeclarationType" : "PutJobFailureResultRequest",
"documentation" : "Represents the input of a put job failure result action.
",
"simpleType" : "PutJobFailureResultRequest",
"variableSetterType" : "PutJobFailureResultRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "PutJobFailureResultResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "JobNotFoundException",
"documentation" : "The specified job was specified in an invalid format or cannot be found.
"
}, {
"exceptionName" : "InvalidJobStateException",
"documentation" : "The specified job state was specified in an invalid format.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "PutJobFailureResultResult",
"asyncReturnType" : "PutJobFailureResultResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "putJobFailureResult"
},
"PutJobSuccessResult" : {
"documentation" : "Represents the success of a job as returned to the pipeline by a job worker. Only used for custom actions.
",
"operationName" : "PutJobSuccessResult",
"deprecated" : false,
"input" : {
"variableName" : "putJobSuccessResultRequest",
"variableType" : "PutJobSuccessResultRequest",
"variableDeclarationType" : "PutJobSuccessResultRequest",
"documentation" : "Represents the input of a put job success result action.
",
"simpleType" : "PutJobSuccessResultRequest",
"variableSetterType" : "PutJobSuccessResultRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "PutJobSuccessResultResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "JobNotFoundException",
"documentation" : "The specified job was specified in an invalid format or cannot be found.
"
}, {
"exceptionName" : "InvalidJobStateException",
"documentation" : "The specified job state was specified in an invalid format.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "PutJobSuccessResultResult",
"asyncReturnType" : "PutJobSuccessResultResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "putJobSuccessResult"
},
"PutThirdPartyJobFailureResult" : {
"documentation" : "Represents the failure of a third party job as returned to the pipeline by a job worker. Only used for partner actions.
",
"operationName" : "PutThirdPartyJobFailureResult",
"deprecated" : false,
"input" : {
"variableName" : "putThirdPartyJobFailureResultRequest",
"variableType" : "PutThirdPartyJobFailureResultRequest",
"variableDeclarationType" : "PutThirdPartyJobFailureResultRequest",
"documentation" : "Represents the input of a third party job failure result action.
",
"simpleType" : "PutThirdPartyJobFailureResultRequest",
"variableSetterType" : "PutThirdPartyJobFailureResultRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "PutThirdPartyJobFailureResultResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "JobNotFoundException",
"documentation" : "The specified job was specified in an invalid format or cannot be found.
"
}, {
"exceptionName" : "InvalidJobStateException",
"documentation" : "The specified job state was specified in an invalid format.
"
}, {
"exceptionName" : "InvalidClientTokenException",
"documentation" : "The client token was specified in an invalid format
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "PutThirdPartyJobFailureResultResult",
"asyncReturnType" : "PutThirdPartyJobFailureResultResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "putThirdPartyJobFailureResult"
},
"PutThirdPartyJobSuccessResult" : {
"documentation" : "Represents the success of a third party job as returned to the pipeline by a job worker. Only used for partner actions.
",
"operationName" : "PutThirdPartyJobSuccessResult",
"deprecated" : false,
"input" : {
"variableName" : "putThirdPartyJobSuccessResultRequest",
"variableType" : "PutThirdPartyJobSuccessResultRequest",
"variableDeclarationType" : "PutThirdPartyJobSuccessResultRequest",
"documentation" : "Represents the input of a put third party job success result action.
",
"simpleType" : "PutThirdPartyJobSuccessResultRequest",
"variableSetterType" : "PutThirdPartyJobSuccessResultRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "PutThirdPartyJobSuccessResultResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "JobNotFoundException",
"documentation" : "The specified job was specified in an invalid format or cannot be found.
"
}, {
"exceptionName" : "InvalidJobStateException",
"documentation" : "The specified job state was specified in an invalid format.
"
}, {
"exceptionName" : "InvalidClientTokenException",
"documentation" : "The client token was specified in an invalid format
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "PutThirdPartyJobSuccessResultResult",
"asyncReturnType" : "PutThirdPartyJobSuccessResultResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "putThirdPartyJobSuccessResult"
},
"RetryStageExecution" : {
"documentation" : "Resumes the pipeline execution by retrying the last failed actions in a stage.
",
"operationName" : "RetryStageExecution",
"deprecated" : false,
"input" : {
"variableName" : "retryStageExecutionRequest",
"variableType" : "RetryStageExecutionRequest",
"variableDeclarationType" : "RetryStageExecutionRequest",
"documentation" : "Represents the input of a retry stage execution action.
",
"simpleType" : "RetryStageExecutionRequest",
"variableSetterType" : "RetryStageExecutionRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "RetryStageExecutionResult",
"documentation" : "Represents the output of a retry stage execution action.
"
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "PipelineNotFoundException",
"documentation" : "The specified pipeline was specified in an invalid format or cannot be found.
"
}, {
"exceptionName" : "StageNotFoundException",
"documentation" : "The specified stage was specified in an invalid format or cannot be found.
"
}, {
"exceptionName" : "StageNotRetryableException",
"documentation" : "The specified stage can't be retried because the pipeline structure or stage state changed after the stage was not completed; the stage contains no failed actions; one or more actions are still in progress; or another retry attempt is already in progress.
"
}, {
"exceptionName" : "NotLatestPipelineExecutionException",
"documentation" : "The stage has failed in a later run of the pipeline and the pipelineExecutionId associated with the request is out of date.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "RetryStageExecutionResult",
"asyncReturnType" : "RetryStageExecutionResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "retryStageExecution"
},
"StartPipelineExecution" : {
"documentation" : "Starts the specified pipeline. Specifically, it begins processing the latest commit to the source location specified as part of the pipeline.
",
"operationName" : "StartPipelineExecution",
"deprecated" : false,
"input" : {
"variableName" : "startPipelineExecutionRequest",
"variableType" : "StartPipelineExecutionRequest",
"variableDeclarationType" : "StartPipelineExecutionRequest",
"documentation" : "Represents the input of a start pipeline execution action.
",
"simpleType" : "StartPipelineExecutionRequest",
"variableSetterType" : "StartPipelineExecutionRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "StartPipelineExecutionResult",
"documentation" : "Represents the output of a start pipeline execution action.
"
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "PipelineNotFoundException",
"documentation" : "The specified pipeline was specified in an invalid format or cannot be found.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "StartPipelineExecutionResult",
"asyncReturnType" : "StartPipelineExecutionResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "startPipelineExecution"
},
"UpdatePipeline" : {
"documentation" : "Updates a specified pipeline with edits or changes to its structure. Use a JSON file with the pipeline structure in conjunction with UpdatePipeline to provide the full structure of the pipeline. Updating the pipeline increases the version number of the pipeline by 1.
",
"operationName" : "UpdatePipeline",
"deprecated" : false,
"input" : {
"variableName" : "updatePipelineRequest",
"variableType" : "UpdatePipelineRequest",
"variableDeclarationType" : "UpdatePipelineRequest",
"documentation" : "Represents the input of an update pipeline action.
",
"simpleType" : "UpdatePipelineRequest",
"variableSetterType" : "UpdatePipelineRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "UpdatePipelineResult",
"documentation" : "Represents the output of an update pipeline action.
"
},
"exceptions" : [ {
"exceptionName" : "ValidationException",
"documentation" : "The validation was specified in an invalid format.
"
}, {
"exceptionName" : "InvalidStageDeclarationException",
"documentation" : "The specified stage declaration was specified in an invalid format.
"
}, {
"exceptionName" : "InvalidActionDeclarationException",
"documentation" : "The specified action declaration was specified in an invalid format.
"
}, {
"exceptionName" : "InvalidBlockerDeclarationException",
"documentation" : "Reserved for future use.
"
}, {
"exceptionName" : "InvalidStructureException",
"documentation" : "The specified structure was specified in an invalid format.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "UpdatePipelineResult",
"asyncReturnType" : "UpdatePipelineResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "updatePipeline"
}
},
"shapes" : {
"PutThirdPartyJobFailureResultResult" : {
"c2jName" : "PutThirdPartyJobFailureResultResult",
"documentation" : null,
"shapeName" : "PutThirdPartyJobFailureResultResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "putThirdPartyJobFailureResultResult",
"variableType" : "PutThirdPartyJobFailureResultResult",
"variableDeclarationType" : "PutThirdPartyJobFailureResultResult",
"documentation" : null,
"simpleType" : "PutThirdPartyJobFailureResultResult",
"variableSetterType" : "PutThirdPartyJobFailureResultResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"PipelineDeclaration" : {
"c2jName" : "PipelineDeclaration",
"documentation" : "Represents the structure of actions and stages to be performed in the pipeline.
",
"shapeName" : "PipelineDeclaration",
"deprecated" : false,
"required" : [ "name", "roleArn", "artifactStore", "stages" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the action to be performed.
",
"name" : "Name",
"c2jName" : "name",
"c2jShape" : "PipelineName",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the action to be performed.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "name",
"marshallLocationName" : "name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the action to be performed.
\n@param name The name of the action to be performed.*/",
"getterDocumentation" : "/**The name of the action to be performed.
\n@return The name of the action to be performed.*/",
"fluentSetterDocumentation" : "/**The name of the action to be performed.
\n@param name The name of the action to be performed.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the action to be performed.
\n@param name The name of the action to be performed.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.
",
"name" : "RoleArn",
"c2jName" : "roleArn",
"c2jShape" : "RoleArn",
"variable" : {
"variableName" : "roleArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "roleArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "roleArn",
"marshallLocationName" : "roleArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.
\n@param roleArn The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.
\n@return The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.
\n@param roleArn The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.
\n@param roleArn The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "",
"name" : "ArtifactStore",
"c2jName" : "artifactStore",
"c2jShape" : "ArtifactStore",
"variable" : {
"variableName" : "artifactStore",
"variableType" : "ArtifactStore",
"variableDeclarationType" : "ArtifactStore",
"documentation" : "",
"simpleType" : "ArtifactStore",
"variableSetterType" : "ArtifactStore"
},
"setterModel" : {
"variableName" : "artifactStore",
"variableType" : "ArtifactStore",
"variableDeclarationType" : "ArtifactStore",
"documentation" : "",
"simpleType" : "ArtifactStore",
"variableSetterType" : "ArtifactStore"
},
"getterModel" : {
"returnType" : "ArtifactStore",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "artifactStore",
"marshallLocationName" : "artifactStore",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param artifactStore */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param artifactStore \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param artifactStore \n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The stage in which to perform the action.
",
"name" : "Stages",
"c2jName" : "stages",
"c2jShape" : "PipelineStageDeclarationList",
"variable" : {
"variableName" : "stages",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "The stage in which to perform the action.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "stages",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "stages",
"marshallLocationName" : "stages",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "StageDeclaration",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "StageDeclaration",
"variable" : {
"variableName" : "member",
"variableType" : "StageDeclaration",
"variableDeclarationType" : "StageDeclaration",
"documentation" : "",
"simpleType" : "StageDeclaration",
"variableSetterType" : "StageDeclaration"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "StageDeclaration",
"variableDeclarationType" : "StageDeclaration",
"documentation" : "",
"simpleType" : "StageDeclaration",
"variableSetterType" : "StageDeclaration"
},
"getterModel" : {
"returnType" : "StageDeclaration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"marshallNonAutoConstructedEmptyLists" : false,
"simple" : false,
"simpleType" : "StageDeclaration",
"map" : false,
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The stage in which to perform the action.
\n@param stages The stage in which to perform the action.*/",
"getterDocumentation" : "/**The stage in which to perform the action.
\n@return The stage in which to perform the action.*/",
"fluentSetterDocumentation" : "/**The stage in which to perform the action.
\n@param stages The stage in which to perform the action.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The stage in which to perform the action.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setStages(java.util.Collection)} or {@link #withStages(java.util.Collection)} if you want to override the existing values.
\n@param stages The stage in which to perform the action.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.
",
"name" : "Version",
"c2jName" : "version",
"c2jShape" : "PipelineVersion",
"variable" : {
"variableName" : "version",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "version",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "version",
"marshallLocationName" : "version",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.
\n@param version The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.*/",
"getterDocumentation" : "/**The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.
\n@return The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.*/",
"fluentSetterDocumentation" : "/**The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.
\n@param version The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.
\n@param version The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "pipelineDeclaration",
"variableType" : "PipelineDeclaration",
"variableDeclarationType" : "PipelineDeclaration",
"documentation" : null,
"simpleType" : "PipelineDeclaration",
"variableSetterType" : "PipelineDeclaration"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ArtifactStore" : {
"documentation" : "",
"name" : "ArtifactStore",
"c2jName" : "artifactStore",
"c2jShape" : "ArtifactStore",
"variable" : {
"variableName" : "artifactStore",
"variableType" : "ArtifactStore",
"variableDeclarationType" : "ArtifactStore",
"documentation" : "",
"simpleType" : "ArtifactStore",
"variableSetterType" : "ArtifactStore"
},
"setterModel" : {
"variableName" : "artifactStore",
"variableType" : "ArtifactStore",
"variableDeclarationType" : "ArtifactStore",
"documentation" : "",
"simpleType" : "ArtifactStore",
"variableSetterType" : "ArtifactStore"
},
"getterModel" : {
"returnType" : "ArtifactStore",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "artifactStore",
"marshallLocationName" : "artifactStore",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param artifactStore */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param artifactStore \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param artifactStore \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Version" : {
"documentation" : "The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.
",
"name" : "Version",
"c2jName" : "version",
"c2jShape" : "PipelineVersion",
"variable" : {
"variableName" : "version",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "version",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "version",
"marshallLocationName" : "version",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.
\n@param version The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.*/",
"getterDocumentation" : "/**The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.
\n@return The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.*/",
"fluentSetterDocumentation" : "/**The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.
\n@param version The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.
\n@param version The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Stages" : {
"documentation" : "The stage in which to perform the action.
",
"name" : "Stages",
"c2jName" : "stages",
"c2jShape" : "PipelineStageDeclarationList",
"variable" : {
"variableName" : "stages",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "The stage in which to perform the action.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "stages",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "stages",
"marshallLocationName" : "stages",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "StageDeclaration",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "StageDeclaration",
"variable" : {
"variableName" : "member",
"variableType" : "StageDeclaration",
"variableDeclarationType" : "StageDeclaration",
"documentation" : "",
"simpleType" : "StageDeclaration",
"variableSetterType" : "StageDeclaration"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "StageDeclaration",
"variableDeclarationType" : "StageDeclaration",
"documentation" : "",
"simpleType" : "StageDeclaration",
"variableSetterType" : "StageDeclaration"
},
"getterModel" : {
"returnType" : "StageDeclaration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"marshallNonAutoConstructedEmptyLists" : false,
"simple" : false,
"simpleType" : "StageDeclaration",
"map" : false,
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The stage in which to perform the action.
\n@param stages The stage in which to perform the action.*/",
"getterDocumentation" : "/**The stage in which to perform the action.
\n@return The stage in which to perform the action.*/",
"fluentSetterDocumentation" : "/**The stage in which to perform the action.
\n@param stages The stage in which to perform the action.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The stage in which to perform the action.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setStages(java.util.Collection)} or {@link #withStages(java.util.Collection)} if you want to override the existing values.
\n@param stages The stage in which to perform the action.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"RoleArn" : {
"documentation" : "The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.
",
"name" : "RoleArn",
"c2jName" : "roleArn",
"c2jShape" : "RoleArn",
"variable" : {
"variableName" : "roleArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "roleArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "roleArn",
"marshallLocationName" : "roleArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.
\n@param roleArn The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.
\n@return The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.
\n@param roleArn The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.
\n@param roleArn The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Name" : {
"documentation" : "The name of the action to be performed.
",
"name" : "Name",
"c2jName" : "name",
"c2jShape" : "PipelineName",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the action to be performed.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "name",
"marshallLocationName" : "name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the action to be performed.
\n@param name The name of the action to be performed.*/",
"getterDocumentation" : "/**The name of the action to be performed.
\n@return The name of the action to be performed.*/",
"fluentSetterDocumentation" : "/**The name of the action to be performed.
\n@param name The name of the action to be performed.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the action to be performed.
\n@param name The name of the action to be performed.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"UpdatePipelineResult" : {
"c2jName" : "UpdatePipelineOutput",
"documentation" : "Represents the output of an update pipeline action.
",
"shapeName" : "UpdatePipelineResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The structure of the updated pipeline.
",
"name" : "Pipeline",
"c2jName" : "pipeline",
"c2jShape" : "PipelineDeclaration",
"variable" : {
"variableName" : "pipeline",
"variableType" : "PipelineDeclaration",
"variableDeclarationType" : "PipelineDeclaration",
"documentation" : "The structure of the updated pipeline.
",
"simpleType" : "PipelineDeclaration",
"variableSetterType" : "PipelineDeclaration"
},
"setterModel" : {
"variableName" : "pipeline",
"variableType" : "PipelineDeclaration",
"variableDeclarationType" : "PipelineDeclaration",
"documentation" : "",
"simpleType" : "PipelineDeclaration",
"variableSetterType" : "PipelineDeclaration"
},
"getterModel" : {
"returnType" : "PipelineDeclaration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipeline",
"marshallLocationName" : "pipeline",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The structure of the updated pipeline.
\n@param pipeline The structure of the updated pipeline.*/",
"getterDocumentation" : "/**The structure of the updated pipeline.
\n@return The structure of the updated pipeline.*/",
"fluentSetterDocumentation" : "/**The structure of the updated pipeline.
\n@param pipeline The structure of the updated pipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The structure of the updated pipeline.
\n@param pipeline The structure of the updated pipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "updatePipelineResult",
"variableType" : "UpdatePipelineResult",
"variableDeclarationType" : "UpdatePipelineResult",
"documentation" : null,
"simpleType" : "UpdatePipelineResult",
"variableSetterType" : "UpdatePipelineResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Pipeline" : {
"documentation" : "The structure of the updated pipeline.
",
"name" : "Pipeline",
"c2jName" : "pipeline",
"c2jShape" : "PipelineDeclaration",
"variable" : {
"variableName" : "pipeline",
"variableType" : "PipelineDeclaration",
"variableDeclarationType" : "PipelineDeclaration",
"documentation" : "The structure of the updated pipeline.
",
"simpleType" : "PipelineDeclaration",
"variableSetterType" : "PipelineDeclaration"
},
"setterModel" : {
"variableName" : "pipeline",
"variableType" : "PipelineDeclaration",
"variableDeclarationType" : "PipelineDeclaration",
"documentation" : "",
"simpleType" : "PipelineDeclaration",
"variableSetterType" : "PipelineDeclaration"
},
"getterModel" : {
"returnType" : "PipelineDeclaration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipeline",
"marshallLocationName" : "pipeline",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The structure of the updated pipeline.
\n@param pipeline The structure of the updated pipeline.*/",
"getterDocumentation" : "/**The structure of the updated pipeline.
\n@return The structure of the updated pipeline.*/",
"fluentSetterDocumentation" : "/**The structure of the updated pipeline.
\n@param pipeline The structure of the updated pipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The structure of the updated pipeline.
\n@param pipeline The structure of the updated pipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvalidClientTokenException" : {
"c2jName" : "InvalidClientTokenException",
"documentation" : "The client token was specified in an invalid format
",
"shapeName" : "InvalidClientTokenException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "invalidClientTokenException",
"variableType" : "InvalidClientTokenException",
"variableDeclarationType" : "InvalidClientTokenException",
"documentation" : null,
"simpleType" : "InvalidClientTokenException",
"variableSetterType" : "InvalidClientTokenException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidClientTokenException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"PutActionRevisionRequest" : {
"c2jName" : "PutActionRevisionInput",
"documentation" : "Represents the input of a put action revision action.
",
"shapeName" : "PutActionRevisionRequest",
"deprecated" : false,
"required" : [ "pipelineName", "stageName", "actionName", "actionRevision" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the pipeline that will start processing the revision to the source.
",
"name" : "PipelineName",
"c2jName" : "pipelineName",
"c2jShape" : "PipelineName",
"variable" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the pipeline that will start processing the revision to the source.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineName",
"marshallLocationName" : "pipelineName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the pipeline that will start processing the revision to the source.
\n@param pipelineName The name of the pipeline that will start processing the revision to the source.*/",
"getterDocumentation" : "/**The name of the pipeline that will start processing the revision to the source.
\n@return The name of the pipeline that will start processing the revision to the source.*/",
"fluentSetterDocumentation" : "/**The name of the pipeline that will start processing the revision to the source.
\n@param pipelineName The name of the pipeline that will start processing the revision to the source.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the pipeline that will start processing the revision to the source.
\n@param pipelineName The name of the pipeline that will start processing the revision to the source.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The name of the stage that contains the action that will act upon the revision.
",
"name" : "StageName",
"c2jName" : "stageName",
"c2jShape" : "StageName",
"variable" : {
"variableName" : "stageName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stage that contains the action that will act upon the revision.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "stageName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "stageName",
"marshallLocationName" : "stageName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the stage that contains the action that will act upon the revision.
\n@param stageName The name of the stage that contains the action that will act upon the revision.*/",
"getterDocumentation" : "/**The name of the stage that contains the action that will act upon the revision.
\n@return The name of the stage that contains the action that will act upon the revision.*/",
"fluentSetterDocumentation" : "/**The name of the stage that contains the action that will act upon the revision.
\n@param stageName The name of the stage that contains the action that will act upon the revision.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stage that contains the action that will act upon the revision.
\n@param stageName The name of the stage that contains the action that will act upon the revision.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The name of the action that will process the revision.
",
"name" : "ActionName",
"c2jName" : "actionName",
"c2jShape" : "ActionName",
"variable" : {
"variableName" : "actionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the action that will process the revision.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "actionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "actionName",
"marshallLocationName" : "actionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the action that will process the revision.
\n@param actionName The name of the action that will process the revision.*/",
"getterDocumentation" : "/**The name of the action that will process the revision.
\n@return The name of the action that will process the revision.*/",
"fluentSetterDocumentation" : "/**The name of the action that will process the revision.
\n@param actionName The name of the action that will process the revision.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the action that will process the revision.
\n@param actionName The name of the action that will process the revision.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "",
"name" : "ActionRevision",
"c2jName" : "actionRevision",
"c2jShape" : "ActionRevision",
"variable" : {
"variableName" : "actionRevision",
"variableType" : "ActionRevision",
"variableDeclarationType" : "ActionRevision",
"documentation" : "",
"simpleType" : "ActionRevision",
"variableSetterType" : "ActionRevision"
},
"setterModel" : {
"variableName" : "actionRevision",
"variableType" : "ActionRevision",
"variableDeclarationType" : "ActionRevision",
"documentation" : "",
"simpleType" : "ActionRevision",
"variableSetterType" : "ActionRevision"
},
"getterModel" : {
"returnType" : "ActionRevision",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "actionRevision",
"marshallLocationName" : "actionRevision",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param actionRevision */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param actionRevision \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param actionRevision \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "putActionRevisionRequest",
"variableType" : "PutActionRevisionRequest",
"variableDeclarationType" : "PutActionRevisionRequest",
"documentation" : null,
"simpleType" : "PutActionRevisionRequest",
"variableSetterType" : "PutActionRevisionRequest"
},
"marshaller" : {
"action" : "PutActionRevision",
"verb" : "POST",
"target" : "CodePipeline_20150709.PutActionRevision",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ActionName" : {
"documentation" : "The name of the action that will process the revision.
",
"name" : "ActionName",
"c2jName" : "actionName",
"c2jShape" : "ActionName",
"variable" : {
"variableName" : "actionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the action that will process the revision.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "actionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "actionName",
"marshallLocationName" : "actionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the action that will process the revision.
\n@param actionName The name of the action that will process the revision.*/",
"getterDocumentation" : "/**The name of the action that will process the revision.
\n@return The name of the action that will process the revision.*/",
"fluentSetterDocumentation" : "/**The name of the action that will process the revision.
\n@param actionName The name of the action that will process the revision.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the action that will process the revision.
\n@param actionName The name of the action that will process the revision.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"PipelineName" : {
"documentation" : "The name of the pipeline that will start processing the revision to the source.
",
"name" : "PipelineName",
"c2jName" : "pipelineName",
"c2jShape" : "PipelineName",
"variable" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the pipeline that will start processing the revision to the source.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineName",
"marshallLocationName" : "pipelineName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the pipeline that will start processing the revision to the source.
\n@param pipelineName The name of the pipeline that will start processing the revision to the source.*/",
"getterDocumentation" : "/**The name of the pipeline that will start processing the revision to the source.
\n@return The name of the pipeline that will start processing the revision to the source.*/",
"fluentSetterDocumentation" : "/**The name of the pipeline that will start processing the revision to the source.
\n@param pipelineName The name of the pipeline that will start processing the revision to the source.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the pipeline that will start processing the revision to the source.
\n@param pipelineName The name of the pipeline that will start processing the revision to the source.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"StageName" : {
"documentation" : "The name of the stage that contains the action that will act upon the revision.
",
"name" : "StageName",
"c2jName" : "stageName",
"c2jShape" : "StageName",
"variable" : {
"variableName" : "stageName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stage that contains the action that will act upon the revision.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "stageName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "stageName",
"marshallLocationName" : "stageName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the stage that contains the action that will act upon the revision.
\n@param stageName The name of the stage that contains the action that will act upon the revision.*/",
"getterDocumentation" : "/**The name of the stage that contains the action that will act upon the revision.
\n@return The name of the stage that contains the action that will act upon the revision.*/",
"fluentSetterDocumentation" : "/**The name of the stage that contains the action that will act upon the revision.
\n@param stageName The name of the stage that contains the action that will act upon the revision.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stage that contains the action that will act upon the revision.
\n@param stageName The name of the stage that contains the action that will act upon the revision.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ActionRevision" : {
"documentation" : "",
"name" : "ActionRevision",
"c2jName" : "actionRevision",
"c2jShape" : "ActionRevision",
"variable" : {
"variableName" : "actionRevision",
"variableType" : "ActionRevision",
"variableDeclarationType" : "ActionRevision",
"documentation" : "",
"simpleType" : "ActionRevision",
"variableSetterType" : "ActionRevision"
},
"setterModel" : {
"variableName" : "actionRevision",
"variableType" : "ActionRevision",
"variableDeclarationType" : "ActionRevision",
"documentation" : "",
"simpleType" : "ActionRevision",
"variableSetterType" : "ActionRevision"
},
"getterModel" : {
"returnType" : "ActionRevision",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "actionRevision",
"marshallLocationName" : "actionRevision",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param actionRevision */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param actionRevision \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param actionRevision \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"AcknowledgeJobResult" : {
"c2jName" : "AcknowledgeJobOutput",
"documentation" : "Represents the output of an acknowledge job action.
",
"shapeName" : "AcknowledgeJobResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Whether the job worker has received the specified job.
",
"name" : "Status",
"c2jName" : "status",
"c2jShape" : "JobStatus",
"variable" : {
"variableName" : "status",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Whether the job worker has received the specified job.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "status",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "status",
"marshallLocationName" : "status",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "JobStatus",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Whether the job worker has received the specified job.
\n@param status Whether the job worker has received the specified job.\n@see JobStatus*/",
"getterDocumentation" : "/**Whether the job worker has received the specified job.
\n@return Whether the job worker has received the specified job.\n@see JobStatus*/",
"fluentSetterDocumentation" : "/**Whether the job worker has received the specified job.
\n@param status Whether the job worker has received the specified job.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JobStatus*/",
"varargSetterDocumentation" : "/**Whether the job worker has received the specified job.
\n@param status Whether the job worker has received the specified job.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JobStatus*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "acknowledgeJobResult",
"variableType" : "AcknowledgeJobResult",
"variableDeclarationType" : "AcknowledgeJobResult",
"documentation" : null,
"simpleType" : "AcknowledgeJobResult",
"variableSetterType" : "AcknowledgeJobResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Status" : {
"documentation" : "Whether the job worker has received the specified job.
",
"name" : "Status",
"c2jName" : "status",
"c2jShape" : "JobStatus",
"variable" : {
"variableName" : "status",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Whether the job worker has received the specified job.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "status",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "status",
"marshallLocationName" : "status",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "JobStatus",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Whether the job worker has received the specified job.
\n@param status Whether the job worker has received the specified job.\n@see JobStatus*/",
"getterDocumentation" : "/**Whether the job worker has received the specified job.
\n@return Whether the job worker has received the specified job.\n@see JobStatus*/",
"fluentSetterDocumentation" : "/**Whether the job worker has received the specified job.
\n@param status Whether the job worker has received the specified job.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JobStatus*/",
"varargSetterDocumentation" : "/**Whether the job worker has received the specified job.
\n@param status Whether the job worker has received the specified job.\n@return Returns a reference to this object so that method calls can be chained together.\n@see JobStatus*/"
}
}
},
"CurrentRevision" : {
"c2jName" : "CurrentRevision",
"documentation" : "Represents information about a current revision.
",
"shapeName" : "CurrentRevision",
"deprecated" : false,
"required" : [ "revision", "changeIdentifier" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The revision ID of the current version of an artifact.
",
"name" : "Revision",
"c2jName" : "revision",
"c2jShape" : "Revision",
"variable" : {
"variableName" : "revision",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The revision ID of the current version of an artifact.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "revision",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "revision",
"marshallLocationName" : "revision",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The revision ID of the current version of an artifact.
\n@param revision The revision ID of the current version of an artifact.*/",
"getterDocumentation" : "/**The revision ID of the current version of an artifact.
\n@return The revision ID of the current version of an artifact.*/",
"fluentSetterDocumentation" : "/**The revision ID of the current version of an artifact.
\n@param revision The revision ID of the current version of an artifact.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The revision ID of the current version of an artifact.
\n@param revision The revision ID of the current version of an artifact.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The change identifier for the current revision.
",
"name" : "ChangeIdentifier",
"c2jName" : "changeIdentifier",
"c2jShape" : "RevisionChangeIdentifier",
"variable" : {
"variableName" : "changeIdentifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The change identifier for the current revision.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "changeIdentifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "changeIdentifier",
"marshallLocationName" : "changeIdentifier",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The change identifier for the current revision.
\n@param changeIdentifier The change identifier for the current revision.*/",
"getterDocumentation" : "/**The change identifier for the current revision.
\n@return The change identifier for the current revision.*/",
"fluentSetterDocumentation" : "/**The change identifier for the current revision.
\n@param changeIdentifier The change identifier for the current revision.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The change identifier for the current revision.
\n@param changeIdentifier The change identifier for the current revision.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The date and time when the most recent revision of the artifact was created, in timestamp format.
",
"name" : "Created",
"c2jName" : "created",
"c2jShape" : "Time",
"variable" : {
"variableName" : "created",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The date and time when the most recent revision of the artifact was created, in timestamp format.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "created",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "created",
"marshallLocationName" : "created",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The date and time when the most recent revision of the artifact was created, in timestamp format.
\n@param created The date and time when the most recent revision of the artifact was created, in timestamp format.*/",
"getterDocumentation" : "/**The date and time when the most recent revision of the artifact was created, in timestamp format.
\n@return The date and time when the most recent revision of the artifact was created, in timestamp format.*/",
"fluentSetterDocumentation" : "/**The date and time when the most recent revision of the artifact was created, in timestamp format.
\n@param created The date and time when the most recent revision of the artifact was created, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The date and time when the most recent revision of the artifact was created, in timestamp format.
\n@param created The date and time when the most recent revision of the artifact was created, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The summary of the most recent revision of the artifact.
",
"name" : "RevisionSummary",
"c2jName" : "revisionSummary",
"c2jShape" : "RevisionSummary",
"variable" : {
"variableName" : "revisionSummary",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The summary of the most recent revision of the artifact.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "revisionSummary",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "revisionSummary",
"marshallLocationName" : "revisionSummary",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The summary of the most recent revision of the artifact.
\n@param revisionSummary The summary of the most recent revision of the artifact.*/",
"getterDocumentation" : "/**The summary of the most recent revision of the artifact.
\n@return The summary of the most recent revision of the artifact.*/",
"fluentSetterDocumentation" : "/**The summary of the most recent revision of the artifact.
\n@param revisionSummary The summary of the most recent revision of the artifact.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The summary of the most recent revision of the artifact.
\n@param revisionSummary The summary of the most recent revision of the artifact.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "currentRevision",
"variableType" : "CurrentRevision",
"variableDeclarationType" : "CurrentRevision",
"documentation" : null,
"simpleType" : "CurrentRevision",
"variableSetterType" : "CurrentRevision"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Revision" : {
"documentation" : "The revision ID of the current version of an artifact.
",
"name" : "Revision",
"c2jName" : "revision",
"c2jShape" : "Revision",
"variable" : {
"variableName" : "revision",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The revision ID of the current version of an artifact.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "revision",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "revision",
"marshallLocationName" : "revision",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The revision ID of the current version of an artifact.
\n@param revision The revision ID of the current version of an artifact.*/",
"getterDocumentation" : "/**The revision ID of the current version of an artifact.
\n@return The revision ID of the current version of an artifact.*/",
"fluentSetterDocumentation" : "/**The revision ID of the current version of an artifact.
\n@param revision The revision ID of the current version of an artifact.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The revision ID of the current version of an artifact.
\n@param revision The revision ID of the current version of an artifact.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"RevisionSummary" : {
"documentation" : "The summary of the most recent revision of the artifact.
",
"name" : "RevisionSummary",
"c2jName" : "revisionSummary",
"c2jShape" : "RevisionSummary",
"variable" : {
"variableName" : "revisionSummary",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The summary of the most recent revision of the artifact.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "revisionSummary",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "revisionSummary",
"marshallLocationName" : "revisionSummary",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The summary of the most recent revision of the artifact.
\n@param revisionSummary The summary of the most recent revision of the artifact.*/",
"getterDocumentation" : "/**The summary of the most recent revision of the artifact.
\n@return The summary of the most recent revision of the artifact.*/",
"fluentSetterDocumentation" : "/**The summary of the most recent revision of the artifact.
\n@param revisionSummary The summary of the most recent revision of the artifact.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The summary of the most recent revision of the artifact.
\n@param revisionSummary The summary of the most recent revision of the artifact.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ChangeIdentifier" : {
"documentation" : "The change identifier for the current revision.
",
"name" : "ChangeIdentifier",
"c2jName" : "changeIdentifier",
"c2jShape" : "RevisionChangeIdentifier",
"variable" : {
"variableName" : "changeIdentifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The change identifier for the current revision.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "changeIdentifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "changeIdentifier",
"marshallLocationName" : "changeIdentifier",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The change identifier for the current revision.
\n@param changeIdentifier The change identifier for the current revision.*/",
"getterDocumentation" : "/**The change identifier for the current revision.
\n@return The change identifier for the current revision.*/",
"fluentSetterDocumentation" : "/**The change identifier for the current revision.
\n@param changeIdentifier The change identifier for the current revision.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The change identifier for the current revision.
\n@param changeIdentifier The change identifier for the current revision.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Created" : {
"documentation" : "The date and time when the most recent revision of the artifact was created, in timestamp format.
",
"name" : "Created",
"c2jName" : "created",
"c2jShape" : "Time",
"variable" : {
"variableName" : "created",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The date and time when the most recent revision of the artifact was created, in timestamp format.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "created",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "created",
"marshallLocationName" : "created",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The date and time when the most recent revision of the artifact was created, in timestamp format.
\n@param created The date and time when the most recent revision of the artifact was created, in timestamp format.*/",
"getterDocumentation" : "/**The date and time when the most recent revision of the artifact was created, in timestamp format.
\n@return The date and time when the most recent revision of the artifact was created, in timestamp format.*/",
"fluentSetterDocumentation" : "/**The date and time when the most recent revision of the artifact was created, in timestamp format.
\n@param created The date and time when the most recent revision of the artifact was created, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The date and time when the most recent revision of the artifact was created, in timestamp format.
\n@param created The date and time when the most recent revision of the artifact was created, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ApprovalStatus" : {
"c2jName" : "ApprovalStatus",
"documentation" : "",
"shapeName" : "ApprovalStatus",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "Approved",
"value" : "Approved"
}, {
"name" : "Rejected",
"value" : "Rejected"
} ],
"variable" : {
"variableName" : "approvalStatus",
"variableType" : "ApprovalStatus",
"variableDeclarationType" : "ApprovalStatus",
"documentation" : null,
"simpleType" : "ApprovalStatus",
"variableSetterType" : "ApprovalStatus"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"InvalidJobStateException" : {
"c2jName" : "InvalidJobStateException",
"documentation" : "The specified job state was specified in an invalid format.
",
"shapeName" : "InvalidJobStateException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "invalidJobStateException",
"variableType" : "InvalidJobStateException",
"variableDeclarationType" : "InvalidJobStateException",
"documentation" : null,
"simpleType" : "InvalidJobStateException",
"variableSetterType" : "InvalidJobStateException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidJobStateException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"ActionCategory" : {
"c2jName" : "ActionCategory",
"documentation" : "",
"shapeName" : "ActionCategory",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "Source",
"value" : "Source"
}, {
"name" : "Build",
"value" : "Build"
}, {
"name" : "Deploy",
"value" : "Deploy"
}, {
"name" : "Test",
"value" : "Test"
}, {
"name" : "Invoke",
"value" : "Invoke"
}, {
"name" : "Approval",
"value" : "Approval"
} ],
"variable" : {
"variableName" : "actionCategory",
"variableType" : "ActionCategory",
"variableDeclarationType" : "ActionCategory",
"documentation" : null,
"simpleType" : "ActionCategory",
"variableSetterType" : "ActionCategory"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"ActionOwner" : {
"c2jName" : "ActionOwner",
"documentation" : "",
"shapeName" : "ActionOwner",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "AWS",
"value" : "AWS"
}, {
"name" : "ThirdParty",
"value" : "ThirdParty"
}, {
"name" : "Custom",
"value" : "Custom"
} ],
"variable" : {
"variableName" : "actionOwner",
"variableType" : "ActionOwner",
"variableDeclarationType" : "ActionOwner",
"documentation" : null,
"simpleType" : "ActionOwner",
"variableSetterType" : "ActionOwner"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"DisableStageTransitionRequest" : {
"c2jName" : "DisableStageTransitionInput",
"documentation" : "Represents the input of a disable stage transition input action.
",
"shapeName" : "DisableStageTransitionRequest",
"deprecated" : false,
"required" : [ "pipelineName", "stageName", "transitionType", "reason" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
",
"name" : "PipelineName",
"c2jName" : "pipelineName",
"c2jShape" : "PipelineName",
"variable" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineName",
"marshallLocationName" : "pipelineName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
\n@param pipelineName The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.*/",
"getterDocumentation" : "/**The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
\n@return The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.*/",
"fluentSetterDocumentation" : "/**The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
\n@param pipelineName The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
\n@param pipelineName The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The name of the stage where you want to disable the inbound or outbound transition of artifacts.
",
"name" : "StageName",
"c2jName" : "stageName",
"c2jShape" : "StageName",
"variable" : {
"variableName" : "stageName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stage where you want to disable the inbound or outbound transition of artifacts.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "stageName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "stageName",
"marshallLocationName" : "stageName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the stage where you want to disable the inbound or outbound transition of artifacts.
\n@param stageName The name of the stage where you want to disable the inbound or outbound transition of artifacts.*/",
"getterDocumentation" : "/**The name of the stage where you want to disable the inbound or outbound transition of artifacts.
\n@return The name of the stage where you want to disable the inbound or outbound transition of artifacts.*/",
"fluentSetterDocumentation" : "/**The name of the stage where you want to disable the inbound or outbound transition of artifacts.
\n@param stageName The name of the stage where you want to disable the inbound or outbound transition of artifacts.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stage where you want to disable the inbound or outbound transition of artifacts.
\n@param stageName The name of the stage where you want to disable the inbound or outbound transition of artifacts.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).
",
"name" : "TransitionType",
"c2jName" : "transitionType",
"c2jShape" : "StageTransitionType",
"variable" : {
"variableName" : "transitionType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "transitionType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "transitionType",
"marshallLocationName" : "transitionType",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "StageTransitionType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).
\n@param transitionType Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).\n@see StageTransitionType*/",
"getterDocumentation" : "/**Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).
\n@return Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).\n@see StageTransitionType*/",
"fluentSetterDocumentation" : "/**Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).
\n@param transitionType Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).\n@return Returns a reference to this object so that method calls can be chained together.\n@see StageTransitionType*/",
"varargSetterDocumentation" : "/**Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).
\n@param transitionType Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).\n@return Returns a reference to this object so that method calls can be chained together.\n@see StageTransitionType*/"
}, {
"documentation" : "The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
",
"name" : "Reason",
"c2jName" : "reason",
"c2jShape" : "DisabledReason",
"variable" : {
"variableName" : "reason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "reason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "reason",
"marshallLocationName" : "reason",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
\n@param reason The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.*/",
"getterDocumentation" : "/**The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
\n@return The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.*/",
"fluentSetterDocumentation" : "/**The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
\n@param reason The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
\n@param reason The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "disableStageTransitionRequest",
"variableType" : "DisableStageTransitionRequest",
"variableDeclarationType" : "DisableStageTransitionRequest",
"documentation" : null,
"simpleType" : "DisableStageTransitionRequest",
"variableSetterType" : "DisableStageTransitionRequest"
},
"marshaller" : {
"action" : "DisableStageTransition",
"verb" : "POST",
"target" : "CodePipeline_20150709.DisableStageTransition",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"PipelineName" : {
"documentation" : "The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
",
"name" : "PipelineName",
"c2jName" : "pipelineName",
"c2jShape" : "PipelineName",
"variable" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineName",
"marshallLocationName" : "pipelineName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
\n@param pipelineName The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.*/",
"getterDocumentation" : "/**The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
\n@return The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.*/",
"fluentSetterDocumentation" : "/**The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
\n@param pipelineName The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
\n@param pipelineName The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"StageName" : {
"documentation" : "The name of the stage where you want to disable the inbound or outbound transition of artifacts.
",
"name" : "StageName",
"c2jName" : "stageName",
"c2jShape" : "StageName",
"variable" : {
"variableName" : "stageName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stage where you want to disable the inbound or outbound transition of artifacts.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "stageName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "stageName",
"marshallLocationName" : "stageName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the stage where you want to disable the inbound or outbound transition of artifacts.
\n@param stageName The name of the stage where you want to disable the inbound or outbound transition of artifacts.*/",
"getterDocumentation" : "/**The name of the stage where you want to disable the inbound or outbound transition of artifacts.
\n@return The name of the stage where you want to disable the inbound or outbound transition of artifacts.*/",
"fluentSetterDocumentation" : "/**The name of the stage where you want to disable the inbound or outbound transition of artifacts.
\n@param stageName The name of the stage where you want to disable the inbound or outbound transition of artifacts.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stage where you want to disable the inbound or outbound transition of artifacts.
\n@param stageName The name of the stage where you want to disable the inbound or outbound transition of artifacts.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"TransitionType" : {
"documentation" : "Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).
",
"name" : "TransitionType",
"c2jName" : "transitionType",
"c2jShape" : "StageTransitionType",
"variable" : {
"variableName" : "transitionType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "transitionType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "transitionType",
"marshallLocationName" : "transitionType",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "StageTransitionType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).
\n@param transitionType Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).\n@see StageTransitionType*/",
"getterDocumentation" : "/**Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).
\n@return Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).\n@see StageTransitionType*/",
"fluentSetterDocumentation" : "/**Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).
\n@param transitionType Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).\n@return Returns a reference to this object so that method calls can be chained together.\n@see StageTransitionType*/",
"varargSetterDocumentation" : "/**Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).
\n@param transitionType Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).\n@return Returns a reference to this object so that method calls can be chained together.\n@see StageTransitionType*/"
},
"Reason" : {
"documentation" : "The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
",
"name" : "Reason",
"c2jName" : "reason",
"c2jShape" : "DisabledReason",
"variable" : {
"variableName" : "reason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "reason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "reason",
"marshallLocationName" : "reason",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
\n@param reason The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.*/",
"getterDocumentation" : "/**The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
\n@return The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.*/",
"fluentSetterDocumentation" : "/**The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
\n@param reason The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
\n@param reason The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"PipelineVersionNotFoundException" : {
"c2jName" : "PipelineVersionNotFoundException",
"documentation" : "The specified pipeline version was specified in an invalid format or cannot be found.
",
"shapeName" : "PipelineVersionNotFoundException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "pipelineVersionNotFoundException",
"variableType" : "PipelineVersionNotFoundException",
"variableDeclarationType" : "PipelineVersionNotFoundException",
"documentation" : null,
"simpleType" : "PipelineVersionNotFoundException",
"variableSetterType" : "PipelineVersionNotFoundException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "PipelineVersionNotFoundException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"OutputArtifact" : {
"c2jName" : "OutputArtifact",
"documentation" : "Represents information about the output of an action.
",
"shapeName" : "OutputArtifact",
"deprecated" : false,
"required" : [ "name" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the output of an artifact, such as \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.
",
"name" : "Name",
"c2jName" : "name",
"c2jShape" : "ArtifactName",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the output of an artifact, such as \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "name",
"marshallLocationName" : "name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the output of an artifact, such as \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.
\n@param name The name of the output of an artifact, such as \"My App\". The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.*/",
"getterDocumentation" : "/**
The name of the output of an artifact, such as \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.
\n@return The name of the output of an artifact, such as \"My App\". The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.*/",
"fluentSetterDocumentation" : "/**
The name of the output of an artifact, such as \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.
\n@param name The name of the output of an artifact, such as \"My App\". The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
The name of the output of an artifact, such as \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.
\n@param name The name of the output of an artifact, such as \"My App\". The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "outputArtifact",
"variableType" : "OutputArtifact",
"variableDeclarationType" : "OutputArtifact",
"documentation" : null,
"simpleType" : "OutputArtifact",
"variableSetterType" : "OutputArtifact"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Name" : {
"documentation" : "
The name of the output of an artifact, such as \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.
",
"name" : "Name",
"c2jName" : "name",
"c2jShape" : "ArtifactName",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the output of an artifact, such as \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "name",
"marshallLocationName" : "name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the output of an artifact, such as \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.
\n@param name The name of the output of an artifact, such as \"My App\". The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.*/",
"getterDocumentation" : "/**
The name of the output of an artifact, such as \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.
\n@return The name of the output of an artifact, such as \"My App\". The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.*/",
"fluentSetterDocumentation" : "/**
The name of the output of an artifact, such as \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.
\n@param name The name of the output of an artifact, such as \"My App\". The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
The name of the output of an artifact, such as \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.
\n@param name The name of the output of an artifact, such as \"My App\". The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
Output artifact names must be unique within a pipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"GetJobDetailsResult" : {
"c2jName" : "GetJobDetailsOutput",
"documentation" : "
Represents the output of a get job details action.
",
"shapeName" : "GetJobDetailsResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The details of the job.
If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
",
"name" : "JobDetails",
"c2jName" : "jobDetails",
"c2jShape" : "JobDetails",
"variable" : {
"variableName" : "jobDetails",
"variableType" : "JobDetails",
"variableDeclarationType" : "JobDetails",
"documentation" : "The details of the job.
If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
",
"simpleType" : "JobDetails",
"variableSetterType" : "JobDetails"
},
"setterModel" : {
"variableName" : "jobDetails",
"variableType" : "JobDetails",
"variableDeclarationType" : "JobDetails",
"documentation" : "",
"simpleType" : "JobDetails",
"variableSetterType" : "JobDetails"
},
"getterModel" : {
"returnType" : "JobDetails",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "jobDetails",
"marshallLocationName" : "jobDetails",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The details of the job.
If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
\n@param jobDetails The details of the job. If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
*/",
"getterDocumentation" : "/**The details of the job.
If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
\n@return The details of the job. If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
*/",
"fluentSetterDocumentation" : "/**The details of the job.
If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
\n@param jobDetails The details of the job. If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The details of the job.
If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
\n@param jobDetails The details of the job. If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getJobDetailsResult",
"variableType" : "GetJobDetailsResult",
"variableDeclarationType" : "GetJobDetailsResult",
"documentation" : null,
"simpleType" : "GetJobDetailsResult",
"variableSetterType" : "GetJobDetailsResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"JobDetails" : {
"documentation" : "The details of the job.
If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
",
"name" : "JobDetails",
"c2jName" : "jobDetails",
"c2jShape" : "JobDetails",
"variable" : {
"variableName" : "jobDetails",
"variableType" : "JobDetails",
"variableDeclarationType" : "JobDetails",
"documentation" : "The details of the job.
If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
",
"simpleType" : "JobDetails",
"variableSetterType" : "JobDetails"
},
"setterModel" : {
"variableName" : "jobDetails",
"variableType" : "JobDetails",
"variableDeclarationType" : "JobDetails",
"documentation" : "",
"simpleType" : "JobDetails",
"variableSetterType" : "JobDetails"
},
"getterModel" : {
"returnType" : "JobDetails",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "jobDetails",
"marshallLocationName" : "jobDetails",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The details of the job.
If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
\n@param jobDetails The details of the job. If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
*/",
"getterDocumentation" : "/**The details of the job.
If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
\n@return The details of the job. If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
*/",
"fluentSetterDocumentation" : "/**The details of the job.
If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
\n@param jobDetails The details of the job. If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The details of the job.
If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
\n@param jobDetails The details of the job. If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.
\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ActionExecutionStatus" : {
"c2jName" : "ActionExecutionStatus",
"documentation" : "",
"shapeName" : "ActionExecutionStatus",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "InProgress",
"value" : "InProgress"
}, {
"name" : "Succeeded",
"value" : "Succeeded"
}, {
"name" : "Failed",
"value" : "Failed"
} ],
"variable" : {
"variableName" : "actionExecutionStatus",
"variableType" : "ActionExecutionStatus",
"variableDeclarationType" : "ActionExecutionStatus",
"documentation" : null,
"simpleType" : "ActionExecutionStatus",
"variableSetterType" : "ActionExecutionStatus"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"PollForThirdPartyJobsRequest" : {
"c2jName" : "PollForThirdPartyJobsInput",
"documentation" : "Represents the input of a poll for third party jobs action.
",
"shapeName" : "PollForThirdPartyJobsRequest",
"deprecated" : false,
"required" : [ "actionTypeId" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "ActionTypeId",
"c2jName" : "actionTypeId",
"c2jShape" : "ActionTypeId",
"variable" : {
"variableName" : "actionTypeId",
"variableType" : "ActionTypeId",
"variableDeclarationType" : "ActionTypeId",
"documentation" : "",
"simpleType" : "ActionTypeId",
"variableSetterType" : "ActionTypeId"
},
"setterModel" : {
"variableName" : "actionTypeId",
"variableType" : "ActionTypeId",
"variableDeclarationType" : "ActionTypeId",
"documentation" : "",
"simpleType" : "ActionTypeId",
"variableSetterType" : "ActionTypeId"
},
"getterModel" : {
"returnType" : "ActionTypeId",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "actionTypeId",
"marshallLocationName" : "actionTypeId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param actionTypeId */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param actionTypeId \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param actionTypeId \n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The maximum number of jobs to return in a poll for jobs call.
",
"name" : "MaxBatchSize",
"c2jName" : "maxBatchSize",
"c2jShape" : "MaxBatchSize",
"variable" : {
"variableName" : "maxBatchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of jobs to return in a poll for jobs call.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "maxBatchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "maxBatchSize",
"marshallLocationName" : "maxBatchSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The maximum number of jobs to return in a poll for jobs call.
\n@param maxBatchSize The maximum number of jobs to return in a poll for jobs call.*/",
"getterDocumentation" : "/**The maximum number of jobs to return in a poll for jobs call.
\n@return The maximum number of jobs to return in a poll for jobs call.*/",
"fluentSetterDocumentation" : "/**The maximum number of jobs to return in a poll for jobs call.
\n@param maxBatchSize The maximum number of jobs to return in a poll for jobs call.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of jobs to return in a poll for jobs call.
\n@param maxBatchSize The maximum number of jobs to return in a poll for jobs call.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "pollForThirdPartyJobsRequest",
"variableType" : "PollForThirdPartyJobsRequest",
"variableDeclarationType" : "PollForThirdPartyJobsRequest",
"documentation" : null,
"simpleType" : "PollForThirdPartyJobsRequest",
"variableSetterType" : "PollForThirdPartyJobsRequest"
},
"marshaller" : {
"action" : "PollForThirdPartyJobs",
"verb" : "POST",
"target" : "CodePipeline_20150709.PollForThirdPartyJobs",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ActionTypeId" : {
"documentation" : "",
"name" : "ActionTypeId",
"c2jName" : "actionTypeId",
"c2jShape" : "ActionTypeId",
"variable" : {
"variableName" : "actionTypeId",
"variableType" : "ActionTypeId",
"variableDeclarationType" : "ActionTypeId",
"documentation" : "",
"simpleType" : "ActionTypeId",
"variableSetterType" : "ActionTypeId"
},
"setterModel" : {
"variableName" : "actionTypeId",
"variableType" : "ActionTypeId",
"variableDeclarationType" : "ActionTypeId",
"documentation" : "",
"simpleType" : "ActionTypeId",
"variableSetterType" : "ActionTypeId"
},
"getterModel" : {
"returnType" : "ActionTypeId",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "actionTypeId",
"marshallLocationName" : "actionTypeId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param actionTypeId */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param actionTypeId \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param actionTypeId \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"MaxBatchSize" : {
"documentation" : "The maximum number of jobs to return in a poll for jobs call.
",
"name" : "MaxBatchSize",
"c2jName" : "maxBatchSize",
"c2jShape" : "MaxBatchSize",
"variable" : {
"variableName" : "maxBatchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of jobs to return in a poll for jobs call.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "maxBatchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "maxBatchSize",
"marshallLocationName" : "maxBatchSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The maximum number of jobs to return in a poll for jobs call.
\n@param maxBatchSize The maximum number of jobs to return in a poll for jobs call.*/",
"getterDocumentation" : "/**The maximum number of jobs to return in a poll for jobs call.
\n@return The maximum number of jobs to return in a poll for jobs call.*/",
"fluentSetterDocumentation" : "/**The maximum number of jobs to return in a poll for jobs call.
\n@param maxBatchSize The maximum number of jobs to return in a poll for jobs call.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of jobs to return in a poll for jobs call.
\n@param maxBatchSize The maximum number of jobs to return in a poll for jobs call.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"BlockerDeclaration" : {
"c2jName" : "BlockerDeclaration",
"documentation" : "Reserved for future use.
",
"shapeName" : "BlockerDeclaration",
"deprecated" : false,
"required" : [ "name", "type" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Reserved for future use.
",
"name" : "Name",
"c2jName" : "name",
"c2jShape" : "BlockerName",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Reserved for future use.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "name",
"marshallLocationName" : "name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Reserved for future use.
\n@param name Reserved for future use.*/",
"getterDocumentation" : "/**Reserved for future use.
\n@return Reserved for future use.*/",
"fluentSetterDocumentation" : "/**Reserved for future use.
\n@param name Reserved for future use.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Reserved for future use.
\n@param name Reserved for future use.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Reserved for future use.
",
"name" : "Type",
"c2jName" : "type",
"c2jShape" : "BlockerType",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Reserved for future use.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "type",
"marshallLocationName" : "type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "BlockerType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Reserved for future use.
\n@param type Reserved for future use.\n@see BlockerType*/",
"getterDocumentation" : "/**Reserved for future use.
\n@return Reserved for future use.\n@see BlockerType*/",
"fluentSetterDocumentation" : "/**Reserved for future use.
\n@param type Reserved for future use.\n@return Returns a reference to this object so that method calls can be chained together.\n@see BlockerType*/",
"varargSetterDocumentation" : "/**Reserved for future use.
\n@param type Reserved for future use.\n@return Returns a reference to this object so that method calls can be chained together.\n@see BlockerType*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "blockerDeclaration",
"variableType" : "BlockerDeclaration",
"variableDeclarationType" : "BlockerDeclaration",
"documentation" : null,
"simpleType" : "BlockerDeclaration",
"variableSetterType" : "BlockerDeclaration"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Type" : {
"documentation" : "Reserved for future use.
",
"name" : "Type",
"c2jName" : "type",
"c2jShape" : "BlockerType",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Reserved for future use.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "type",
"marshallLocationName" : "type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "BlockerType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Reserved for future use.
\n@param type Reserved for future use.\n@see BlockerType*/",
"getterDocumentation" : "/**Reserved for future use.
\n@return Reserved for future use.\n@see BlockerType*/",
"fluentSetterDocumentation" : "/**Reserved for future use.
\n@param type Reserved for future use.\n@return Returns a reference to this object so that method calls can be chained together.\n@see BlockerType*/",
"varargSetterDocumentation" : "/**Reserved for future use.
\n@param type Reserved for future use.\n@return Returns a reference to this object so that method calls can be chained together.\n@see BlockerType*/"
},
"Name" : {
"documentation" : "Reserved for future use.
",
"name" : "Name",
"c2jName" : "name",
"c2jShape" : "BlockerName",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Reserved for future use.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "name",
"marshallLocationName" : "name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Reserved for future use.
\n@param name Reserved for future use.*/",
"getterDocumentation" : "/**Reserved for future use.
\n@return Reserved for future use.*/",
"fluentSetterDocumentation" : "/**Reserved for future use.
\n@param name Reserved for future use.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Reserved for future use.
\n@param name Reserved for future use.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"UpdatePipelineRequest" : {
"c2jName" : "UpdatePipelineInput",
"documentation" : "Represents the input of an update pipeline action.
",
"shapeName" : "UpdatePipelineRequest",
"deprecated" : false,
"required" : [ "pipeline" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the pipeline to be updated.
",
"name" : "Pipeline",
"c2jName" : "pipeline",
"c2jShape" : "PipelineDeclaration",
"variable" : {
"variableName" : "pipeline",
"variableType" : "PipelineDeclaration",
"variableDeclarationType" : "PipelineDeclaration",
"documentation" : "The name of the pipeline to be updated.
",
"simpleType" : "PipelineDeclaration",
"variableSetterType" : "PipelineDeclaration"
},
"setterModel" : {
"variableName" : "pipeline",
"variableType" : "PipelineDeclaration",
"variableDeclarationType" : "PipelineDeclaration",
"documentation" : "",
"simpleType" : "PipelineDeclaration",
"variableSetterType" : "PipelineDeclaration"
},
"getterModel" : {
"returnType" : "PipelineDeclaration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipeline",
"marshallLocationName" : "pipeline",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the pipeline to be updated.
\n@param pipeline The name of the pipeline to be updated.*/",
"getterDocumentation" : "/**The name of the pipeline to be updated.
\n@return The name of the pipeline to be updated.*/",
"fluentSetterDocumentation" : "/**The name of the pipeline to be updated.
\n@param pipeline The name of the pipeline to be updated.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the pipeline to be updated.
\n@param pipeline The name of the pipeline to be updated.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "updatePipelineRequest",
"variableType" : "UpdatePipelineRequest",
"variableDeclarationType" : "UpdatePipelineRequest",
"documentation" : null,
"simpleType" : "UpdatePipelineRequest",
"variableSetterType" : "UpdatePipelineRequest"
},
"marshaller" : {
"action" : "UpdatePipeline",
"verb" : "POST",
"target" : "CodePipeline_20150709.UpdatePipeline",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Pipeline" : {
"documentation" : "The name of the pipeline to be updated.
",
"name" : "Pipeline",
"c2jName" : "pipeline",
"c2jShape" : "PipelineDeclaration",
"variable" : {
"variableName" : "pipeline",
"variableType" : "PipelineDeclaration",
"variableDeclarationType" : "PipelineDeclaration",
"documentation" : "The name of the pipeline to be updated.
",
"simpleType" : "PipelineDeclaration",
"variableSetterType" : "PipelineDeclaration"
},
"setterModel" : {
"variableName" : "pipeline",
"variableType" : "PipelineDeclaration",
"variableDeclarationType" : "PipelineDeclaration",
"documentation" : "",
"simpleType" : "PipelineDeclaration",
"variableSetterType" : "PipelineDeclaration"
},
"getterModel" : {
"returnType" : "PipelineDeclaration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipeline",
"marshallLocationName" : "pipeline",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the pipeline to be updated.
\n@param pipeline The name of the pipeline to be updated.*/",
"getterDocumentation" : "/**The name of the pipeline to be updated.
\n@return The name of the pipeline to be updated.*/",
"fluentSetterDocumentation" : "/**The name of the pipeline to be updated.
\n@param pipeline The name of the pipeline to be updated.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the pipeline to be updated.
\n@param pipeline The name of the pipeline to be updated.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"FailureType" : {
"c2jName" : "FailureType",
"documentation" : "",
"shapeName" : "FailureType",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "JobFailed",
"value" : "JobFailed"
}, {
"name" : "ConfigurationError",
"value" : "ConfigurationError"
}, {
"name" : "PermissionError",
"value" : "PermissionError"
}, {
"name" : "RevisionOutOfSync",
"value" : "RevisionOutOfSync"
}, {
"name" : "RevisionUnavailable",
"value" : "RevisionUnavailable"
}, {
"name" : "SystemUnavailable",
"value" : "SystemUnavailable"
} ],
"variable" : {
"variableName" : "failureType",
"variableType" : "FailureType",
"variableDeclarationType" : "FailureType",
"documentation" : null,
"simpleType" : "FailureType",
"variableSetterType" : "FailureType"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"StageExecution" : {
"c2jName" : "StageExecution",
"documentation" : "Represents information about the run of a stage.
",
"shapeName" : "StageExecution",
"deprecated" : false,
"required" : [ "pipelineExecutionId", "status" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The ID of the pipeline execution associated with the stage.
",
"name" : "PipelineExecutionId",
"c2jName" : "pipelineExecutionId",
"c2jShape" : "PipelineExecutionId",
"variable" : {
"variableName" : "pipelineExecutionId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ID of the pipeline execution associated with the stage.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "pipelineExecutionId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineExecutionId",
"marshallLocationName" : "pipelineExecutionId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the pipeline execution associated with the stage.
\n@param pipelineExecutionId The ID of the pipeline execution associated with the stage.*/",
"getterDocumentation" : "/**The ID of the pipeline execution associated with the stage.
\n@return The ID of the pipeline execution associated with the stage.*/",
"fluentSetterDocumentation" : "/**The ID of the pipeline execution associated with the stage.
\n@param pipelineExecutionId The ID of the pipeline execution associated with the stage.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the pipeline execution associated with the stage.
\n@param pipelineExecutionId The ID of the pipeline execution associated with the stage.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The status of the stage, or for a completed stage, the last status of the stage.
",
"name" : "Status",
"c2jName" : "status",
"c2jShape" : "StageExecutionStatus",
"variable" : {
"variableName" : "status",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The status of the stage, or for a completed stage, the last status of the stage.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "status",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "status",
"marshallLocationName" : "status",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "StageExecutionStatus",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The status of the stage, or for a completed stage, the last status of the stage.
\n@param status The status of the stage, or for a completed stage, the last status of the stage.\n@see StageExecutionStatus*/",
"getterDocumentation" : "/**The status of the stage, or for a completed stage, the last status of the stage.
\n@return The status of the stage, or for a completed stage, the last status of the stage.\n@see StageExecutionStatus*/",
"fluentSetterDocumentation" : "/**The status of the stage, or for a completed stage, the last status of the stage.
\n@param status The status of the stage, or for a completed stage, the last status of the stage.\n@return Returns a reference to this object so that method calls can be chained together.\n@see StageExecutionStatus*/",
"varargSetterDocumentation" : "/**The status of the stage, or for a completed stage, the last status of the stage.
\n@param status The status of the stage, or for a completed stage, the last status of the stage.\n@return Returns a reference to this object so that method calls can be chained together.\n@see StageExecutionStatus*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "stageExecution",
"variableType" : "StageExecution",
"variableDeclarationType" : "StageExecution",
"documentation" : null,
"simpleType" : "StageExecution",
"variableSetterType" : "StageExecution"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Status" : {
"documentation" : "The status of the stage, or for a completed stage, the last status of the stage.
",
"name" : "Status",
"c2jName" : "status",
"c2jShape" : "StageExecutionStatus",
"variable" : {
"variableName" : "status",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The status of the stage, or for a completed stage, the last status of the stage.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "status",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "status",
"marshallLocationName" : "status",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "StageExecutionStatus",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The status of the stage, or for a completed stage, the last status of the stage.
\n@param status The status of the stage, or for a completed stage, the last status of the stage.\n@see StageExecutionStatus*/",
"getterDocumentation" : "/**The status of the stage, or for a completed stage, the last status of the stage.
\n@return The status of the stage, or for a completed stage, the last status of the stage.\n@see StageExecutionStatus*/",
"fluentSetterDocumentation" : "/**The status of the stage, or for a completed stage, the last status of the stage.
\n@param status The status of the stage, or for a completed stage, the last status of the stage.\n@return Returns a reference to this object so that method calls can be chained together.\n@see StageExecutionStatus*/",
"varargSetterDocumentation" : "/**The status of the stage, or for a completed stage, the last status of the stage.
\n@param status The status of the stage, or for a completed stage, the last status of the stage.\n@return Returns a reference to this object so that method calls can be chained together.\n@see StageExecutionStatus*/"
},
"PipelineExecutionId" : {
"documentation" : "The ID of the pipeline execution associated with the stage.
",
"name" : "PipelineExecutionId",
"c2jName" : "pipelineExecutionId",
"c2jShape" : "PipelineExecutionId",
"variable" : {
"variableName" : "pipelineExecutionId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ID of the pipeline execution associated with the stage.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "pipelineExecutionId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineExecutionId",
"marshallLocationName" : "pipelineExecutionId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the pipeline execution associated with the stage.
\n@param pipelineExecutionId The ID of the pipeline execution associated with the stage.*/",
"getterDocumentation" : "/**The ID of the pipeline execution associated with the stage.
\n@return The ID of the pipeline execution associated with the stage.*/",
"fluentSetterDocumentation" : "/**The ID of the pipeline execution associated with the stage.
\n@param pipelineExecutionId The ID of the pipeline execution associated with the stage.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the pipeline execution associated with the stage.
\n@param pipelineExecutionId The ID of the pipeline execution associated with the stage.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"S3ArtifactLocation" : {
"c2jName" : "S3ArtifactLocation",
"documentation" : "The location of the Amazon S3 bucket that contains a revision.
",
"shapeName" : "S3ArtifactLocation",
"deprecated" : false,
"required" : [ "bucketName", "objectKey" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the Amazon S3 bucket.
",
"name" : "BucketName",
"c2jName" : "bucketName",
"c2jShape" : "S3BucketName",
"variable" : {
"variableName" : "bucketName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the Amazon S3 bucket.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "bucketName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "bucketName",
"marshallLocationName" : "bucketName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the Amazon S3 bucket.
\n@param bucketName The name of the Amazon S3 bucket.*/",
"getterDocumentation" : "/**The name of the Amazon S3 bucket.
\n@return The name of the Amazon S3 bucket.*/",
"fluentSetterDocumentation" : "/**The name of the Amazon S3 bucket.
\n@param bucketName The name of the Amazon S3 bucket.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the Amazon S3 bucket.
\n@param bucketName The name of the Amazon S3 bucket.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.
",
"name" : "ObjectKey",
"c2jName" : "objectKey",
"c2jShape" : "S3ObjectKey",
"variable" : {
"variableName" : "objectKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "objectKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "objectKey",
"marshallLocationName" : "objectKey",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.
\n@param objectKey The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.*/",
"getterDocumentation" : "/**The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.
\n@return The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.*/",
"fluentSetterDocumentation" : "/**The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.
\n@param objectKey The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.
\n@param objectKey The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "s3ArtifactLocation",
"variableType" : "S3ArtifactLocation",
"variableDeclarationType" : "S3ArtifactLocation",
"documentation" : null,
"simpleType" : "S3ArtifactLocation",
"variableSetterType" : "S3ArtifactLocation"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"BucketName" : {
"documentation" : "The name of the Amazon S3 bucket.
",
"name" : "BucketName",
"c2jName" : "bucketName",
"c2jShape" : "S3BucketName",
"variable" : {
"variableName" : "bucketName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the Amazon S3 bucket.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "bucketName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "bucketName",
"marshallLocationName" : "bucketName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the Amazon S3 bucket.
\n@param bucketName The name of the Amazon S3 bucket.*/",
"getterDocumentation" : "/**The name of the Amazon S3 bucket.
\n@return The name of the Amazon S3 bucket.*/",
"fluentSetterDocumentation" : "/**The name of the Amazon S3 bucket.
\n@param bucketName The name of the Amazon S3 bucket.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the Amazon S3 bucket.
\n@param bucketName The name of the Amazon S3 bucket.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ObjectKey" : {
"documentation" : "The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.
",
"name" : "ObjectKey",
"c2jName" : "objectKey",
"c2jShape" : "S3ObjectKey",
"variable" : {
"variableName" : "objectKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "objectKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "objectKey",
"marshallLocationName" : "objectKey",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.
\n@param objectKey The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.*/",
"getterDocumentation" : "/**The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.
\n@return The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.*/",
"fluentSetterDocumentation" : "/**The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.
\n@param objectKey The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.
\n@param objectKey The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"PutApprovalResultResult" : {
"c2jName" : "PutApprovalResultOutput",
"documentation" : "Represents the output of a put approval result action.
",
"shapeName" : "PutApprovalResultResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The timestamp showing when the approval or rejection was submitted.
",
"name" : "ApprovedAt",
"c2jName" : "approvedAt",
"c2jShape" : "Timestamp",
"variable" : {
"variableName" : "approvedAt",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The timestamp showing when the approval or rejection was submitted.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "approvedAt",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "approvedAt",
"marshallLocationName" : "approvedAt",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The timestamp showing when the approval or rejection was submitted.
\n@param approvedAt The timestamp showing when the approval or rejection was submitted.*/",
"getterDocumentation" : "/**The timestamp showing when the approval or rejection was submitted.
\n@return The timestamp showing when the approval or rejection was submitted.*/",
"fluentSetterDocumentation" : "/**The timestamp showing when the approval or rejection was submitted.
\n@param approvedAt The timestamp showing when the approval or rejection was submitted.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The timestamp showing when the approval or rejection was submitted.
\n@param approvedAt The timestamp showing when the approval or rejection was submitted.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "putApprovalResultResult",
"variableType" : "PutApprovalResultResult",
"variableDeclarationType" : "PutApprovalResultResult",
"documentation" : null,
"simpleType" : "PutApprovalResultResult",
"variableSetterType" : "PutApprovalResultResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ApprovedAt" : {
"documentation" : "The timestamp showing when the approval or rejection was submitted.
",
"name" : "ApprovedAt",
"c2jName" : "approvedAt",
"c2jShape" : "Timestamp",
"variable" : {
"variableName" : "approvedAt",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The timestamp showing when the approval or rejection was submitted.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "approvedAt",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "approvedAt",
"marshallLocationName" : "approvedAt",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The timestamp showing when the approval or rejection was submitted.
\n@param approvedAt The timestamp showing when the approval or rejection was submitted.*/",
"getterDocumentation" : "/**The timestamp showing when the approval or rejection was submitted.
\n@return The timestamp showing when the approval or rejection was submitted.*/",
"fluentSetterDocumentation" : "/**The timestamp showing when the approval or rejection was submitted.
\n@param approvedAt The timestamp showing when the approval or rejection was submitted.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The timestamp showing when the approval or rejection was submitted.
\n@param approvedAt The timestamp showing when the approval or rejection was submitted.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"EnableStageTransitionResult" : {
"c2jName" : "EnableStageTransitionResult",
"documentation" : null,
"shapeName" : "EnableStageTransitionResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "enableStageTransitionResult",
"variableType" : "EnableStageTransitionResult",
"variableDeclarationType" : "EnableStageTransitionResult",
"documentation" : null,
"simpleType" : "EnableStageTransitionResult",
"variableSetterType" : "EnableStageTransitionResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"ActionConfigurationPropertyType" : {
"c2jName" : "ActionConfigurationPropertyType",
"documentation" : "",
"shapeName" : "ActionConfigurationPropertyType",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "String",
"value" : "String"
}, {
"name" : "Number",
"value" : "Number"
}, {
"name" : "Boolean",
"value" : "Boolean"
} ],
"variable" : {
"variableName" : "actionConfigurationPropertyType",
"variableType" : "ActionConfigurationPropertyType",
"variableDeclarationType" : "ActionConfigurationPropertyType",
"documentation" : null,
"simpleType" : "ActionConfigurationPropertyType",
"variableSetterType" : "ActionConfigurationPropertyType"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"PollForJobsRequest" : {
"c2jName" : "PollForJobsInput",
"documentation" : "Represents the input of a poll for jobs action.
",
"shapeName" : "PollForJobsRequest",
"deprecated" : false,
"required" : [ "actionTypeId" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "ActionTypeId",
"c2jName" : "actionTypeId",
"c2jShape" : "ActionTypeId",
"variable" : {
"variableName" : "actionTypeId",
"variableType" : "ActionTypeId",
"variableDeclarationType" : "ActionTypeId",
"documentation" : "",
"simpleType" : "ActionTypeId",
"variableSetterType" : "ActionTypeId"
},
"setterModel" : {
"variableName" : "actionTypeId",
"variableType" : "ActionTypeId",
"variableDeclarationType" : "ActionTypeId",
"documentation" : "",
"simpleType" : "ActionTypeId",
"variableSetterType" : "ActionTypeId"
},
"getterModel" : {
"returnType" : "ActionTypeId",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "actionTypeId",
"marshallLocationName" : "actionTypeId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param actionTypeId */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param actionTypeId \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param actionTypeId \n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The maximum number of jobs to return in a poll for jobs call.
",
"name" : "MaxBatchSize",
"c2jName" : "maxBatchSize",
"c2jShape" : "MaxBatchSize",
"variable" : {
"variableName" : "maxBatchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of jobs to return in a poll for jobs call.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "maxBatchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "maxBatchSize",
"marshallLocationName" : "maxBatchSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The maximum number of jobs to return in a poll for jobs call.
\n@param maxBatchSize The maximum number of jobs to return in a poll for jobs call.*/",
"getterDocumentation" : "/**The maximum number of jobs to return in a poll for jobs call.
\n@return The maximum number of jobs to return in a poll for jobs call.*/",
"fluentSetterDocumentation" : "/**The maximum number of jobs to return in a poll for jobs call.
\n@param maxBatchSize The maximum number of jobs to return in a poll for jobs call.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of jobs to return in a poll for jobs call.
\n@param maxBatchSize The maximum number of jobs to return in a poll for jobs call.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.
",
"name" : "QueryParam",
"c2jName" : "queryParam",
"c2jShape" : "QueryParamMap",
"variable" : {
"variableName" : "queryParam",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"setterModel" : {
"variableName" : "queryParam",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "queryParam",
"marshallLocationName" : "queryParam",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : {
"implType" : "java.util.HashMap",
"interfaceType" : "java.util.Map",
"keyType" : "String",
"keyLocationName" : "key",
"keyModel" : null,
"valueType" : "String",
"valueLocationName" : "value",
"valueModel" : {
"documentation" : "",
"name" : "Value",
"c2jName" : "value",
"c2jShape" : "ActionConfigurationQueryableValue",
"variable" : {
"variableName" : "value",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "value",
"marshallLocationName" : "value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param value */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"templateType" : "java.util.Map",
"templateImplType" : "java.util.HashMap",
"valueList" : false,
"entryType" : "Map.Entry",
"keySimple" : true,
"valueSimple" : true
},
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : true,
"setterDocumentation" : "/**A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.
\n@param queryParam A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.*/",
"getterDocumentation" : "/**A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.
\n@return A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.*/",
"fluentSetterDocumentation" : "/**A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.
\n@param queryParam A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.
\n@param queryParam A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "pollForJobsRequest",
"variableType" : "PollForJobsRequest",
"variableDeclarationType" : "PollForJobsRequest",
"documentation" : null,
"simpleType" : "PollForJobsRequest",
"variableSetterType" : "PollForJobsRequest"
},
"marshaller" : {
"action" : "PollForJobs",
"verb" : "POST",
"target" : "CodePipeline_20150709.PollForJobs",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ActionTypeId" : {
"documentation" : "",
"name" : "ActionTypeId",
"c2jName" : "actionTypeId",
"c2jShape" : "ActionTypeId",
"variable" : {
"variableName" : "actionTypeId",
"variableType" : "ActionTypeId",
"variableDeclarationType" : "ActionTypeId",
"documentation" : "",
"simpleType" : "ActionTypeId",
"variableSetterType" : "ActionTypeId"
},
"setterModel" : {
"variableName" : "actionTypeId",
"variableType" : "ActionTypeId",
"variableDeclarationType" : "ActionTypeId",
"documentation" : "",
"simpleType" : "ActionTypeId",
"variableSetterType" : "ActionTypeId"
},
"getterModel" : {
"returnType" : "ActionTypeId",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "actionTypeId",
"marshallLocationName" : "actionTypeId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param actionTypeId */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param actionTypeId \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param actionTypeId \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"QueryParam" : {
"documentation" : "A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.
",
"name" : "QueryParam",
"c2jName" : "queryParam",
"c2jShape" : "QueryParamMap",
"variable" : {
"variableName" : "queryParam",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.
",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"setterModel" : {
"variableName" : "queryParam",
"variableType" : "java.util.Map",
"variableDeclarationType" : "java.util.Map",
"documentation" : "",
"simpleType" : "Map",
"variableSetterType" : "java.util.Map"
},
"getterModel" : {
"returnType" : "java.util.Map",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "queryParam",
"marshallLocationName" : "queryParam",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : {
"implType" : "java.util.HashMap",
"interfaceType" : "java.util.Map",
"keyType" : "String",
"keyLocationName" : "key",
"keyModel" : null,
"valueType" : "String",
"valueLocationName" : "value",
"valueModel" : {
"documentation" : "",
"name" : "Value",
"c2jName" : "value",
"c2jShape" : "ActionConfigurationQueryableValue",
"variable" : {
"variableName" : "value",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "value",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "value",
"marshallLocationName" : "value",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param value */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"templateType" : "java.util.Map",
"templateImplType" : "java.util.HashMap",
"valueList" : false,
"entryType" : "Map.Entry",
"keySimple" : true,
"valueSimple" : true
},
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : true,
"setterDocumentation" : "/**A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.
\n@param queryParam A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.*/",
"getterDocumentation" : "/**A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.
\n@return A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.*/",
"fluentSetterDocumentation" : "/**A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.
\n@param queryParam A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.
\n@param queryParam A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"MaxBatchSize" : {
"documentation" : "The maximum number of jobs to return in a poll for jobs call.
",
"name" : "MaxBatchSize",
"c2jName" : "maxBatchSize",
"c2jShape" : "MaxBatchSize",
"variable" : {
"variableName" : "maxBatchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of jobs to return in a poll for jobs call.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "maxBatchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "maxBatchSize",
"marshallLocationName" : "maxBatchSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The maximum number of jobs to return in a poll for jobs call.
\n@param maxBatchSize The maximum number of jobs to return in a poll for jobs call.*/",
"getterDocumentation" : "/**The maximum number of jobs to return in a poll for jobs call.
\n@return The maximum number of jobs to return in a poll for jobs call.*/",
"fluentSetterDocumentation" : "/**The maximum number of jobs to return in a poll for jobs call.
\n@param maxBatchSize The maximum number of jobs to return in a poll for jobs call.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of jobs to return in a poll for jobs call.
\n@param maxBatchSize The maximum number of jobs to return in a poll for jobs call.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"GetPipelineExecutionResult" : {
"c2jName" : "GetPipelineExecutionOutput",
"documentation" : "Represents the output of a get pipeline execution action.
",
"shapeName" : "GetPipelineExecutionResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Represents information about the execution of a pipeline.
",
"name" : "PipelineExecution",
"c2jName" : "pipelineExecution",
"c2jShape" : "PipelineExecution",
"variable" : {
"variableName" : "pipelineExecution",
"variableType" : "PipelineExecution",
"variableDeclarationType" : "PipelineExecution",
"documentation" : "Represents information about the execution of a pipeline.
",
"simpleType" : "PipelineExecution",
"variableSetterType" : "PipelineExecution"
},
"setterModel" : {
"variableName" : "pipelineExecution",
"variableType" : "PipelineExecution",
"variableDeclarationType" : "PipelineExecution",
"documentation" : "",
"simpleType" : "PipelineExecution",
"variableSetterType" : "PipelineExecution"
},
"getterModel" : {
"returnType" : "PipelineExecution",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineExecution",
"marshallLocationName" : "pipelineExecution",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Represents information about the execution of a pipeline.
\n@param pipelineExecution Represents information about the execution of a pipeline.*/",
"getterDocumentation" : "/**Represents information about the execution of a pipeline.
\n@return Represents information about the execution of a pipeline.*/",
"fluentSetterDocumentation" : "/**Represents information about the execution of a pipeline.
\n@param pipelineExecution Represents information about the execution of a pipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Represents information about the execution of a pipeline.
\n@param pipelineExecution Represents information about the execution of a pipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getPipelineExecutionResult",
"variableType" : "GetPipelineExecutionResult",
"variableDeclarationType" : "GetPipelineExecutionResult",
"documentation" : null,
"simpleType" : "GetPipelineExecutionResult",
"variableSetterType" : "GetPipelineExecutionResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"PipelineExecution" : {
"documentation" : "Represents information about the execution of a pipeline.
",
"name" : "PipelineExecution",
"c2jName" : "pipelineExecution",
"c2jShape" : "PipelineExecution",
"variable" : {
"variableName" : "pipelineExecution",
"variableType" : "PipelineExecution",
"variableDeclarationType" : "PipelineExecution",
"documentation" : "Represents information about the execution of a pipeline.
",
"simpleType" : "PipelineExecution",
"variableSetterType" : "PipelineExecution"
},
"setterModel" : {
"variableName" : "pipelineExecution",
"variableType" : "PipelineExecution",
"variableDeclarationType" : "PipelineExecution",
"documentation" : "",
"simpleType" : "PipelineExecution",
"variableSetterType" : "PipelineExecution"
},
"getterModel" : {
"returnType" : "PipelineExecution",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineExecution",
"marshallLocationName" : "pipelineExecution",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Represents information about the execution of a pipeline.
\n@param pipelineExecution Represents information about the execution of a pipeline.*/",
"getterDocumentation" : "/**Represents information about the execution of a pipeline.
\n@return Represents information about the execution of a pipeline.*/",
"fluentSetterDocumentation" : "/**Represents information about the execution of a pipeline.
\n@param pipelineExecution Represents information about the execution of a pipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Represents information about the execution of a pipeline.
\n@param pipelineExecution Represents information about the execution of a pipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvalidApprovalTokenException" : {
"c2jName" : "InvalidApprovalTokenException",
"documentation" : "The approval request already received a response or has expired.
",
"shapeName" : "InvalidApprovalTokenException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "invalidApprovalTokenException",
"variableType" : "InvalidApprovalTokenException",
"variableDeclarationType" : "InvalidApprovalTokenException",
"documentation" : null,
"simpleType" : "InvalidApprovalTokenException",
"variableSetterType" : "InvalidApprovalTokenException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidApprovalTokenException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"PipelineContext" : {
"c2jName" : "PipelineContext",
"documentation" : "Represents information about a pipeline to a job worker.
",
"shapeName" : "PipelineContext",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.
",
"name" : "PipelineName",
"c2jName" : "pipelineName",
"c2jShape" : "PipelineName",
"variable" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineName",
"marshallLocationName" : "pipelineName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.
\n@param pipelineName The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.*/",
"getterDocumentation" : "/**The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.
\n@return The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.*/",
"fluentSetterDocumentation" : "/**The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.
\n@param pipelineName The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.
\n@param pipelineName The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The stage of the pipeline.
",
"name" : "Stage",
"c2jName" : "stage",
"c2jShape" : "StageContext",
"variable" : {
"variableName" : "stage",
"variableType" : "StageContext",
"variableDeclarationType" : "StageContext",
"documentation" : "The stage of the pipeline.
",
"simpleType" : "StageContext",
"variableSetterType" : "StageContext"
},
"setterModel" : {
"variableName" : "stage",
"variableType" : "StageContext",
"variableDeclarationType" : "StageContext",
"documentation" : "",
"simpleType" : "StageContext",
"variableSetterType" : "StageContext"
},
"getterModel" : {
"returnType" : "StageContext",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "stage",
"marshallLocationName" : "stage",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The stage of the pipeline.
\n@param stage The stage of the pipeline.*/",
"getterDocumentation" : "/**The stage of the pipeline.
\n@return The stage of the pipeline.*/",
"fluentSetterDocumentation" : "/**The stage of the pipeline.
\n@param stage The stage of the pipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The stage of the pipeline.
\n@param stage The stage of the pipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "",
"name" : "Action",
"c2jName" : "action",
"c2jShape" : "ActionContext",
"variable" : {
"variableName" : "action",
"variableType" : "ActionContext",
"variableDeclarationType" : "ActionContext",
"documentation" : "",
"simpleType" : "ActionContext",
"variableSetterType" : "ActionContext"
},
"setterModel" : {
"variableName" : "action",
"variableType" : "ActionContext",
"variableDeclarationType" : "ActionContext",
"documentation" : "",
"simpleType" : "ActionContext",
"variableSetterType" : "ActionContext"
},
"getterModel" : {
"returnType" : "ActionContext",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "action",
"marshallLocationName" : "action",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param action */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param action \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param action \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "pipelineContext",
"variableType" : "PipelineContext",
"variableDeclarationType" : "PipelineContext",
"documentation" : null,
"simpleType" : "PipelineContext",
"variableSetterType" : "PipelineContext"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Action" : {
"documentation" : "",
"name" : "Action",
"c2jName" : "action",
"c2jShape" : "ActionContext",
"variable" : {
"variableName" : "action",
"variableType" : "ActionContext",
"variableDeclarationType" : "ActionContext",
"documentation" : "",
"simpleType" : "ActionContext",
"variableSetterType" : "ActionContext"
},
"setterModel" : {
"variableName" : "action",
"variableType" : "ActionContext",
"variableDeclarationType" : "ActionContext",
"documentation" : "",
"simpleType" : "ActionContext",
"variableSetterType" : "ActionContext"
},
"getterModel" : {
"returnType" : "ActionContext",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "action",
"marshallLocationName" : "action",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param action */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param action \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param action \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"PipelineName" : {
"documentation" : "The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.
",
"name" : "PipelineName",
"c2jName" : "pipelineName",
"c2jShape" : "PipelineName",
"variable" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineName",
"marshallLocationName" : "pipelineName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.
\n@param pipelineName The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.*/",
"getterDocumentation" : "/**The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.
\n@return The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.*/",
"fluentSetterDocumentation" : "/**The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.
\n@param pipelineName The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.
\n@param pipelineName The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Stage" : {
"documentation" : "The stage of the pipeline.
",
"name" : "Stage",
"c2jName" : "stage",
"c2jShape" : "StageContext",
"variable" : {
"variableName" : "stage",
"variableType" : "StageContext",
"variableDeclarationType" : "StageContext",
"documentation" : "The stage of the pipeline.
",
"simpleType" : "StageContext",
"variableSetterType" : "StageContext"
},
"setterModel" : {
"variableName" : "stage",
"variableType" : "StageContext",
"variableDeclarationType" : "StageContext",
"documentation" : "",
"simpleType" : "StageContext",
"variableSetterType" : "StageContext"
},
"getterModel" : {
"returnType" : "StageContext",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "stage",
"marshallLocationName" : "stage",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The stage of the pipeline.
\n@param stage The stage of the pipeline.*/",
"getterDocumentation" : "/**The stage of the pipeline.
\n@return The stage of the pipeline.*/",
"fluentSetterDocumentation" : "/**The stage of the pipeline.
\n@param stage The stage of the pipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The stage of the pipeline.
\n@param stage The stage of the pipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvalidActionDeclarationException" : {
"c2jName" : "InvalidActionDeclarationException",
"documentation" : "The specified action declaration was specified in an invalid format.
",
"shapeName" : "InvalidActionDeclarationException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "invalidActionDeclarationException",
"variableType" : "InvalidActionDeclarationException",
"variableDeclarationType" : "InvalidActionDeclarationException",
"documentation" : null,
"simpleType" : "InvalidActionDeclarationException",
"variableSetterType" : "InvalidActionDeclarationException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidActionDeclarationException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"ArtifactLocation" : {
"c2jName" : "ArtifactLocation",
"documentation" : "Represents information about the location of an artifact.
",
"shapeName" : "ArtifactLocation",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The type of artifact in the location.
",
"name" : "Type",
"c2jName" : "type",
"c2jShape" : "ArtifactLocationType",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The type of artifact in the location.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "type",
"marshallLocationName" : "type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "ArtifactLocationType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The type of artifact in the location.
\n@param type The type of artifact in the location.\n@see ArtifactLocationType*/",
"getterDocumentation" : "/**The type of artifact in the location.
\n@return The type of artifact in the location.\n@see ArtifactLocationType*/",
"fluentSetterDocumentation" : "/**The type of artifact in the location.
\n@param type The type of artifact in the location.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ArtifactLocationType*/",
"varargSetterDocumentation" : "/**The type of artifact in the location.
\n@param type The type of artifact in the location.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ArtifactLocationType*/"
}, {
"documentation" : "The Amazon S3 bucket that contains the artifact.
",
"name" : "S3Location",
"c2jName" : "s3Location",
"c2jShape" : "S3ArtifactLocation",
"variable" : {
"variableName" : "s3Location",
"variableType" : "S3ArtifactLocation",
"variableDeclarationType" : "S3ArtifactLocation",
"documentation" : "The Amazon S3 bucket that contains the artifact.
",
"simpleType" : "S3ArtifactLocation",
"variableSetterType" : "S3ArtifactLocation"
},
"setterModel" : {
"variableName" : "s3Location",
"variableType" : "S3ArtifactLocation",
"variableDeclarationType" : "S3ArtifactLocation",
"documentation" : "",
"simpleType" : "S3ArtifactLocation",
"variableSetterType" : "S3ArtifactLocation"
},
"getterModel" : {
"returnType" : "S3ArtifactLocation",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "s3Location",
"marshallLocationName" : "s3Location",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon S3 bucket that contains the artifact.
\n@param s3Location The Amazon S3 bucket that contains the artifact.*/",
"getterDocumentation" : "/**The Amazon S3 bucket that contains the artifact.
\n@return The Amazon S3 bucket that contains the artifact.*/",
"fluentSetterDocumentation" : "/**The Amazon S3 bucket that contains the artifact.
\n@param s3Location The Amazon S3 bucket that contains the artifact.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon S3 bucket that contains the artifact.
\n@param s3Location The Amazon S3 bucket that contains the artifact.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "artifactLocation",
"variableType" : "ArtifactLocation",
"variableDeclarationType" : "ArtifactLocation",
"documentation" : null,
"simpleType" : "ArtifactLocation",
"variableSetterType" : "ArtifactLocation"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Type" : {
"documentation" : "The type of artifact in the location.
",
"name" : "Type",
"c2jName" : "type",
"c2jShape" : "ArtifactLocationType",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The type of artifact in the location.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "type",
"marshallLocationName" : "type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "ArtifactLocationType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The type of artifact in the location.
\n@param type The type of artifact in the location.\n@see ArtifactLocationType*/",
"getterDocumentation" : "/**The type of artifact in the location.
\n@return The type of artifact in the location.\n@see ArtifactLocationType*/",
"fluentSetterDocumentation" : "/**The type of artifact in the location.
\n@param type The type of artifact in the location.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ArtifactLocationType*/",
"varargSetterDocumentation" : "/**The type of artifact in the location.
\n@param type The type of artifact in the location.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ArtifactLocationType*/"
},
"S3Location" : {
"documentation" : "The Amazon S3 bucket that contains the artifact.
",
"name" : "S3Location",
"c2jName" : "s3Location",
"c2jShape" : "S3ArtifactLocation",
"variable" : {
"variableName" : "s3Location",
"variableType" : "S3ArtifactLocation",
"variableDeclarationType" : "S3ArtifactLocation",
"documentation" : "The Amazon S3 bucket that contains the artifact.
",
"simpleType" : "S3ArtifactLocation",
"variableSetterType" : "S3ArtifactLocation"
},
"setterModel" : {
"variableName" : "s3Location",
"variableType" : "S3ArtifactLocation",
"variableDeclarationType" : "S3ArtifactLocation",
"documentation" : "",
"simpleType" : "S3ArtifactLocation",
"variableSetterType" : "S3ArtifactLocation"
},
"getterModel" : {
"returnType" : "S3ArtifactLocation",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "s3Location",
"marshallLocationName" : "s3Location",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon S3 bucket that contains the artifact.
\n@param s3Location The Amazon S3 bucket that contains the artifact.*/",
"getterDocumentation" : "/**The Amazon S3 bucket that contains the artifact.
\n@return The Amazon S3 bucket that contains the artifact.*/",
"fluentSetterDocumentation" : "/**The Amazon S3 bucket that contains the artifact.
\n@param s3Location The Amazon S3 bucket that contains the artifact.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon S3 bucket that contains the artifact.
\n@param s3Location The Amazon S3 bucket that contains the artifact.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"PipelineExecutionNotFoundException" : {
"c2jName" : "PipelineExecutionNotFoundException",
"documentation" : "The pipeline execution was specified in an invalid format or cannot be found, or an execution ID does not belong to the specified pipeline.
",
"shapeName" : "PipelineExecutionNotFoundException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "pipelineExecutionNotFoundException",
"variableType" : "PipelineExecutionNotFoundException",
"variableDeclarationType" : "PipelineExecutionNotFoundException",
"documentation" : null,
"simpleType" : "PipelineExecutionNotFoundException",
"variableSetterType" : "PipelineExecutionNotFoundException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "PipelineExecutionNotFoundException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"PutJobFailureResultRequest" : {
"c2jName" : "PutJobFailureResultInput",
"documentation" : "Represents the input of a put job failure result action.
",
"shapeName" : "PutJobFailureResultRequest",
"deprecated" : false,
"required" : [ "jobId", "failureDetails" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.
",
"name" : "JobId",
"c2jName" : "jobId",
"c2jShape" : "JobId",
"variable" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "jobId",
"marshallLocationName" : "jobId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.
\n@param jobId The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.*/",
"getterDocumentation" : "/**The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.
\n@return The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.*/",
"fluentSetterDocumentation" : "/**The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.
\n@param jobId The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.
\n@param jobId The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The details about the failure of a job.
",
"name" : "FailureDetails",
"c2jName" : "failureDetails",
"c2jShape" : "FailureDetails",
"variable" : {
"variableName" : "failureDetails",
"variableType" : "FailureDetails",
"variableDeclarationType" : "FailureDetails",
"documentation" : "The details about the failure of a job.
",
"simpleType" : "FailureDetails",
"variableSetterType" : "FailureDetails"
},
"setterModel" : {
"variableName" : "failureDetails",
"variableType" : "FailureDetails",
"variableDeclarationType" : "FailureDetails",
"documentation" : "",
"simpleType" : "FailureDetails",
"variableSetterType" : "FailureDetails"
},
"getterModel" : {
"returnType" : "FailureDetails",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "failureDetails",
"marshallLocationName" : "failureDetails",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The details about the failure of a job.
\n@param failureDetails The details about the failure of a job.*/",
"getterDocumentation" : "/**The details about the failure of a job.
\n@return The details about the failure of a job.*/",
"fluentSetterDocumentation" : "/**The details about the failure of a job.
\n@param failureDetails The details about the failure of a job.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The details about the failure of a job.
\n@param failureDetails The details about the failure of a job.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "putJobFailureResultRequest",
"variableType" : "PutJobFailureResultRequest",
"variableDeclarationType" : "PutJobFailureResultRequest",
"documentation" : null,
"simpleType" : "PutJobFailureResultRequest",
"variableSetterType" : "PutJobFailureResultRequest"
},
"marshaller" : {
"action" : "PutJobFailureResult",
"verb" : "POST",
"target" : "CodePipeline_20150709.PutJobFailureResult",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"FailureDetails" : {
"documentation" : "The details about the failure of a job.
",
"name" : "FailureDetails",
"c2jName" : "failureDetails",
"c2jShape" : "FailureDetails",
"variable" : {
"variableName" : "failureDetails",
"variableType" : "FailureDetails",
"variableDeclarationType" : "FailureDetails",
"documentation" : "The details about the failure of a job.
",
"simpleType" : "FailureDetails",
"variableSetterType" : "FailureDetails"
},
"setterModel" : {
"variableName" : "failureDetails",
"variableType" : "FailureDetails",
"variableDeclarationType" : "FailureDetails",
"documentation" : "",
"simpleType" : "FailureDetails",
"variableSetterType" : "FailureDetails"
},
"getterModel" : {
"returnType" : "FailureDetails",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "failureDetails",
"marshallLocationName" : "failureDetails",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The details about the failure of a job.
\n@param failureDetails The details about the failure of a job.*/",
"getterDocumentation" : "/**The details about the failure of a job.
\n@return The details about the failure of a job.*/",
"fluentSetterDocumentation" : "/**The details about the failure of a job.
\n@param failureDetails The details about the failure of a job.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The details about the failure of a job.
\n@param failureDetails The details about the failure of a job.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"JobId" : {
"documentation" : "The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.
",
"name" : "JobId",
"c2jName" : "jobId",
"c2jShape" : "JobId",
"variable" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "jobId",
"marshallLocationName" : "jobId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.
\n@param jobId The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.*/",
"getterDocumentation" : "/**The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.
\n@return The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.*/",
"fluentSetterDocumentation" : "/**The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.
\n@param jobId The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.
\n@param jobId The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ApprovalAlreadyCompletedException" : {
"c2jName" : "ApprovalAlreadyCompletedException",
"documentation" : "The approval action has already been approved or rejected.
",
"shapeName" : "ApprovalAlreadyCompletedException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "approvalAlreadyCompletedException",
"variableType" : "ApprovalAlreadyCompletedException",
"variableDeclarationType" : "ApprovalAlreadyCompletedException",
"documentation" : null,
"simpleType" : "ApprovalAlreadyCompletedException",
"variableSetterType" : "ApprovalAlreadyCompletedException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "ApprovalAlreadyCompletedException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"ActionTypeId" : {
"c2jName" : "ActionTypeId",
"documentation" : "Represents information about an action type.
",
"shapeName" : "ActionTypeId",
"deprecated" : false,
"required" : [ "category", "owner", "provider", "version" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.
",
"name" : "Category",
"c2jName" : "category",
"c2jShape" : "ActionCategory",
"variable" : {
"variableName" : "category",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "category",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "category",
"marshallLocationName" : "category",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "ActionCategory",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.
\n@param category A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.\n@see ActionCategory*/",
"getterDocumentation" : "/**A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.
\n@return A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.\n@see ActionCategory*/",
"fluentSetterDocumentation" : "/**A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.
\n@param category A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ActionCategory*/",
"varargSetterDocumentation" : "/**A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.
\n@param category A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ActionCategory*/"
}, {
"documentation" : "The creator of the action being called.
",
"name" : "Owner",
"c2jName" : "owner",
"c2jShape" : "ActionOwner",
"variable" : {
"variableName" : "owner",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The creator of the action being called.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "owner",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "owner",
"marshallLocationName" : "owner",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "ActionOwner",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The creator of the action being called.
\n@param owner The creator of the action being called.\n@see ActionOwner*/",
"getterDocumentation" : "/**The creator of the action being called.
\n@return The creator of the action being called.\n@see ActionOwner*/",
"fluentSetterDocumentation" : "/**The creator of the action being called.
\n@param owner The creator of the action being called.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ActionOwner*/",
"varargSetterDocumentation" : "/**The creator of the action being called.
\n@param owner The creator of the action being called.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ActionOwner*/"
}, {
"documentation" : "The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.
",
"name" : "Provider",
"c2jName" : "provider",
"c2jShape" : "ActionProvider",
"variable" : {
"variableName" : "provider",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "provider",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "provider",
"marshallLocationName" : "provider",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.
\n@param provider The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.*/",
"getterDocumentation" : "/**The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.
\n@return The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.*/",
"fluentSetterDocumentation" : "/**The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.
\n@param provider The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.
\n@param provider The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A string that identifies the action type.
",
"name" : "Version",
"c2jName" : "version",
"c2jShape" : "Version",
"variable" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A string that identifies the action type.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "version",
"marshallLocationName" : "version",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string that identifies the action type.
\n@param version A string that identifies the action type.*/",
"getterDocumentation" : "/**A string that identifies the action type.
\n@return A string that identifies the action type.*/",
"fluentSetterDocumentation" : "/**A string that identifies the action type.
\n@param version A string that identifies the action type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A string that identifies the action type.
\n@param version A string that identifies the action type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "actionTypeId",
"variableType" : "ActionTypeId",
"variableDeclarationType" : "ActionTypeId",
"documentation" : null,
"simpleType" : "ActionTypeId",
"variableSetterType" : "ActionTypeId"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Owner" : {
"documentation" : "The creator of the action being called.
",
"name" : "Owner",
"c2jName" : "owner",
"c2jShape" : "ActionOwner",
"variable" : {
"variableName" : "owner",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The creator of the action being called.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "owner",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "owner",
"marshallLocationName" : "owner",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "ActionOwner",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The creator of the action being called.
\n@param owner The creator of the action being called.\n@see ActionOwner*/",
"getterDocumentation" : "/**The creator of the action being called.
\n@return The creator of the action being called.\n@see ActionOwner*/",
"fluentSetterDocumentation" : "/**The creator of the action being called.
\n@param owner The creator of the action being called.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ActionOwner*/",
"varargSetterDocumentation" : "/**The creator of the action being called.
\n@param owner The creator of the action being called.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ActionOwner*/"
},
"Category" : {
"documentation" : "A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.
",
"name" : "Category",
"c2jName" : "category",
"c2jShape" : "ActionCategory",
"variable" : {
"variableName" : "category",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "category",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "category",
"marshallLocationName" : "category",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "ActionCategory",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.
\n@param category A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.\n@see ActionCategory*/",
"getterDocumentation" : "/**A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.
\n@return A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.\n@see ActionCategory*/",
"fluentSetterDocumentation" : "/**A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.
\n@param category A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ActionCategory*/",
"varargSetterDocumentation" : "/**A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.
\n@param category A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ActionCategory*/"
},
"Version" : {
"documentation" : "A string that identifies the action type.
",
"name" : "Version",
"c2jName" : "version",
"c2jShape" : "Version",
"variable" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A string that identifies the action type.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "version",
"marshallLocationName" : "version",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string that identifies the action type.
\n@param version A string that identifies the action type.*/",
"getterDocumentation" : "/**A string that identifies the action type.
\n@return A string that identifies the action type.*/",
"fluentSetterDocumentation" : "/**A string that identifies the action type.
\n@param version A string that identifies the action type.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A string that identifies the action type.
\n@param version A string that identifies the action type.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Provider" : {
"documentation" : "The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.
",
"name" : "Provider",
"c2jName" : "provider",
"c2jShape" : "ActionProvider",
"variable" : {
"variableName" : "provider",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "provider",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "provider",
"marshallLocationName" : "provider",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.
\n@param provider The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.*/",
"getterDocumentation" : "/**The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.
\n@return The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.*/",
"fluentSetterDocumentation" : "/**The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.
\n@param provider The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.
\n@param provider The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DisableStageTransitionResult" : {
"c2jName" : "DisableStageTransitionResult",
"documentation" : null,
"shapeName" : "DisableStageTransitionResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "disableStageTransitionResult",
"variableType" : "DisableStageTransitionResult",
"variableDeclarationType" : "DisableStageTransitionResult",
"documentation" : null,
"simpleType" : "DisableStageTransitionResult",
"variableSetterType" : "DisableStageTransitionResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"PipelineExecution" : {
"c2jName" : "PipelineExecution",
"documentation" : "Represents information about an execution of a pipeline.
",
"shapeName" : "PipelineExecution",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the pipeline that was executed.
",
"name" : "PipelineName",
"c2jName" : "pipelineName",
"c2jShape" : "PipelineName",
"variable" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the pipeline that was executed.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineName",
"marshallLocationName" : "pipelineName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the pipeline that was executed.
\n@param pipelineName The name of the pipeline that was executed.*/",
"getterDocumentation" : "/**The name of the pipeline that was executed.
\n@return The name of the pipeline that was executed.*/",
"fluentSetterDocumentation" : "/**The name of the pipeline that was executed.
\n@param pipelineName The name of the pipeline that was executed.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the pipeline that was executed.
\n@param pipelineName The name of the pipeline that was executed.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The version number of the pipeline that was executed.
",
"name" : "PipelineVersion",
"c2jName" : "pipelineVersion",
"c2jShape" : "PipelineVersion",
"variable" : {
"variableName" : "pipelineVersion",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The version number of the pipeline that was executed.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "pipelineVersion",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineVersion",
"marshallLocationName" : "pipelineVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version number of the pipeline that was executed.
\n@param pipelineVersion The version number of the pipeline that was executed.*/",
"getterDocumentation" : "/**The version number of the pipeline that was executed.
\n@return The version number of the pipeline that was executed.*/",
"fluentSetterDocumentation" : "/**The version number of the pipeline that was executed.
\n@param pipelineVersion The version number of the pipeline that was executed.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The version number of the pipeline that was executed.
\n@param pipelineVersion The version number of the pipeline that was executed.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The ID of the pipeline execution.
",
"name" : "PipelineExecutionId",
"c2jName" : "pipelineExecutionId",
"c2jShape" : "PipelineExecutionId",
"variable" : {
"variableName" : "pipelineExecutionId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ID of the pipeline execution.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "pipelineExecutionId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineExecutionId",
"marshallLocationName" : "pipelineExecutionId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the pipeline execution.
\n@param pipelineExecutionId The ID of the pipeline execution.*/",
"getterDocumentation" : "/**The ID of the pipeline execution.
\n@return The ID of the pipeline execution.*/",
"fluentSetterDocumentation" : "/**The ID of the pipeline execution.
\n@param pipelineExecutionId The ID of the pipeline execution.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the pipeline execution.
\n@param pipelineExecutionId The ID of the pipeline execution.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The status of the pipeline execution.
-
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
",
"name" : "Status",
"c2jName" : "status",
"c2jShape" : "PipelineExecutionStatus",
"variable" : {
"variableName" : "status",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The status of the pipeline execution.
-
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "status",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "status",
"marshallLocationName" : "status",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "PipelineExecutionStatus",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The status of the pipeline execution.
-
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
\n@param status The status of the pipeline execution. -
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
\n@see PipelineExecutionStatus*/",
"getterDocumentation" : "/**The status of the pipeline execution.
-
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
\n@return The status of the pipeline execution. -
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
\n@see PipelineExecutionStatus*/",
"fluentSetterDocumentation" : "/**The status of the pipeline execution.
-
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
\n@param status The status of the pipeline execution. -
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see PipelineExecutionStatus*/",
"varargSetterDocumentation" : "/**The status of the pipeline execution.
-
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
\n@param status The status of the pipeline execution. -
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see PipelineExecutionStatus*/"
}, {
"documentation" : "A list of ArtifactRevision objects included in a pipeline execution.
",
"name" : "ArtifactRevisions",
"c2jName" : "artifactRevisions",
"c2jShape" : "ArtifactRevisionList",
"variable" : {
"variableName" : "artifactRevisions",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "A list of ArtifactRevision objects included in a pipeline execution.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "artifactRevisions",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "artifactRevisions",
"marshallLocationName" : "artifactRevisions",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "ArtifactRevision",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "ArtifactRevision",
"variable" : {
"variableName" : "member",
"variableType" : "ArtifactRevision",
"variableDeclarationType" : "ArtifactRevision",
"documentation" : "",
"simpleType" : "ArtifactRevision",
"variableSetterType" : "ArtifactRevision"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "ArtifactRevision",
"variableDeclarationType" : "ArtifactRevision",
"documentation" : "",
"simpleType" : "ArtifactRevision",
"variableSetterType" : "ArtifactRevision"
},
"getterModel" : {
"returnType" : "ArtifactRevision",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"marshallNonAutoConstructedEmptyLists" : false,
"simple" : false,
"simpleType" : "ArtifactRevision",
"map" : false,
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of ArtifactRevision objects included in a pipeline execution.
\n@param artifactRevisions A list of ArtifactRevision objects included in a pipeline execution.*/",
"getterDocumentation" : "/**A list of ArtifactRevision objects included in a pipeline execution.
\n@return A list of ArtifactRevision objects included in a pipeline execution.*/",
"fluentSetterDocumentation" : "/**A list of ArtifactRevision objects included in a pipeline execution.
\n@param artifactRevisions A list of ArtifactRevision objects included in a pipeline execution.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of ArtifactRevision objects included in a pipeline execution.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setArtifactRevisions(java.util.Collection)} or {@link #withArtifactRevisions(java.util.Collection)} if you want to override the existing values.
\n@param artifactRevisions A list of ArtifactRevision objects included in a pipeline execution.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "pipelineExecution",
"variableType" : "PipelineExecution",
"variableDeclarationType" : "PipelineExecution",
"documentation" : null,
"simpleType" : "PipelineExecution",
"variableSetterType" : "PipelineExecution"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Status" : {
"documentation" : "The status of the pipeline execution.
-
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
",
"name" : "Status",
"c2jName" : "status",
"c2jShape" : "PipelineExecutionStatus",
"variable" : {
"variableName" : "status",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The status of the pipeline execution.
-
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "status",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "status",
"marshallLocationName" : "status",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "PipelineExecutionStatus",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The status of the pipeline execution.
-
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
\n@param status The status of the pipeline execution. -
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
\n@see PipelineExecutionStatus*/",
"getterDocumentation" : "/**The status of the pipeline execution.
-
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
\n@return The status of the pipeline execution. -
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
\n@see PipelineExecutionStatus*/",
"fluentSetterDocumentation" : "/**The status of the pipeline execution.
-
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
\n@param status The status of the pipeline execution. -
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see PipelineExecutionStatus*/",
"varargSetterDocumentation" : "/**The status of the pipeline execution.
-
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
\n@param status The status of the pipeline execution. -
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see PipelineExecutionStatus*/"
},
"PipelineName" : {
"documentation" : "The name of the pipeline that was executed.
",
"name" : "PipelineName",
"c2jName" : "pipelineName",
"c2jShape" : "PipelineName",
"variable" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the pipeline that was executed.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineName",
"marshallLocationName" : "pipelineName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the pipeline that was executed.
\n@param pipelineName The name of the pipeline that was executed.*/",
"getterDocumentation" : "/**The name of the pipeline that was executed.
\n@return The name of the pipeline that was executed.*/",
"fluentSetterDocumentation" : "/**The name of the pipeline that was executed.
\n@param pipelineName The name of the pipeline that was executed.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the pipeline that was executed.
\n@param pipelineName The name of the pipeline that was executed.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"PipelineExecutionId" : {
"documentation" : "The ID of the pipeline execution.
",
"name" : "PipelineExecutionId",
"c2jName" : "pipelineExecutionId",
"c2jShape" : "PipelineExecutionId",
"variable" : {
"variableName" : "pipelineExecutionId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ID of the pipeline execution.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "pipelineExecutionId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineExecutionId",
"marshallLocationName" : "pipelineExecutionId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the pipeline execution.
\n@param pipelineExecutionId The ID of the pipeline execution.*/",
"getterDocumentation" : "/**The ID of the pipeline execution.
\n@return The ID of the pipeline execution.*/",
"fluentSetterDocumentation" : "/**The ID of the pipeline execution.
\n@param pipelineExecutionId The ID of the pipeline execution.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the pipeline execution.
\n@param pipelineExecutionId The ID of the pipeline execution.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ArtifactRevisions" : {
"documentation" : "A list of ArtifactRevision objects included in a pipeline execution.
",
"name" : "ArtifactRevisions",
"c2jName" : "artifactRevisions",
"c2jShape" : "ArtifactRevisionList",
"variable" : {
"variableName" : "artifactRevisions",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "A list of ArtifactRevision objects included in a pipeline execution.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "artifactRevisions",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "artifactRevisions",
"marshallLocationName" : "artifactRevisions",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "ArtifactRevision",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "ArtifactRevision",
"variable" : {
"variableName" : "member",
"variableType" : "ArtifactRevision",
"variableDeclarationType" : "ArtifactRevision",
"documentation" : "",
"simpleType" : "ArtifactRevision",
"variableSetterType" : "ArtifactRevision"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "ArtifactRevision",
"variableDeclarationType" : "ArtifactRevision",
"documentation" : "",
"simpleType" : "ArtifactRevision",
"variableSetterType" : "ArtifactRevision"
},
"getterModel" : {
"returnType" : "ArtifactRevision",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"marshallNonAutoConstructedEmptyLists" : false,
"simple" : false,
"simpleType" : "ArtifactRevision",
"map" : false,
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of ArtifactRevision objects included in a pipeline execution.
\n@param artifactRevisions A list of ArtifactRevision objects included in a pipeline execution.*/",
"getterDocumentation" : "/**A list of ArtifactRevision objects included in a pipeline execution.
\n@return A list of ArtifactRevision objects included in a pipeline execution.*/",
"fluentSetterDocumentation" : "/**A list of ArtifactRevision objects included in a pipeline execution.
\n@param artifactRevisions A list of ArtifactRevision objects included in a pipeline execution.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of ArtifactRevision objects included in a pipeline execution.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setArtifactRevisions(java.util.Collection)} or {@link #withArtifactRevisions(java.util.Collection)} if you want to override the existing values.
\n@param artifactRevisions A list of ArtifactRevision objects included in a pipeline execution.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"PipelineVersion" : {
"documentation" : "The version number of the pipeline that was executed.
",
"name" : "PipelineVersion",
"c2jName" : "pipelineVersion",
"c2jShape" : "PipelineVersion",
"variable" : {
"variableName" : "pipelineVersion",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The version number of the pipeline that was executed.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "pipelineVersion",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineVersion",
"marshallLocationName" : "pipelineVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version number of the pipeline that was executed.
\n@param pipelineVersion The version number of the pipeline that was executed.*/",
"getterDocumentation" : "/**The version number of the pipeline that was executed.
\n@return The version number of the pipeline that was executed.*/",
"fluentSetterDocumentation" : "/**The version number of the pipeline that was executed.
\n@param pipelineVersion The version number of the pipeline that was executed.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The version number of the pipeline that was executed.
\n@param pipelineVersion The version number of the pipeline that was executed.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DeleteCustomActionTypeRequest" : {
"c2jName" : "DeleteCustomActionTypeInput",
"documentation" : "Represents the input of a delete custom action operation. The custom action will be marked as deleted.
",
"shapeName" : "DeleteCustomActionTypeRequest",
"deprecated" : false,
"required" : [ "category", "provider", "version" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The category of the custom action that you want to delete, such as source or deploy.
",
"name" : "Category",
"c2jName" : "category",
"c2jShape" : "ActionCategory",
"variable" : {
"variableName" : "category",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The category of the custom action that you want to delete, such as source or deploy.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "category",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "category",
"marshallLocationName" : "category",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "ActionCategory",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The category of the custom action that you want to delete, such as source or deploy.
\n@param category The category of the custom action that you want to delete, such as source or deploy.\n@see ActionCategory*/",
"getterDocumentation" : "/**The category of the custom action that you want to delete, such as source or deploy.
\n@return The category of the custom action that you want to delete, such as source or deploy.\n@see ActionCategory*/",
"fluentSetterDocumentation" : "/**The category of the custom action that you want to delete, such as source or deploy.
\n@param category The category of the custom action that you want to delete, such as source or deploy.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ActionCategory*/",
"varargSetterDocumentation" : "/**The category of the custom action that you want to delete, such as source or deploy.
\n@param category The category of the custom action that you want to delete, such as source or deploy.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ActionCategory*/"
}, {
"documentation" : "The provider of the service used in the custom action, such as AWS CodeDeploy.
",
"name" : "Provider",
"c2jName" : "provider",
"c2jShape" : "ActionProvider",
"variable" : {
"variableName" : "provider",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The provider of the service used in the custom action, such as AWS CodeDeploy.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "provider",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "provider",
"marshallLocationName" : "provider",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The provider of the service used in the custom action, such as AWS CodeDeploy.
\n@param provider The provider of the service used in the custom action, such as AWS CodeDeploy.*/",
"getterDocumentation" : "/**The provider of the service used in the custom action, such as AWS CodeDeploy.
\n@return The provider of the service used in the custom action, such as AWS CodeDeploy.*/",
"fluentSetterDocumentation" : "/**The provider of the service used in the custom action, such as AWS CodeDeploy.
\n@param provider The provider of the service used in the custom action, such as AWS CodeDeploy.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The provider of the service used in the custom action, such as AWS CodeDeploy.
\n@param provider The provider of the service used in the custom action, such as AWS CodeDeploy.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The version of the custom action to delete.
",
"name" : "Version",
"c2jName" : "version",
"c2jShape" : "Version",
"variable" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The version of the custom action to delete.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "version",
"marshallLocationName" : "version",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version of the custom action to delete.
\n@param version The version of the custom action to delete.*/",
"getterDocumentation" : "/**The version of the custom action to delete.
\n@return The version of the custom action to delete.*/",
"fluentSetterDocumentation" : "/**The version of the custom action to delete.
\n@param version The version of the custom action to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The version of the custom action to delete.
\n@param version The version of the custom action to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "deleteCustomActionTypeRequest",
"variableType" : "DeleteCustomActionTypeRequest",
"variableDeclarationType" : "DeleteCustomActionTypeRequest",
"documentation" : null,
"simpleType" : "DeleteCustomActionTypeRequest",
"variableSetterType" : "DeleteCustomActionTypeRequest"
},
"marshaller" : {
"action" : "DeleteCustomActionType",
"verb" : "POST",
"target" : "CodePipeline_20150709.DeleteCustomActionType",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Category" : {
"documentation" : "The category of the custom action that you want to delete, such as source or deploy.
",
"name" : "Category",
"c2jName" : "category",
"c2jShape" : "ActionCategory",
"variable" : {
"variableName" : "category",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The category of the custom action that you want to delete, such as source or deploy.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "category",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "category",
"marshallLocationName" : "category",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "ActionCategory",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The category of the custom action that you want to delete, such as source or deploy.
\n@param category The category of the custom action that you want to delete, such as source or deploy.\n@see ActionCategory*/",
"getterDocumentation" : "/**The category of the custom action that you want to delete, such as source or deploy.
\n@return The category of the custom action that you want to delete, such as source or deploy.\n@see ActionCategory*/",
"fluentSetterDocumentation" : "/**The category of the custom action that you want to delete, such as source or deploy.
\n@param category The category of the custom action that you want to delete, such as source or deploy.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ActionCategory*/",
"varargSetterDocumentation" : "/**The category of the custom action that you want to delete, such as source or deploy.
\n@param category The category of the custom action that you want to delete, such as source or deploy.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ActionCategory*/"
},
"Version" : {
"documentation" : "The version of the custom action to delete.
",
"name" : "Version",
"c2jName" : "version",
"c2jShape" : "Version",
"variable" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The version of the custom action to delete.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "version",
"marshallLocationName" : "version",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version of the custom action to delete.
\n@param version The version of the custom action to delete.*/",
"getterDocumentation" : "/**The version of the custom action to delete.
\n@return The version of the custom action to delete.*/",
"fluentSetterDocumentation" : "/**The version of the custom action to delete.
\n@param version The version of the custom action to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The version of the custom action to delete.
\n@param version The version of the custom action to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Provider" : {
"documentation" : "The provider of the service used in the custom action, such as AWS CodeDeploy.
",
"name" : "Provider",
"c2jName" : "provider",
"c2jShape" : "ActionProvider",
"variable" : {
"variableName" : "provider",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The provider of the service used in the custom action, such as AWS CodeDeploy.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "provider",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "provider",
"marshallLocationName" : "provider",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The provider of the service used in the custom action, such as AWS CodeDeploy.
\n@param provider The provider of the service used in the custom action, such as AWS CodeDeploy.*/",
"getterDocumentation" : "/**The provider of the service used in the custom action, such as AWS CodeDeploy.
\n@return The provider of the service used in the custom action, such as AWS CodeDeploy.*/",
"fluentSetterDocumentation" : "/**The provider of the service used in the custom action, such as AWS CodeDeploy.
\n@param provider The provider of the service used in the custom action, such as AWS CodeDeploy.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The provider of the service used in the custom action, such as AWS CodeDeploy.
\n@param provider The provider of the service used in the custom action, such as AWS CodeDeploy.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"PipelineNameInUseException" : {
"c2jName" : "PipelineNameInUseException",
"documentation" : "The specified pipeline name is already in use.
",
"shapeName" : "PipelineNameInUseException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "pipelineNameInUseException",
"variableType" : "PipelineNameInUseException",
"variableDeclarationType" : "PipelineNameInUseException",
"documentation" : null,
"simpleType" : "PipelineNameInUseException",
"variableSetterType" : "PipelineNameInUseException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "PipelineNameInUseException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"ErrorDetails" : {
"c2jName" : "ErrorDetails",
"documentation" : "Represents information about an error in AWS CodePipeline.
",
"shapeName" : "ErrorDetails",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The system ID or error number code of the error.
",
"name" : "Code",
"c2jName" : "code",
"c2jShape" : "Code",
"variable" : {
"variableName" : "code",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The system ID or error number code of the error.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "code",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "code",
"marshallLocationName" : "code",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The system ID or error number code of the error.
\n@param code The system ID or error number code of the error.*/",
"getterDocumentation" : "/**The system ID or error number code of the error.
\n@return The system ID or error number code of the error.*/",
"fluentSetterDocumentation" : "/**The system ID or error number code of the error.
\n@param code The system ID or error number code of the error.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The system ID or error number code of the error.
\n@param code The system ID or error number code of the error.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The text of the error message.
",
"name" : "Message",
"c2jName" : "message",
"c2jShape" : "Message",
"variable" : {
"variableName" : "message",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The text of the error message.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "message",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "message",
"marshallLocationName" : "message",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The text of the error message.
\n@param message The text of the error message.*/",
"getterDocumentation" : "/**The text of the error message.
\n@return The text of the error message.*/",
"fluentSetterDocumentation" : "/**The text of the error message.
\n@param message The text of the error message.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The text of the error message.
\n@param message The text of the error message.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "errorDetails",
"variableType" : "ErrorDetails",
"variableDeclarationType" : "ErrorDetails",
"documentation" : null,
"simpleType" : "ErrorDetails",
"variableSetterType" : "ErrorDetails"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Message" : {
"documentation" : "The text of the error message.
",
"name" : "Message",
"c2jName" : "message",
"c2jShape" : "Message",
"variable" : {
"variableName" : "message",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The text of the error message.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "message",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "message",
"marshallLocationName" : "message",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The text of the error message.
\n@param message The text of the error message.*/",
"getterDocumentation" : "/**The text of the error message.
\n@return The text of the error message.*/",
"fluentSetterDocumentation" : "/**The text of the error message.
\n@param message The text of the error message.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The text of the error message.
\n@param message The text of the error message.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Code" : {
"documentation" : "The system ID or error number code of the error.
",
"name" : "Code",
"c2jName" : "code",
"c2jShape" : "Code",
"variable" : {
"variableName" : "code",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The system ID or error number code of the error.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "code",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "code",
"marshallLocationName" : "code",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The system ID or error number code of the error.
\n@param code The system ID or error number code of the error.*/",
"getterDocumentation" : "/**The system ID or error number code of the error.
\n@return The system ID or error number code of the error.*/",
"fluentSetterDocumentation" : "/**The system ID or error number code of the error.
\n@param code The system ID or error number code of the error.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The system ID or error number code of the error.
\n@param code The system ID or error number code of the error.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListPipelinesResult" : {
"c2jName" : "ListPipelinesOutput",
"documentation" : "Represents the output of a list pipelines action.
",
"shapeName" : "ListPipelinesResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The list of pipelines.
",
"name" : "Pipelines",
"c2jName" : "pipelines",
"c2jShape" : "PipelineList",
"variable" : {
"variableName" : "pipelines",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "The list of pipelines.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "pipelines",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelines",
"marshallLocationName" : "pipelines",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "PipelineSummary",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "PipelineSummary",
"variable" : {
"variableName" : "member",
"variableType" : "PipelineSummary",
"variableDeclarationType" : "PipelineSummary",
"documentation" : "",
"simpleType" : "PipelineSummary",
"variableSetterType" : "PipelineSummary"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "PipelineSummary",
"variableDeclarationType" : "PipelineSummary",
"documentation" : "",
"simpleType" : "PipelineSummary",
"variableSetterType" : "PipelineSummary"
},
"getterModel" : {
"returnType" : "PipelineSummary",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"marshallNonAutoConstructedEmptyLists" : false,
"simple" : false,
"simpleType" : "PipelineSummary",
"map" : false,
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The list of pipelines.
\n@param pipelines The list of pipelines.*/",
"getterDocumentation" : "/**The list of pipelines.
\n@return The list of pipelines.*/",
"fluentSetterDocumentation" : "/**The list of pipelines.
\n@param pipelines The list of pipelines.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The list of pipelines.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setPipelines(java.util.Collection)} or {@link #withPipelines(java.util.Collection)} if you want to override the existing values.
\n@param pipelines The list of pipelines.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
",
"name" : "NextToken",
"c2jName" : "nextToken",
"c2jShape" : "NextToken",
"variable" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "nextToken",
"marshallLocationName" : "nextToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
\n@param nextToken If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.*/",
"getterDocumentation" : "/**If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
\n@return If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.*/",
"fluentSetterDocumentation" : "/**If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
\n@param nextToken If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
\n@param nextToken If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listPipelinesResult",
"variableType" : "ListPipelinesResult",
"variableDeclarationType" : "ListPipelinesResult",
"documentation" : null,
"simpleType" : "ListPipelinesResult",
"variableSetterType" : "ListPipelinesResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"NextToken" : {
"documentation" : "If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
",
"name" : "NextToken",
"c2jName" : "nextToken",
"c2jShape" : "NextToken",
"variable" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "nextToken",
"marshallLocationName" : "nextToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
\n@param nextToken If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.*/",
"getterDocumentation" : "/**If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
\n@return If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.*/",
"fluentSetterDocumentation" : "/**If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
\n@param nextToken If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
\n@param nextToken If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Pipelines" : {
"documentation" : "The list of pipelines.
",
"name" : "Pipelines",
"c2jName" : "pipelines",
"c2jShape" : "PipelineList",
"variable" : {
"variableName" : "pipelines",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "The list of pipelines.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "pipelines",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelines",
"marshallLocationName" : "pipelines",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "PipelineSummary",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "PipelineSummary",
"variable" : {
"variableName" : "member",
"variableType" : "PipelineSummary",
"variableDeclarationType" : "PipelineSummary",
"documentation" : "",
"simpleType" : "PipelineSummary",
"variableSetterType" : "PipelineSummary"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "PipelineSummary",
"variableDeclarationType" : "PipelineSummary",
"documentation" : "",
"simpleType" : "PipelineSummary",
"variableSetterType" : "PipelineSummary"
},
"getterModel" : {
"returnType" : "PipelineSummary",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"marshallNonAutoConstructedEmptyLists" : false,
"simple" : false,
"simpleType" : "PipelineSummary",
"map" : false,
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**The list of pipelines.
\n@param pipelines The list of pipelines.*/",
"getterDocumentation" : "/**The list of pipelines.
\n@return The list of pipelines.*/",
"fluentSetterDocumentation" : "/**The list of pipelines.
\n@param pipelines The list of pipelines.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The list of pipelines.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setPipelines(java.util.Collection)} or {@link #withPipelines(java.util.Collection)} if you want to override the existing values.
\n@param pipelines The list of pipelines.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"JobStatus" : {
"c2jName" : "JobStatus",
"documentation" : "",
"shapeName" : "JobStatus",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "Created",
"value" : "Created"
}, {
"name" : "Queued",
"value" : "Queued"
}, {
"name" : "Dispatched",
"value" : "Dispatched"
}, {
"name" : "InProgress",
"value" : "InProgress"
}, {
"name" : "TimedOut",
"value" : "TimedOut"
}, {
"name" : "Succeeded",
"value" : "Succeeded"
}, {
"name" : "Failed",
"value" : "Failed"
} ],
"variable" : {
"variableName" : "jobStatus",
"variableType" : "JobStatus",
"variableDeclarationType" : "JobStatus",
"documentation" : null,
"simpleType" : "JobStatus",
"variableSetterType" : "JobStatus"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"PutJobSuccessResultRequest" : {
"c2jName" : "PutJobSuccessResultInput",
"documentation" : "Represents the input of a put job success result action.
",
"shapeName" : "PutJobSuccessResultRequest",
"deprecated" : false,
"required" : [ "jobId" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.
",
"name" : "JobId",
"c2jName" : "jobId",
"c2jShape" : "JobId",
"variable" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "jobId",
"marshallLocationName" : "jobId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.
\n@param jobId The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.*/",
"getterDocumentation" : "/**The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.
\n@return The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.*/",
"fluentSetterDocumentation" : "/**The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.
\n@param jobId The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.
\n@param jobId The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The ID of the current revision of the artifact successfully worked upon by the job.
",
"name" : "CurrentRevision",
"c2jName" : "currentRevision",
"c2jShape" : "CurrentRevision",
"variable" : {
"variableName" : "currentRevision",
"variableType" : "CurrentRevision",
"variableDeclarationType" : "CurrentRevision",
"documentation" : "The ID of the current revision of the artifact successfully worked upon by the job.
",
"simpleType" : "CurrentRevision",
"variableSetterType" : "CurrentRevision"
},
"setterModel" : {
"variableName" : "currentRevision",
"variableType" : "CurrentRevision",
"variableDeclarationType" : "CurrentRevision",
"documentation" : "",
"simpleType" : "CurrentRevision",
"variableSetterType" : "CurrentRevision"
},
"getterModel" : {
"returnType" : "CurrentRevision",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "currentRevision",
"marshallLocationName" : "currentRevision",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the current revision of the artifact successfully worked upon by the job.
\n@param currentRevision The ID of the current revision of the artifact successfully worked upon by the job.*/",
"getterDocumentation" : "/**The ID of the current revision of the artifact successfully worked upon by the job.
\n@return The ID of the current revision of the artifact successfully worked upon by the job.*/",
"fluentSetterDocumentation" : "/**The ID of the current revision of the artifact successfully worked upon by the job.
\n@param currentRevision The ID of the current revision of the artifact successfully worked upon by the job.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the current revision of the artifact successfully worked upon by the job.
\n@param currentRevision The ID of the current revision of the artifact successfully worked upon by the job.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.
",
"name" : "ContinuationToken",
"c2jName" : "continuationToken",
"c2jShape" : "ContinuationToken",
"variable" : {
"variableName" : "continuationToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "continuationToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "continuationToken",
"marshallLocationName" : "continuationToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.
\n@param continuationToken A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.*/",
"getterDocumentation" : "/**A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.
\n@return A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.*/",
"fluentSetterDocumentation" : "/**A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.
\n@param continuationToken A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.
\n@param continuationToken A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The execution details of the successful job, such as the actions taken by the job worker.
",
"name" : "ExecutionDetails",
"c2jName" : "executionDetails",
"c2jShape" : "ExecutionDetails",
"variable" : {
"variableName" : "executionDetails",
"variableType" : "ExecutionDetails",
"variableDeclarationType" : "ExecutionDetails",
"documentation" : "The execution details of the successful job, such as the actions taken by the job worker.
",
"simpleType" : "ExecutionDetails",
"variableSetterType" : "ExecutionDetails"
},
"setterModel" : {
"variableName" : "executionDetails",
"variableType" : "ExecutionDetails",
"variableDeclarationType" : "ExecutionDetails",
"documentation" : "",
"simpleType" : "ExecutionDetails",
"variableSetterType" : "ExecutionDetails"
},
"getterModel" : {
"returnType" : "ExecutionDetails",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "executionDetails",
"marshallLocationName" : "executionDetails",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The execution details of the successful job, such as the actions taken by the job worker.
\n@param executionDetails The execution details of the successful job, such as the actions taken by the job worker.*/",
"getterDocumentation" : "/**The execution details of the successful job, such as the actions taken by the job worker.
\n@return The execution details of the successful job, such as the actions taken by the job worker.*/",
"fluentSetterDocumentation" : "/**The execution details of the successful job, such as the actions taken by the job worker.
\n@param executionDetails The execution details of the successful job, such as the actions taken by the job worker.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The execution details of the successful job, such as the actions taken by the job worker.
\n@param executionDetails The execution details of the successful job, such as the actions taken by the job worker.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "putJobSuccessResultRequest",
"variableType" : "PutJobSuccessResultRequest",
"variableDeclarationType" : "PutJobSuccessResultRequest",
"documentation" : null,
"simpleType" : "PutJobSuccessResultRequest",
"variableSetterType" : "PutJobSuccessResultRequest"
},
"marshaller" : {
"action" : "PutJobSuccessResult",
"verb" : "POST",
"target" : "CodePipeline_20150709.PutJobSuccessResult",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ContinuationToken" : {
"documentation" : "A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.
",
"name" : "ContinuationToken",
"c2jName" : "continuationToken",
"c2jShape" : "ContinuationToken",
"variable" : {
"variableName" : "continuationToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "continuationToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "continuationToken",
"marshallLocationName" : "continuationToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.
\n@param continuationToken A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.*/",
"getterDocumentation" : "/**A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.
\n@return A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.*/",
"fluentSetterDocumentation" : "/**A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.
\n@param continuationToken A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.
\n@param continuationToken A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs will use this token in order to identify the running instance of the action. It can be reused to return additional information about the progress of the custom action. When the action is complete, no continuation token should be supplied.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ExecutionDetails" : {
"documentation" : "The execution details of the successful job, such as the actions taken by the job worker.
",
"name" : "ExecutionDetails",
"c2jName" : "executionDetails",
"c2jShape" : "ExecutionDetails",
"variable" : {
"variableName" : "executionDetails",
"variableType" : "ExecutionDetails",
"variableDeclarationType" : "ExecutionDetails",
"documentation" : "The execution details of the successful job, such as the actions taken by the job worker.
",
"simpleType" : "ExecutionDetails",
"variableSetterType" : "ExecutionDetails"
},
"setterModel" : {
"variableName" : "executionDetails",
"variableType" : "ExecutionDetails",
"variableDeclarationType" : "ExecutionDetails",
"documentation" : "",
"simpleType" : "ExecutionDetails",
"variableSetterType" : "ExecutionDetails"
},
"getterModel" : {
"returnType" : "ExecutionDetails",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "executionDetails",
"marshallLocationName" : "executionDetails",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The execution details of the successful job, such as the actions taken by the job worker.
\n@param executionDetails The execution details of the successful job, such as the actions taken by the job worker.*/",
"getterDocumentation" : "/**The execution details of the successful job, such as the actions taken by the job worker.
\n@return The execution details of the successful job, such as the actions taken by the job worker.*/",
"fluentSetterDocumentation" : "/**The execution details of the successful job, such as the actions taken by the job worker.
\n@param executionDetails The execution details of the successful job, such as the actions taken by the job worker.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The execution details of the successful job, such as the actions taken by the job worker.
\n@param executionDetails The execution details of the successful job, such as the actions taken by the job worker.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"CurrentRevision" : {
"documentation" : "The ID of the current revision of the artifact successfully worked upon by the job.
",
"name" : "CurrentRevision",
"c2jName" : "currentRevision",
"c2jShape" : "CurrentRevision",
"variable" : {
"variableName" : "currentRevision",
"variableType" : "CurrentRevision",
"variableDeclarationType" : "CurrentRevision",
"documentation" : "The ID of the current revision of the artifact successfully worked upon by the job.
",
"simpleType" : "CurrentRevision",
"variableSetterType" : "CurrentRevision"
},
"setterModel" : {
"variableName" : "currentRevision",
"variableType" : "CurrentRevision",
"variableDeclarationType" : "CurrentRevision",
"documentation" : "",
"simpleType" : "CurrentRevision",
"variableSetterType" : "CurrentRevision"
},
"getterModel" : {
"returnType" : "CurrentRevision",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "currentRevision",
"marshallLocationName" : "currentRevision",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the current revision of the artifact successfully worked upon by the job.
\n@param currentRevision The ID of the current revision of the artifact successfully worked upon by the job.*/",
"getterDocumentation" : "/**The ID of the current revision of the artifact successfully worked upon by the job.
\n@return The ID of the current revision of the artifact successfully worked upon by the job.*/",
"fluentSetterDocumentation" : "/**The ID of the current revision of the artifact successfully worked upon by the job.
\n@param currentRevision The ID of the current revision of the artifact successfully worked upon by the job.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the current revision of the artifact successfully worked upon by the job.
\n@param currentRevision The ID of the current revision of the artifact successfully worked upon by the job.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"JobId" : {
"documentation" : "The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.
",
"name" : "JobId",
"c2jName" : "jobId",
"c2jShape" : "JobId",
"variable" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "jobId",
"marshallLocationName" : "jobId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.
\n@param jobId The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.*/",
"getterDocumentation" : "/**The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.
\n@return The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.*/",
"fluentSetterDocumentation" : "/**The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.
\n@param jobId The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.
\n@param jobId The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"GetThirdPartyJobDetailsRequest" : {
"c2jName" : "GetThirdPartyJobDetailsInput",
"documentation" : "Represents the input of a get third party job details action.
",
"shapeName" : "GetThirdPartyJobDetailsRequest",
"deprecated" : false,
"required" : [ "jobId", "clientToken" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The unique system-generated ID used for identifying the job.
",
"name" : "JobId",
"c2jName" : "jobId",
"c2jShape" : "ThirdPartyJobId",
"variable" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The unique system-generated ID used for identifying the job.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "jobId",
"marshallLocationName" : "jobId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The unique system-generated ID used for identifying the job.
\n@param jobId The unique system-generated ID used for identifying the job.*/",
"getterDocumentation" : "/**The unique system-generated ID used for identifying the job.
\n@return The unique system-generated ID used for identifying the job.*/",
"fluentSetterDocumentation" : "/**The unique system-generated ID used for identifying the job.
\n@param jobId The unique system-generated ID used for identifying the job.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The unique system-generated ID used for identifying the job.
\n@param jobId The unique system-generated ID used for identifying the job.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
",
"name" : "ClientToken",
"c2jName" : "clientToken",
"c2jShape" : "ClientToken",
"variable" : {
"variableName" : "clientToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "clientToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "clientToken",
"marshallLocationName" : "clientToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientToken The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.*/",
"getterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@return The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.*/",
"fluentSetterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientToken The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientToken The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getThirdPartyJobDetailsRequest",
"variableType" : "GetThirdPartyJobDetailsRequest",
"variableDeclarationType" : "GetThirdPartyJobDetailsRequest",
"documentation" : null,
"simpleType" : "GetThirdPartyJobDetailsRequest",
"variableSetterType" : "GetThirdPartyJobDetailsRequest"
},
"marshaller" : {
"action" : "GetThirdPartyJobDetails",
"verb" : "POST",
"target" : "CodePipeline_20150709.GetThirdPartyJobDetails",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ClientToken" : {
"documentation" : "The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
",
"name" : "ClientToken",
"c2jName" : "clientToken",
"c2jShape" : "ClientToken",
"variable" : {
"variableName" : "clientToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "clientToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "clientToken",
"marshallLocationName" : "clientToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientToken The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.*/",
"getterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@return The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.*/",
"fluentSetterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientToken The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientToken The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"JobId" : {
"documentation" : "The unique system-generated ID used for identifying the job.
",
"name" : "JobId",
"c2jName" : "jobId",
"c2jShape" : "ThirdPartyJobId",
"variable" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The unique system-generated ID used for identifying the job.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "jobId",
"marshallLocationName" : "jobId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The unique system-generated ID used for identifying the job.
\n@param jobId The unique system-generated ID used for identifying the job.*/",
"getterDocumentation" : "/**The unique system-generated ID used for identifying the job.
\n@return The unique system-generated ID used for identifying the job.*/",
"fluentSetterDocumentation" : "/**The unique system-generated ID used for identifying the job.
\n@param jobId The unique system-generated ID used for identifying the job.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The unique system-generated ID used for identifying the job.
\n@param jobId The unique system-generated ID used for identifying the job.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"PipelineNotFoundException" : {
"c2jName" : "PipelineNotFoundException",
"documentation" : "The specified pipeline was specified in an invalid format or cannot be found.
",
"shapeName" : "PipelineNotFoundException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "pipelineNotFoundException",
"variableType" : "PipelineNotFoundException",
"variableDeclarationType" : "PipelineNotFoundException",
"documentation" : null,
"simpleType" : "PipelineNotFoundException",
"variableSetterType" : "PipelineNotFoundException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "PipelineNotFoundException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"TransitionState" : {
"c2jName" : "TransitionState",
"documentation" : "Represents information about the state of transitions between one stage and another stage.
",
"shapeName" : "TransitionState",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Whether the transition between stages is enabled (true) or disabled (false).
",
"name" : "Enabled",
"c2jName" : "enabled",
"c2jShape" : "Enabled",
"variable" : {
"variableName" : "enabled",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "Whether the transition between stages is enabled (true) or disabled (false).
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "enabled",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "enabled",
"marshallLocationName" : "enabled",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Whether the transition between stages is enabled (true) or disabled (false).
\n@param enabled Whether the transition between stages is enabled (true) or disabled (false).*/",
"getterDocumentation" : "/**Whether the transition between stages is enabled (true) or disabled (false).
\n@return Whether the transition between stages is enabled (true) or disabled (false).*/",
"fluentSetterDocumentation" : "/**Whether the transition between stages is enabled (true) or disabled (false).
\n@param enabled Whether the transition between stages is enabled (true) or disabled (false).\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Whether the transition between stages is enabled (true) or disabled (false).
\n@param enabled Whether the transition between stages is enabled (true) or disabled (false).\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The ID of the user who last changed the transition state.
",
"name" : "LastChangedBy",
"c2jName" : "lastChangedBy",
"c2jShape" : "LastChangedBy",
"variable" : {
"variableName" : "lastChangedBy",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ID of the user who last changed the transition state.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastChangedBy",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "lastChangedBy",
"marshallLocationName" : "lastChangedBy",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the user who last changed the transition state.
\n@param lastChangedBy The ID of the user who last changed the transition state.*/",
"getterDocumentation" : "/**The ID of the user who last changed the transition state.
\n@return The ID of the user who last changed the transition state.*/",
"fluentSetterDocumentation" : "/**The ID of the user who last changed the transition state.
\n@param lastChangedBy The ID of the user who last changed the transition state.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the user who last changed the transition state.
\n@param lastChangedBy The ID of the user who last changed the transition state.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The timestamp when the transition state was last changed.
",
"name" : "LastChangedAt",
"c2jName" : "lastChangedAt",
"c2jShape" : "LastChangedAt",
"variable" : {
"variableName" : "lastChangedAt",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The timestamp when the transition state was last changed.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "lastChangedAt",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "lastChangedAt",
"marshallLocationName" : "lastChangedAt",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The timestamp when the transition state was last changed.
\n@param lastChangedAt The timestamp when the transition state was last changed.*/",
"getterDocumentation" : "/**The timestamp when the transition state was last changed.
\n@return The timestamp when the transition state was last changed.*/",
"fluentSetterDocumentation" : "/**The timestamp when the transition state was last changed.
\n@param lastChangedAt The timestamp when the transition state was last changed.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The timestamp when the transition state was last changed.
\n@param lastChangedAt The timestamp when the transition state was last changed.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The user-specified reason why the transition between two stages of a pipeline was disabled.
",
"name" : "DisabledReason",
"c2jName" : "disabledReason",
"c2jShape" : "DisabledReason",
"variable" : {
"variableName" : "disabledReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The user-specified reason why the transition between two stages of a pipeline was disabled.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "disabledReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "disabledReason",
"marshallLocationName" : "disabledReason",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The user-specified reason why the transition between two stages of a pipeline was disabled.
\n@param disabledReason The user-specified reason why the transition between two stages of a pipeline was disabled.*/",
"getterDocumentation" : "/**The user-specified reason why the transition between two stages of a pipeline was disabled.
\n@return The user-specified reason why the transition between two stages of a pipeline was disabled.*/",
"fluentSetterDocumentation" : "/**The user-specified reason why the transition between two stages of a pipeline was disabled.
\n@param disabledReason The user-specified reason why the transition between two stages of a pipeline was disabled.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The user-specified reason why the transition between two stages of a pipeline was disabled.
\n@param disabledReason The user-specified reason why the transition between two stages of a pipeline was disabled.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "transitionState",
"variableType" : "TransitionState",
"variableDeclarationType" : "TransitionState",
"documentation" : null,
"simpleType" : "TransitionState",
"variableSetterType" : "TransitionState"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"DisabledReason" : {
"documentation" : "The user-specified reason why the transition between two stages of a pipeline was disabled.
",
"name" : "DisabledReason",
"c2jName" : "disabledReason",
"c2jShape" : "DisabledReason",
"variable" : {
"variableName" : "disabledReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The user-specified reason why the transition between two stages of a pipeline was disabled.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "disabledReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "disabledReason",
"marshallLocationName" : "disabledReason",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The user-specified reason why the transition between two stages of a pipeline was disabled.
\n@param disabledReason The user-specified reason why the transition between two stages of a pipeline was disabled.*/",
"getterDocumentation" : "/**The user-specified reason why the transition between two stages of a pipeline was disabled.
\n@return The user-specified reason why the transition between two stages of a pipeline was disabled.*/",
"fluentSetterDocumentation" : "/**The user-specified reason why the transition between two stages of a pipeline was disabled.
\n@param disabledReason The user-specified reason why the transition between two stages of a pipeline was disabled.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The user-specified reason why the transition between two stages of a pipeline was disabled.
\n@param disabledReason The user-specified reason why the transition between two stages of a pipeline was disabled.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Enabled" : {
"documentation" : "Whether the transition between stages is enabled (true) or disabled (false).
",
"name" : "Enabled",
"c2jName" : "enabled",
"c2jShape" : "Enabled",
"variable" : {
"variableName" : "enabled",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "Whether the transition between stages is enabled (true) or disabled (false).
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "enabled",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "enabled",
"marshallLocationName" : "enabled",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Whether the transition between stages is enabled (true) or disabled (false).
\n@param enabled Whether the transition between stages is enabled (true) or disabled (false).*/",
"getterDocumentation" : "/**Whether the transition between stages is enabled (true) or disabled (false).
\n@return Whether the transition between stages is enabled (true) or disabled (false).*/",
"fluentSetterDocumentation" : "/**Whether the transition between stages is enabled (true) or disabled (false).
\n@param enabled Whether the transition between stages is enabled (true) or disabled (false).\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Whether the transition between stages is enabled (true) or disabled (false).
\n@param enabled Whether the transition between stages is enabled (true) or disabled (false).\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LastChangedAt" : {
"documentation" : "The timestamp when the transition state was last changed.
",
"name" : "LastChangedAt",
"c2jName" : "lastChangedAt",
"c2jShape" : "LastChangedAt",
"variable" : {
"variableName" : "lastChangedAt",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The timestamp when the transition state was last changed.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "lastChangedAt",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "lastChangedAt",
"marshallLocationName" : "lastChangedAt",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The timestamp when the transition state was last changed.
\n@param lastChangedAt The timestamp when the transition state was last changed.*/",
"getterDocumentation" : "/**The timestamp when the transition state was last changed.
\n@return The timestamp when the transition state was last changed.*/",
"fluentSetterDocumentation" : "/**The timestamp when the transition state was last changed.
\n@param lastChangedAt The timestamp when the transition state was last changed.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The timestamp when the transition state was last changed.
\n@param lastChangedAt The timestamp when the transition state was last changed.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LastChangedBy" : {
"documentation" : "The ID of the user who last changed the transition state.
",
"name" : "LastChangedBy",
"c2jName" : "lastChangedBy",
"c2jShape" : "LastChangedBy",
"variable" : {
"variableName" : "lastChangedBy",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ID of the user who last changed the transition state.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastChangedBy",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "lastChangedBy",
"marshallLocationName" : "lastChangedBy",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the user who last changed the transition state.
\n@param lastChangedBy The ID of the user who last changed the transition state.*/",
"getterDocumentation" : "/**The ID of the user who last changed the transition state.
\n@return The ID of the user who last changed the transition state.*/",
"fluentSetterDocumentation" : "/**The ID of the user who last changed the transition state.
\n@param lastChangedBy The ID of the user who last changed the transition state.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the user who last changed the transition state.
\n@param lastChangedBy The ID of the user who last changed the transition state.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"GetPipelineResult" : {
"c2jName" : "GetPipelineOutput",
"documentation" : "Represents the output of a get pipeline action.
",
"shapeName" : "GetPipelineResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Pipeline",
"c2jName" : "pipeline",
"c2jShape" : "PipelineDeclaration",
"variable" : {
"variableName" : "pipeline",
"variableType" : "PipelineDeclaration",
"variableDeclarationType" : "PipelineDeclaration",
"documentation" : "",
"simpleType" : "PipelineDeclaration",
"variableSetterType" : "PipelineDeclaration"
},
"setterModel" : {
"variableName" : "pipeline",
"variableType" : "PipelineDeclaration",
"variableDeclarationType" : "PipelineDeclaration",
"documentation" : "",
"simpleType" : "PipelineDeclaration",
"variableSetterType" : "PipelineDeclaration"
},
"getterModel" : {
"returnType" : "PipelineDeclaration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipeline",
"marshallLocationName" : "pipeline",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param pipeline */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param pipeline \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param pipeline \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getPipelineResult",
"variableType" : "GetPipelineResult",
"variableDeclarationType" : "GetPipelineResult",
"documentation" : null,
"simpleType" : "GetPipelineResult",
"variableSetterType" : "GetPipelineResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Pipeline" : {
"documentation" : "",
"name" : "Pipeline",
"c2jName" : "pipeline",
"c2jShape" : "PipelineDeclaration",
"variable" : {
"variableName" : "pipeline",
"variableType" : "PipelineDeclaration",
"variableDeclarationType" : "PipelineDeclaration",
"documentation" : "",
"simpleType" : "PipelineDeclaration",
"variableSetterType" : "PipelineDeclaration"
},
"setterModel" : {
"variableName" : "pipeline",
"variableType" : "PipelineDeclaration",
"variableDeclarationType" : "PipelineDeclaration",
"documentation" : "",
"simpleType" : "PipelineDeclaration",
"variableSetterType" : "PipelineDeclaration"
},
"getterModel" : {
"returnType" : "PipelineDeclaration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipeline",
"marshallLocationName" : "pipeline",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param pipeline */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param pipeline \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param pipeline \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListActionTypesRequest" : {
"c2jName" : "ListActionTypesInput",
"documentation" : "Represents the input of a list action types action.
",
"shapeName" : "ListActionTypesRequest",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Filters the list of action types to those created by a specified entity.
",
"name" : "ActionOwnerFilter",
"c2jName" : "actionOwnerFilter",
"c2jShape" : "ActionOwner",
"variable" : {
"variableName" : "actionOwnerFilter",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Filters the list of action types to those created by a specified entity.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "actionOwnerFilter",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "actionOwnerFilter",
"marshallLocationName" : "actionOwnerFilter",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "ActionOwner",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Filters the list of action types to those created by a specified entity.
\n@param actionOwnerFilter Filters the list of action types to those created by a specified entity.\n@see ActionOwner*/",
"getterDocumentation" : "/**Filters the list of action types to those created by a specified entity.
\n@return Filters the list of action types to those created by a specified entity.\n@see ActionOwner*/",
"fluentSetterDocumentation" : "/**Filters the list of action types to those created by a specified entity.
\n@param actionOwnerFilter Filters the list of action types to those created by a specified entity.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ActionOwner*/",
"varargSetterDocumentation" : "/**Filters the list of action types to those created by a specified entity.
\n@param actionOwnerFilter Filters the list of action types to those created by a specified entity.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ActionOwner*/"
}, {
"documentation" : "An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
",
"name" : "NextToken",
"c2jName" : "nextToken",
"c2jShape" : "NextToken",
"variable" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "nextToken",
"marshallLocationName" : "nextToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
\n@param nextToken An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.*/",
"getterDocumentation" : "/**An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
\n@return An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.*/",
"fluentSetterDocumentation" : "/**An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
\n@param nextToken An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
\n@param nextToken An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listActionTypesRequest",
"variableType" : "ListActionTypesRequest",
"variableDeclarationType" : "ListActionTypesRequest",
"documentation" : null,
"simpleType" : "ListActionTypesRequest",
"variableSetterType" : "ListActionTypesRequest"
},
"marshaller" : {
"action" : "ListActionTypes",
"verb" : "POST",
"target" : "CodePipeline_20150709.ListActionTypes",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"NextToken" : {
"documentation" : "An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
",
"name" : "NextToken",
"c2jName" : "nextToken",
"c2jShape" : "NextToken",
"variable" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nextToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "nextToken",
"marshallLocationName" : "nextToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
\n@param nextToken An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.*/",
"getterDocumentation" : "/**An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
\n@return An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.*/",
"fluentSetterDocumentation" : "/**An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
\n@param nextToken An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
\n@param nextToken An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ActionOwnerFilter" : {
"documentation" : "Filters the list of action types to those created by a specified entity.
",
"name" : "ActionOwnerFilter",
"c2jName" : "actionOwnerFilter",
"c2jShape" : "ActionOwner",
"variable" : {
"variableName" : "actionOwnerFilter",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Filters the list of action types to those created by a specified entity.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "actionOwnerFilter",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "actionOwnerFilter",
"marshallLocationName" : "actionOwnerFilter",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "ActionOwner",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Filters the list of action types to those created by a specified entity.
\n@param actionOwnerFilter Filters the list of action types to those created by a specified entity.\n@see ActionOwner*/",
"getterDocumentation" : "/**Filters the list of action types to those created by a specified entity.
\n@return Filters the list of action types to those created by a specified entity.\n@see ActionOwner*/",
"fluentSetterDocumentation" : "/**Filters the list of action types to those created by a specified entity.
\n@param actionOwnerFilter Filters the list of action types to those created by a specified entity.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ActionOwner*/",
"varargSetterDocumentation" : "/**Filters the list of action types to those created by a specified entity.
\n@param actionOwnerFilter Filters the list of action types to those created by a specified entity.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ActionOwner*/"
}
}
},
"PutJobFailureResultResult" : {
"c2jName" : "PutJobFailureResultResult",
"documentation" : null,
"shapeName" : "PutJobFailureResultResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "putJobFailureResultResult",
"variableType" : "PutJobFailureResultResult",
"variableDeclarationType" : "PutJobFailureResultResult",
"documentation" : null,
"simpleType" : "PutJobFailureResultResult",
"variableSetterType" : "PutJobFailureResultResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"ActionContext" : {
"c2jName" : "ActionContext",
"documentation" : "Represents the context of an action within the stage of a pipeline to a job worker.
",
"shapeName" : "ActionContext",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the action within the context of a job.
",
"name" : "Name",
"c2jName" : "name",
"c2jShape" : "ActionName",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the action within the context of a job.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "name",
"marshallLocationName" : "name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the action within the context of a job.
\n@param name The name of the action within the context of a job.*/",
"getterDocumentation" : "/**The name of the action within the context of a job.
\n@return The name of the action within the context of a job.*/",
"fluentSetterDocumentation" : "/**The name of the action within the context of a job.
\n@param name The name of the action within the context of a job.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the action within the context of a job.
\n@param name The name of the action within the context of a job.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "actionContext",
"variableType" : "ActionContext",
"variableDeclarationType" : "ActionContext",
"documentation" : null,
"simpleType" : "ActionContext",
"variableSetterType" : "ActionContext"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Name" : {
"documentation" : "The name of the action within the context of a job.
",
"name" : "Name",
"c2jName" : "name",
"c2jShape" : "ActionName",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the action within the context of a job.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "name",
"marshallLocationName" : "name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the action within the context of a job.
\n@param name The name of the action within the context of a job.*/",
"getterDocumentation" : "/**The name of the action within the context of a job.
\n@return The name of the action within the context of a job.*/",
"fluentSetterDocumentation" : "/**The name of the action within the context of a job.
\n@param name The name of the action within the context of a job.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the action within the context of a job.
\n@param name The name of the action within the context of a job.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"Artifact" : {
"c2jName" : "Artifact",
"documentation" : "Represents information about an artifact that will be worked upon by actions in the pipeline.
",
"shapeName" : "Artifact",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The artifact's name.
",
"name" : "Name",
"c2jName" : "name",
"c2jShape" : "ArtifactName",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The artifact's name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "name",
"marshallLocationName" : "name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The artifact's name.
\n@param name The artifact's name.*/",
"getterDocumentation" : "/**The artifact's name.
\n@return The artifact's name.*/",
"fluentSetterDocumentation" : "/**The artifact's name.
\n@param name The artifact's name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The artifact's name.
\n@param name The artifact's name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).
",
"name" : "Revision",
"c2jName" : "revision",
"c2jShape" : "Revision",
"variable" : {
"variableName" : "revision",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "revision",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "revision",
"marshallLocationName" : "revision",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).
\n@param revision The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).*/",
"getterDocumentation" : "/**The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).
\n@return The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).*/",
"fluentSetterDocumentation" : "/**The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).
\n@param revision The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).
\n@param revision The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The location of an artifact.
",
"name" : "Location",
"c2jName" : "location",
"c2jShape" : "ArtifactLocation",
"variable" : {
"variableName" : "location",
"variableType" : "ArtifactLocation",
"variableDeclarationType" : "ArtifactLocation",
"documentation" : "The location of an artifact.
",
"simpleType" : "ArtifactLocation",
"variableSetterType" : "ArtifactLocation"
},
"setterModel" : {
"variableName" : "location",
"variableType" : "ArtifactLocation",
"variableDeclarationType" : "ArtifactLocation",
"documentation" : "",
"simpleType" : "ArtifactLocation",
"variableSetterType" : "ArtifactLocation"
},
"getterModel" : {
"returnType" : "ArtifactLocation",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "location",
"marshallLocationName" : "location",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The location of an artifact.
\n@param location The location of an artifact.*/",
"getterDocumentation" : "/**The location of an artifact.
\n@return The location of an artifact.*/",
"fluentSetterDocumentation" : "/**The location of an artifact.
\n@param location The location of an artifact.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The location of an artifact.
\n@param location The location of an artifact.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "artifact",
"variableType" : "Artifact",
"variableDeclarationType" : "Artifact",
"documentation" : null,
"simpleType" : "Artifact",
"variableSetterType" : "Artifact"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Revision" : {
"documentation" : "The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).
",
"name" : "Revision",
"c2jName" : "revision",
"c2jShape" : "Revision",
"variable" : {
"variableName" : "revision",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "revision",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "revision",
"marshallLocationName" : "revision",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).
\n@param revision The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).*/",
"getterDocumentation" : "/**The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).
\n@return The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).*/",
"fluentSetterDocumentation" : "/**The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).
\n@param revision The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).
\n@param revision The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Name" : {
"documentation" : "The artifact's name.
",
"name" : "Name",
"c2jName" : "name",
"c2jShape" : "ArtifactName",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The artifact's name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "name",
"marshallLocationName" : "name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The artifact's name.
\n@param name The artifact's name.*/",
"getterDocumentation" : "/**The artifact's name.
\n@return The artifact's name.*/",
"fluentSetterDocumentation" : "/**The artifact's name.
\n@param name The artifact's name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The artifact's name.
\n@param name The artifact's name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Location" : {
"documentation" : "The location of an artifact.
",
"name" : "Location",
"c2jName" : "location",
"c2jShape" : "ArtifactLocation",
"variable" : {
"variableName" : "location",
"variableType" : "ArtifactLocation",
"variableDeclarationType" : "ArtifactLocation",
"documentation" : "The location of an artifact.
",
"simpleType" : "ArtifactLocation",
"variableSetterType" : "ArtifactLocation"
},
"setterModel" : {
"variableName" : "location",
"variableType" : "ArtifactLocation",
"variableDeclarationType" : "ArtifactLocation",
"documentation" : "",
"simpleType" : "ArtifactLocation",
"variableSetterType" : "ArtifactLocation"
},
"getterModel" : {
"returnType" : "ArtifactLocation",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "location",
"marshallLocationName" : "location",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The location of an artifact.
\n@param location The location of an artifact.*/",
"getterDocumentation" : "/**The location of an artifact.
\n@return The location of an artifact.*/",
"fluentSetterDocumentation" : "/**The location of an artifact.
\n@param location The location of an artifact.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The location of an artifact.
\n@param location The location of an artifact.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"PollForThirdPartyJobsResult" : {
"c2jName" : "PollForThirdPartyJobsOutput",
"documentation" : "Represents the output of a poll for third party jobs action.
",
"shapeName" : "PollForThirdPartyJobsResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Information about the jobs to take action on.
",
"name" : "Jobs",
"c2jName" : "jobs",
"c2jShape" : "ThirdPartyJobList",
"variable" : {
"variableName" : "jobs",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "Information about the jobs to take action on.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "jobs",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "jobs",
"marshallLocationName" : "jobs",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "ThirdPartyJob",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "ThirdPartyJob",
"variable" : {
"variableName" : "member",
"variableType" : "ThirdPartyJob",
"variableDeclarationType" : "ThirdPartyJob",
"documentation" : "",
"simpleType" : "ThirdPartyJob",
"variableSetterType" : "ThirdPartyJob"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "ThirdPartyJob",
"variableDeclarationType" : "ThirdPartyJob",
"documentation" : "",
"simpleType" : "ThirdPartyJob",
"variableSetterType" : "ThirdPartyJob"
},
"getterModel" : {
"returnType" : "ThirdPartyJob",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"marshallNonAutoConstructedEmptyLists" : false,
"simple" : false,
"simpleType" : "ThirdPartyJob",
"map" : false,
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**Information about the jobs to take action on.
\n@param jobs Information about the jobs to take action on.*/",
"getterDocumentation" : "/**Information about the jobs to take action on.
\n@return Information about the jobs to take action on.*/",
"fluentSetterDocumentation" : "/**Information about the jobs to take action on.
\n@param jobs Information about the jobs to take action on.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Information about the jobs to take action on.
\nNOTE: 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 Information about the jobs to take action on.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "pollForThirdPartyJobsResult",
"variableType" : "PollForThirdPartyJobsResult",
"variableDeclarationType" : "PollForThirdPartyJobsResult",
"documentation" : null,
"simpleType" : "PollForThirdPartyJobsResult",
"variableSetterType" : "PollForThirdPartyJobsResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Jobs" : {
"documentation" : "Information about the jobs to take action on.
",
"name" : "Jobs",
"c2jName" : "jobs",
"c2jShape" : "ThirdPartyJobList",
"variable" : {
"variableName" : "jobs",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "Information about the jobs to take action on.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "jobs",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "jobs",
"marshallLocationName" : "jobs",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "ThirdPartyJob",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "ThirdPartyJob",
"variable" : {
"variableName" : "member",
"variableType" : "ThirdPartyJob",
"variableDeclarationType" : "ThirdPartyJob",
"documentation" : "",
"simpleType" : "ThirdPartyJob",
"variableSetterType" : "ThirdPartyJob"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "ThirdPartyJob",
"variableDeclarationType" : "ThirdPartyJob",
"documentation" : "",
"simpleType" : "ThirdPartyJob",
"variableSetterType" : "ThirdPartyJob"
},
"getterModel" : {
"returnType" : "ThirdPartyJob",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"marshallNonAutoConstructedEmptyLists" : false,
"simple" : false,
"simpleType" : "ThirdPartyJob",
"map" : false,
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**Information about the jobs to take action on.
\n@param jobs Information about the jobs to take action on.*/",
"getterDocumentation" : "/**Information about the jobs to take action on.
\n@return Information about the jobs to take action on.*/",
"fluentSetterDocumentation" : "/**Information about the jobs to take action on.
\n@param jobs Information about the jobs to take action on.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Information about the jobs to take action on.
\nNOTE: 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 Information about the jobs to take action on.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InputArtifact" : {
"c2jName" : "InputArtifact",
"documentation" : "Represents information about an artifact to be worked on, such as a test or build artifact.
",
"shapeName" : "InputArtifact",
"deprecated" : false,
"required" : [ "name" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the artifact to be worked on, for example, \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
",
"name" : "Name",
"c2jName" : "name",
"c2jShape" : "ArtifactName",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the artifact to be worked on, for example, \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "name",
"marshallLocationName" : "name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the artifact to be worked on, for example, \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
\n@param name The name of the artifact to be worked on, for example, \"My App\". The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.*/",
"getterDocumentation" : "/**
The name of the artifact to be worked on, for example, \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
\n@return The name of the artifact to be worked on, for example, \"My App\". The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.*/",
"fluentSetterDocumentation" : "/**
The name of the artifact to be worked on, for example, \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
\n@param name The name of the artifact to be worked on, for example, \"My App\". The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
The name of the artifact to be worked on, for example, \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
\n@param name The name of the artifact to be worked on, for example, \"My App\". The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "inputArtifact",
"variableType" : "InputArtifact",
"variableDeclarationType" : "InputArtifact",
"documentation" : null,
"simpleType" : "InputArtifact",
"variableSetterType" : "InputArtifact"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Name" : {
"documentation" : "
The name of the artifact to be worked on, for example, \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
",
"name" : "Name",
"c2jName" : "name",
"c2jShape" : "ArtifactName",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the artifact to be worked on, for example, \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "name",
"marshallLocationName" : "name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the artifact to be worked on, for example, \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
\n@param name The name of the artifact to be worked on, for example, \"My App\". The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.*/",
"getterDocumentation" : "/**
The name of the artifact to be worked on, for example, \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
\n@return The name of the artifact to be worked on, for example, \"My App\". The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.*/",
"fluentSetterDocumentation" : "/**
The name of the artifact to be worked on, for example, \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
\n@param name The name of the artifact to be worked on, for example, \"My App\". The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
The name of the artifact to be worked on, for example, \"My App\".
The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
\n@param name The name of the artifact to be worked on, for example, \"My App\". The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ArtifactStore" : {
"c2jName" : "ArtifactStore",
"documentation" : "
The Amazon S3 location where artifacts are stored for the pipeline. If this Amazon S3 bucket is created manually, it must meet the requirements for AWS CodePipeline. For more information, see the Concepts.
",
"shapeName" : "ArtifactStore",
"deprecated" : false,
"required" : [ "type", "location" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The type of the artifact store, such as S3.
",
"name" : "Type",
"c2jName" : "type",
"c2jShape" : "ArtifactStoreType",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The type of the artifact store, such as S3.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "type",
"marshallLocationName" : "type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "ArtifactStoreType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The type of the artifact store, such as S3.
\n@param type The type of the artifact store, such as S3.\n@see ArtifactStoreType*/",
"getterDocumentation" : "/**The type of the artifact store, such as S3.
\n@return The type of the artifact store, such as S3.\n@see ArtifactStoreType*/",
"fluentSetterDocumentation" : "/**The type of the artifact store, such as S3.
\n@param type The type of the artifact store, such as S3.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ArtifactStoreType*/",
"varargSetterDocumentation" : "/**The type of the artifact store, such as S3.
\n@param type The type of the artifact store, such as S3.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ArtifactStoreType*/"
}, {
"documentation" : "The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.
",
"name" : "Location",
"c2jName" : "location",
"c2jShape" : "ArtifactStoreLocation",
"variable" : {
"variableName" : "location",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "location",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "location",
"marshallLocationName" : "location",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.
\n@param location The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.*/",
"getterDocumentation" : "/**The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.
\n@return The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.*/",
"fluentSetterDocumentation" : "/**The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.
\n@param location The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.
\n@param location The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.
",
"name" : "EncryptionKey",
"c2jName" : "encryptionKey",
"c2jShape" : "EncryptionKey",
"variable" : {
"variableName" : "encryptionKey",
"variableType" : "EncryptionKey",
"variableDeclarationType" : "EncryptionKey",
"documentation" : "The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.
",
"simpleType" : "EncryptionKey",
"variableSetterType" : "EncryptionKey"
},
"setterModel" : {
"variableName" : "encryptionKey",
"variableType" : "EncryptionKey",
"variableDeclarationType" : "EncryptionKey",
"documentation" : "",
"simpleType" : "EncryptionKey",
"variableSetterType" : "EncryptionKey"
},
"getterModel" : {
"returnType" : "EncryptionKey",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "encryptionKey",
"marshallLocationName" : "encryptionKey",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.
\n@param encryptionKey The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.*/",
"getterDocumentation" : "/**The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.
\n@return The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.*/",
"fluentSetterDocumentation" : "/**The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.
\n@param encryptionKey The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.
\n@param encryptionKey The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "artifactStore",
"variableType" : "ArtifactStore",
"variableDeclarationType" : "ArtifactStore",
"documentation" : null,
"simpleType" : "ArtifactStore",
"variableSetterType" : "ArtifactStore"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Type" : {
"documentation" : "The type of the artifact store, such as S3.
",
"name" : "Type",
"c2jName" : "type",
"c2jShape" : "ArtifactStoreType",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The type of the artifact store, such as S3.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "type",
"marshallLocationName" : "type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "ArtifactStoreType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The type of the artifact store, such as S3.
\n@param type The type of the artifact store, such as S3.\n@see ArtifactStoreType*/",
"getterDocumentation" : "/**The type of the artifact store, such as S3.
\n@return The type of the artifact store, such as S3.\n@see ArtifactStoreType*/",
"fluentSetterDocumentation" : "/**The type of the artifact store, such as S3.
\n@param type The type of the artifact store, such as S3.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ArtifactStoreType*/",
"varargSetterDocumentation" : "/**The type of the artifact store, such as S3.
\n@param type The type of the artifact store, such as S3.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ArtifactStoreType*/"
},
"EncryptionKey" : {
"documentation" : "The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.
",
"name" : "EncryptionKey",
"c2jName" : "encryptionKey",
"c2jShape" : "EncryptionKey",
"variable" : {
"variableName" : "encryptionKey",
"variableType" : "EncryptionKey",
"variableDeclarationType" : "EncryptionKey",
"documentation" : "The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.
",
"simpleType" : "EncryptionKey",
"variableSetterType" : "EncryptionKey"
},
"setterModel" : {
"variableName" : "encryptionKey",
"variableType" : "EncryptionKey",
"variableDeclarationType" : "EncryptionKey",
"documentation" : "",
"simpleType" : "EncryptionKey",
"variableSetterType" : "EncryptionKey"
},
"getterModel" : {
"returnType" : "EncryptionKey",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "encryptionKey",
"marshallLocationName" : "encryptionKey",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.
\n@param encryptionKey The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.*/",
"getterDocumentation" : "/**The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.
\n@return The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.*/",
"fluentSetterDocumentation" : "/**The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.
\n@param encryptionKey The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.
\n@param encryptionKey The encryption key used to encrypt the data in the artifact store, such as an AWS Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon S3 is used.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Location" : {
"documentation" : "The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.
",
"name" : "Location",
"c2jName" : "location",
"c2jShape" : "ArtifactStoreLocation",
"variable" : {
"variableName" : "location",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "location",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "location",
"marshallLocationName" : "location",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.
\n@param location The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.*/",
"getterDocumentation" : "/**The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.
\n@return The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.*/",
"fluentSetterDocumentation" : "/**The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.
\n@param location The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.
\n@param location The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvalidNextTokenException" : {
"c2jName" : "InvalidNextTokenException",
"documentation" : "The next token was specified in an invalid format. Make sure that the next token you provided is the token returned by a previous call.
",
"shapeName" : "InvalidNextTokenException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "invalidNextTokenException",
"variableType" : "InvalidNextTokenException",
"variableDeclarationType" : "InvalidNextTokenException",
"documentation" : null,
"simpleType" : "InvalidNextTokenException",
"variableSetterType" : "InvalidNextTokenException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidNextTokenException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"AcknowledgeThirdPartyJobRequest" : {
"c2jName" : "AcknowledgeThirdPartyJobInput",
"documentation" : "Represents the input of an acknowledge third party job action.
",
"shapeName" : "AcknowledgeThirdPartyJobRequest",
"deprecated" : false,
"required" : [ "jobId", "nonce", "clientToken" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The unique system-generated ID of the job.
",
"name" : "JobId",
"c2jName" : "jobId",
"c2jShape" : "ThirdPartyJobId",
"variable" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The unique system-generated ID of the job.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "jobId",
"marshallLocationName" : "jobId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The unique system-generated ID of the job.
\n@param jobId The unique system-generated ID of the job.*/",
"getterDocumentation" : "/**The unique system-generated ID of the job.
\n@return The unique system-generated ID of the job.*/",
"fluentSetterDocumentation" : "/**The unique system-generated ID of the job.
\n@param jobId The unique system-generated ID of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The unique system-generated ID of the job.
\n@param jobId The unique system-generated ID of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
",
"name" : "Nonce",
"c2jName" : "nonce",
"c2jShape" : "Nonce",
"variable" : {
"variableName" : "nonce",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nonce",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "nonce",
"marshallLocationName" : "nonce",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
\n@param nonce A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.*/",
"getterDocumentation" : "/**A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
\n@return A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.*/",
"fluentSetterDocumentation" : "/**A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
\n@param nonce A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
\n@param nonce A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
",
"name" : "ClientToken",
"c2jName" : "clientToken",
"c2jShape" : "ClientToken",
"variable" : {
"variableName" : "clientToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "clientToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "clientToken",
"marshallLocationName" : "clientToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientToken The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.*/",
"getterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@return The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.*/",
"fluentSetterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientToken The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientToken The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "acknowledgeThirdPartyJobRequest",
"variableType" : "AcknowledgeThirdPartyJobRequest",
"variableDeclarationType" : "AcknowledgeThirdPartyJobRequest",
"documentation" : null,
"simpleType" : "AcknowledgeThirdPartyJobRequest",
"variableSetterType" : "AcknowledgeThirdPartyJobRequest"
},
"marshaller" : {
"action" : "AcknowledgeThirdPartyJob",
"verb" : "POST",
"target" : "CodePipeline_20150709.AcknowledgeThirdPartyJob",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Nonce" : {
"documentation" : "A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
",
"name" : "Nonce",
"c2jName" : "nonce",
"c2jShape" : "Nonce",
"variable" : {
"variableName" : "nonce",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nonce",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "nonce",
"marshallLocationName" : "nonce",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
\n@param nonce A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.*/",
"getterDocumentation" : "/**A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
\n@return A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.*/",
"fluentSetterDocumentation" : "/**A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
\n@param nonce A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
\n@param nonce A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ClientToken" : {
"documentation" : "The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
",
"name" : "ClientToken",
"c2jName" : "clientToken",
"c2jShape" : "ClientToken",
"variable" : {
"variableName" : "clientToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "clientToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "clientToken",
"marshallLocationName" : "clientToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientToken The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.*/",
"getterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@return The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.*/",
"fluentSetterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientToken The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientToken The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"JobId" : {
"documentation" : "The unique system-generated ID of the job.
",
"name" : "JobId",
"c2jName" : "jobId",
"c2jShape" : "ThirdPartyJobId",
"variable" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The unique system-generated ID of the job.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "jobId",
"marshallLocationName" : "jobId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The unique system-generated ID of the job.
\n@param jobId The unique system-generated ID of the job.*/",
"getterDocumentation" : "/**The unique system-generated ID of the job.
\n@return The unique system-generated ID of the job.*/",
"fluentSetterDocumentation" : "/**The unique system-generated ID of the job.
\n@param jobId The unique system-generated ID of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The unique system-generated ID of the job.
\n@param jobId The unique system-generated ID of the job.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"PipelineExecutionStatus" : {
"c2jName" : "PipelineExecutionStatus",
"documentation" : "",
"shapeName" : "PipelineExecutionStatus",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "InProgress",
"value" : "InProgress"
}, {
"name" : "Succeeded",
"value" : "Succeeded"
}, {
"name" : "Superseded",
"value" : "Superseded"
}, {
"name" : "Failed",
"value" : "Failed"
} ],
"variable" : {
"variableName" : "pipelineExecutionStatus",
"variableType" : "PipelineExecutionStatus",
"variableDeclarationType" : "PipelineExecutionStatus",
"documentation" : null,
"simpleType" : "PipelineExecutionStatus",
"variableSetterType" : "PipelineExecutionStatus"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"AWSSessionCredentials" : {
"c2jName" : "AWSSessionCredentials",
"documentation" : "Represents an AWS session credentials object. These credentials are temporary credentials that are issued by AWS Secure Token Service (STS). They can be used to access input and output artifacts in the Amazon S3 bucket used to store artifact for the pipeline in AWS CodePipeline.
",
"shapeName" : "AWSSessionCredentials",
"deprecated" : false,
"required" : [ "accessKeyId", "secretAccessKey", "sessionToken" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The access key for the session.
",
"name" : "AccessKeyId",
"c2jName" : "accessKeyId",
"c2jShape" : "AccessKeyId",
"variable" : {
"variableName" : "accessKeyId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The access key for the session.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "accessKeyId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "accessKeyId",
"marshallLocationName" : "accessKeyId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The access key for the session.
\n@param accessKeyId The access key for the session.*/",
"getterDocumentation" : "/**The access key for the session.
\n@return The access key for the session.*/",
"fluentSetterDocumentation" : "/**The access key for the session.
\n@param accessKeyId The access key for the session.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The access key for the session.
\n@param accessKeyId The access key for the session.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The secret access key for the session.
",
"name" : "SecretAccessKey",
"c2jName" : "secretAccessKey",
"c2jShape" : "SecretAccessKey",
"variable" : {
"variableName" : "secretAccessKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The secret access key for the session.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "secretAccessKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "secretAccessKey",
"marshallLocationName" : "secretAccessKey",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The secret access key for the session.
\n@param secretAccessKey The secret access key for the session.*/",
"getterDocumentation" : "/**The secret access key for the session.
\n@return The secret access key for the session.*/",
"fluentSetterDocumentation" : "/**The secret access key for the session.
\n@param secretAccessKey The secret access key for the session.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The secret access key for the session.
\n@param secretAccessKey The secret access key for the session.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The token for the session.
",
"name" : "SessionToken",
"c2jName" : "sessionToken",
"c2jShape" : "SessionToken",
"variable" : {
"variableName" : "sessionToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The token for the session.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "sessionToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "sessionToken",
"marshallLocationName" : "sessionToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The token for the session.
\n@param sessionToken The token for the session.*/",
"getterDocumentation" : "/**The token for the session.
\n@return The token for the session.*/",
"fluentSetterDocumentation" : "/**The token for the session.
\n@param sessionToken The token for the session.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The token for the session.
\n@param sessionToken The token for the session.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "aWSSessionCredentials",
"variableType" : "AWSSessionCredentials",
"variableDeclarationType" : "AWSSessionCredentials",
"documentation" : null,
"simpleType" : "AWSSessionCredentials",
"variableSetterType" : "AWSSessionCredentials"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"SessionToken" : {
"documentation" : "The token for the session.
",
"name" : "SessionToken",
"c2jName" : "sessionToken",
"c2jShape" : "SessionToken",
"variable" : {
"variableName" : "sessionToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The token for the session.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "sessionToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "sessionToken",
"marshallLocationName" : "sessionToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The token for the session.
\n@param sessionToken The token for the session.*/",
"getterDocumentation" : "/**The token for the session.
\n@return The token for the session.*/",
"fluentSetterDocumentation" : "/**The token for the session.
\n@param sessionToken The token for the session.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The token for the session.
\n@param sessionToken The token for the session.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"AccessKeyId" : {
"documentation" : "The access key for the session.
",
"name" : "AccessKeyId",
"c2jName" : "accessKeyId",
"c2jShape" : "AccessKeyId",
"variable" : {
"variableName" : "accessKeyId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The access key for the session.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "accessKeyId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "accessKeyId",
"marshallLocationName" : "accessKeyId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The access key for the session.
\n@param accessKeyId The access key for the session.*/",
"getterDocumentation" : "/**The access key for the session.
\n@return The access key for the session.*/",
"fluentSetterDocumentation" : "/**The access key for the session.
\n@param accessKeyId The access key for the session.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The access key for the session.
\n@param accessKeyId The access key for the session.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"SecretAccessKey" : {
"documentation" : "The secret access key for the session.
",
"name" : "SecretAccessKey",
"c2jName" : "secretAccessKey",
"c2jShape" : "SecretAccessKey",
"variable" : {
"variableName" : "secretAccessKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The secret access key for the session.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "secretAccessKey",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "secretAccessKey",
"marshallLocationName" : "secretAccessKey",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The secret access key for the session.
\n@param secretAccessKey The secret access key for the session.*/",
"getterDocumentation" : "/**The secret access key for the session.
\n@return The secret access key for the session.*/",
"fluentSetterDocumentation" : "/**The secret access key for the session.
\n@param secretAccessKey The secret access key for the session.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The secret access key for the session.
\n@param secretAccessKey The secret access key for the session.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ThirdPartyJobDetails" : {
"c2jName" : "ThirdPartyJobDetails",
"documentation" : "The details of a job sent in response to a GetThirdPartyJobDetails request.
",
"shapeName" : "ThirdPartyJobDetails",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The identifier used to identify the job details in AWS CodePipeline.
",
"name" : "Id",
"c2jName" : "id",
"c2jShape" : "ThirdPartyJobId",
"variable" : {
"variableName" : "id",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The identifier used to identify the job details in AWS CodePipeline.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "id",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "id",
"marshallLocationName" : "id",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The identifier used to identify the job details in AWS CodePipeline.
\n@param id The identifier used to identify the job details in AWS CodePipeline.*/",
"getterDocumentation" : "/**The identifier used to identify the job details in AWS CodePipeline.
\n@return The identifier used to identify the job details in AWS CodePipeline.*/",
"fluentSetterDocumentation" : "/**The identifier used to identify the job details in AWS CodePipeline.
\n@param id The identifier used to identify the job details in AWS CodePipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The identifier used to identify the job details in AWS CodePipeline.
\n@param id The identifier used to identify the job details in AWS CodePipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The data to be returned by the third party job worker.
",
"name" : "Data",
"c2jName" : "data",
"c2jShape" : "ThirdPartyJobData",
"variable" : {
"variableName" : "data",
"variableType" : "ThirdPartyJobData",
"variableDeclarationType" : "ThirdPartyJobData",
"documentation" : "The data to be returned by the third party job worker.
",
"simpleType" : "ThirdPartyJobData",
"variableSetterType" : "ThirdPartyJobData"
},
"setterModel" : {
"variableName" : "data",
"variableType" : "ThirdPartyJobData",
"variableDeclarationType" : "ThirdPartyJobData",
"documentation" : "",
"simpleType" : "ThirdPartyJobData",
"variableSetterType" : "ThirdPartyJobData"
},
"getterModel" : {
"returnType" : "ThirdPartyJobData",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "data",
"marshallLocationName" : "data",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The data to be returned by the third party job worker.
\n@param data The data to be returned by the third party job worker.*/",
"getterDocumentation" : "/**The data to be returned by the third party job worker.
\n@return The data to be returned by the third party job worker.*/",
"fluentSetterDocumentation" : "/**The data to be returned by the third party job worker.
\n@param data The data to be returned by the third party job worker.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The data to be returned by the third party job worker.
\n@param data The data to be returned by the third party job worker.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
",
"name" : "Nonce",
"c2jName" : "nonce",
"c2jShape" : "Nonce",
"variable" : {
"variableName" : "nonce",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nonce",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "nonce",
"marshallLocationName" : "nonce",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
\n@param nonce A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.*/",
"getterDocumentation" : "/**A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
\n@return A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.*/",
"fluentSetterDocumentation" : "/**A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
\n@param nonce A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
\n@param nonce A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "thirdPartyJobDetails",
"variableType" : "ThirdPartyJobDetails",
"variableDeclarationType" : "ThirdPartyJobDetails",
"documentation" : null,
"simpleType" : "ThirdPartyJobDetails",
"variableSetterType" : "ThirdPartyJobDetails"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Nonce" : {
"documentation" : "A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
",
"name" : "Nonce",
"c2jName" : "nonce",
"c2jShape" : "Nonce",
"variable" : {
"variableName" : "nonce",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nonce",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "nonce",
"marshallLocationName" : "nonce",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
\n@param nonce A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.*/",
"getterDocumentation" : "/**A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
\n@return A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.*/",
"fluentSetterDocumentation" : "/**A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
\n@param nonce A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.
\n@param nonce A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Data" : {
"documentation" : "The data to be returned by the third party job worker.
",
"name" : "Data",
"c2jName" : "data",
"c2jShape" : "ThirdPartyJobData",
"variable" : {
"variableName" : "data",
"variableType" : "ThirdPartyJobData",
"variableDeclarationType" : "ThirdPartyJobData",
"documentation" : "The data to be returned by the third party job worker.
",
"simpleType" : "ThirdPartyJobData",
"variableSetterType" : "ThirdPartyJobData"
},
"setterModel" : {
"variableName" : "data",
"variableType" : "ThirdPartyJobData",
"variableDeclarationType" : "ThirdPartyJobData",
"documentation" : "",
"simpleType" : "ThirdPartyJobData",
"variableSetterType" : "ThirdPartyJobData"
},
"getterModel" : {
"returnType" : "ThirdPartyJobData",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "data",
"marshallLocationName" : "data",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The data to be returned by the third party job worker.
\n@param data The data to be returned by the third party job worker.*/",
"getterDocumentation" : "/**The data to be returned by the third party job worker.
\n@return The data to be returned by the third party job worker.*/",
"fluentSetterDocumentation" : "/**The data to be returned by the third party job worker.
\n@param data The data to be returned by the third party job worker.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The data to be returned by the third party job worker.
\n@param data The data to be returned by the third party job worker.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Id" : {
"documentation" : "The identifier used to identify the job details in AWS CodePipeline.
",
"name" : "Id",
"c2jName" : "id",
"c2jShape" : "ThirdPartyJobId",
"variable" : {
"variableName" : "id",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The identifier used to identify the job details in AWS CodePipeline.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "id",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "id",
"marshallLocationName" : "id",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The identifier used to identify the job details in AWS CodePipeline.
\n@param id The identifier used to identify the job details in AWS CodePipeline.*/",
"getterDocumentation" : "/**The identifier used to identify the job details in AWS CodePipeline.
\n@return The identifier used to identify the job details in AWS CodePipeline.*/",
"fluentSetterDocumentation" : "/**The identifier used to identify the job details in AWS CodePipeline.
\n@param id The identifier used to identify the job details in AWS CodePipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The identifier used to identify the job details in AWS CodePipeline.
\n@param id The identifier used to identify the job details in AWS CodePipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvalidJobException" : {
"c2jName" : "InvalidJobException",
"documentation" : "The specified job was specified in an invalid format or cannot be found.
",
"shapeName" : "InvalidJobException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "invalidJobException",
"variableType" : "InvalidJobException",
"variableDeclarationType" : "InvalidJobException",
"documentation" : null,
"simpleType" : "InvalidJobException",
"variableSetterType" : "InvalidJobException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidJobException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"LimitExceededException" : {
"c2jName" : "LimitExceededException",
"documentation" : "The number of pipelines associated with the AWS account has exceeded the limit allowed for the account.
",
"shapeName" : "LimitExceededException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "limitExceededException",
"variableType" : "LimitExceededException",
"variableDeclarationType" : "LimitExceededException",
"documentation" : null,
"simpleType" : "LimitExceededException",
"variableSetterType" : "LimitExceededException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "LimitExceededException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"ThirdPartyJob" : {
"c2jName" : "ThirdPartyJob",
"documentation" : "A response to a PollForThirdPartyJobs request returned by AWS CodePipeline when there is a job to be worked upon by a partner action.
",
"shapeName" : "ThirdPartyJob",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
",
"name" : "ClientId",
"c2jName" : "clientId",
"c2jShape" : "ClientId",
"variable" : {
"variableName" : "clientId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "clientId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "clientId",
"marshallLocationName" : "clientId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientId The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.*/",
"getterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@return The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.*/",
"fluentSetterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientId The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientId The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The identifier used to identify the job in AWS CodePipeline.
",
"name" : "JobId",
"c2jName" : "jobId",
"c2jShape" : "JobId",
"variable" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The identifier used to identify the job in AWS CodePipeline.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "jobId",
"marshallLocationName" : "jobId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The identifier used to identify the job in AWS CodePipeline.
\n@param jobId The identifier used to identify the job in AWS CodePipeline.*/",
"getterDocumentation" : "/**The identifier used to identify the job in AWS CodePipeline.
\n@return The identifier used to identify the job in AWS CodePipeline.*/",
"fluentSetterDocumentation" : "/**The identifier used to identify the job in AWS CodePipeline.
\n@param jobId The identifier used to identify the job in AWS CodePipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The identifier used to identify the job in AWS CodePipeline.
\n@param jobId The identifier used to identify the job in AWS CodePipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "thirdPartyJob",
"variableType" : "ThirdPartyJob",
"variableDeclarationType" : "ThirdPartyJob",
"documentation" : null,
"simpleType" : "ThirdPartyJob",
"variableSetterType" : "ThirdPartyJob"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"ClientId" : {
"documentation" : "The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
",
"name" : "ClientId",
"c2jName" : "clientId",
"c2jShape" : "ClientId",
"variable" : {
"variableName" : "clientId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "clientId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "clientId",
"marshallLocationName" : "clientId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientId The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.*/",
"getterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@return The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.*/",
"fluentSetterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientId The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
\n@param clientId The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"JobId" : {
"documentation" : "The identifier used to identify the job in AWS CodePipeline.
",
"name" : "JobId",
"c2jName" : "jobId",
"c2jShape" : "JobId",
"variable" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The identifier used to identify the job in AWS CodePipeline.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "jobId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "jobId",
"marshallLocationName" : "jobId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The identifier used to identify the job in AWS CodePipeline.
\n@param jobId The identifier used to identify the job in AWS CodePipeline.*/",
"getterDocumentation" : "/**The identifier used to identify the job in AWS CodePipeline.
\n@return The identifier used to identify the job in AWS CodePipeline.*/",
"fluentSetterDocumentation" : "/**The identifier used to identify the job in AWS CodePipeline.
\n@param jobId The identifier used to identify the job in AWS CodePipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The identifier used to identify the job in AWS CodePipeline.
\n@param jobId The identifier used to identify the job in AWS CodePipeline.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"EnableStageTransitionRequest" : {
"c2jName" : "EnableStageTransitionInput",
"documentation" : "Represents the input of an enable stage transition action.
",
"shapeName" : "EnableStageTransitionRequest",
"deprecated" : false,
"required" : [ "pipelineName", "stageName", "transitionType" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
",
"name" : "PipelineName",
"c2jName" : "pipelineName",
"c2jShape" : "PipelineName",
"variable" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineName",
"marshallLocationName" : "pipelineName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
\n@param pipelineName The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.*/",
"getterDocumentation" : "/**The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
\n@return The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.*/",
"fluentSetterDocumentation" : "/**The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
\n@param pipelineName The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
\n@param pipelineName The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).
",
"name" : "StageName",
"c2jName" : "stageName",
"c2jShape" : "StageName",
"variable" : {
"variableName" : "stageName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "stageName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "stageName",
"marshallLocationName" : "stageName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).
\n@param stageName The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).*/",
"getterDocumentation" : "/**The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).
\n@return The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).*/",
"fluentSetterDocumentation" : "/**The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).
\n@param stageName The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).
\n@param stageName The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).
",
"name" : "TransitionType",
"c2jName" : "transitionType",
"c2jShape" : "StageTransitionType",
"variable" : {
"variableName" : "transitionType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "transitionType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "transitionType",
"marshallLocationName" : "transitionType",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "StageTransitionType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).
\n@param transitionType Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).\n@see StageTransitionType*/",
"getterDocumentation" : "/**Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).
\n@return Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).\n@see StageTransitionType*/",
"fluentSetterDocumentation" : "/**Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).
\n@param transitionType Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).\n@return Returns a reference to this object so that method calls can be chained together.\n@see StageTransitionType*/",
"varargSetterDocumentation" : "/**Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).
\n@param transitionType Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).\n@return Returns a reference to this object so that method calls can be chained together.\n@see StageTransitionType*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "enableStageTransitionRequest",
"variableType" : "EnableStageTransitionRequest",
"variableDeclarationType" : "EnableStageTransitionRequest",
"documentation" : null,
"simpleType" : "EnableStageTransitionRequest",
"variableSetterType" : "EnableStageTransitionRequest"
},
"marshaller" : {
"action" : "EnableStageTransition",
"verb" : "POST",
"target" : "CodePipeline_20150709.EnableStageTransition",
"requestUri" : "/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"PipelineName" : {
"documentation" : "The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
",
"name" : "PipelineName",
"c2jName" : "pipelineName",
"c2jShape" : "PipelineName",
"variable" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineName",
"marshallLocationName" : "pipelineName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
\n@param pipelineName The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.*/",
"getterDocumentation" : "/**The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
\n@return The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.*/",
"fluentSetterDocumentation" : "/**The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
\n@param pipelineName The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
\n@param pipelineName The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"StageName" : {
"documentation" : "The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).
",
"name" : "StageName",
"c2jName" : "stageName",
"c2jShape" : "StageName",
"variable" : {
"variableName" : "stageName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "stageName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "stageName",
"marshallLocationName" : "stageName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).
\n@param stageName The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).*/",
"getterDocumentation" : "/**The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).
\n@return The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).*/",
"fluentSetterDocumentation" : "/**The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).
\n@param stageName The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).
\n@param stageName The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"TransitionType" : {
"documentation" : "Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).
",
"name" : "TransitionType",
"c2jName" : "transitionType",
"c2jShape" : "StageTransitionType",
"variable" : {
"variableName" : "transitionType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "transitionType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "transitionType",
"marshallLocationName" : "transitionType",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "StageTransitionType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).
\n@param transitionType Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).\n@see StageTransitionType*/",
"getterDocumentation" : "/**Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).
\n@return Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).\n@see StageTransitionType*/",
"fluentSetterDocumentation" : "/**Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).
\n@param transitionType Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).\n@return Returns a reference to this object so that method calls can be chained together.\n@see StageTransitionType*/",
"varargSetterDocumentation" : "/**Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).
\n@param transitionType Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).\n@return Returns a reference to this object so that method calls can be chained together.\n@see StageTransitionType*/"
}
}
},
"GetPipelineStateResult" : {
"c2jName" : "GetPipelineStateOutput",
"documentation" : "Represents the output of a get pipeline state action.
",
"shapeName" : "GetPipelineStateResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the pipeline for which you want to get the state.
",
"name" : "PipelineName",
"c2jName" : "pipelineName",
"c2jShape" : "PipelineName",
"variable" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the pipeline for which you want to get the state.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineName",
"marshallLocationName" : "pipelineName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the pipeline for which you want to get the state.
\n@param pipelineName The name of the pipeline for which you want to get the state.*/",
"getterDocumentation" : "/**The name of the pipeline for which you want to get the state.
\n@return The name of the pipeline for which you want to get the state.*/",
"fluentSetterDocumentation" : "/**The name of the pipeline for which you want to get the state.
\n@param pipelineName The name of the pipeline for which you want to get the state.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the pipeline for which you want to get the state.
\n@param pipelineName The name of the pipeline for which you want to get the state.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The version number of the pipeline.
A newly-created pipeline is always assigned a version number of 1
.
",
"name" : "PipelineVersion",
"c2jName" : "pipelineVersion",
"c2jShape" : "PipelineVersion",
"variable" : {
"variableName" : "pipelineVersion",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The version number of the pipeline.
A newly-created pipeline is always assigned a version number of 1
.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "pipelineVersion",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineVersion",
"marshallLocationName" : "pipelineVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version number of the pipeline.
A newly-created pipeline is always assigned a version number of 1
.
\n@param pipelineVersion The version number of the pipeline. A newly-created pipeline is always assigned a version number of 1
.
*/",
"getterDocumentation" : "/**The version number of the pipeline.
A newly-created pipeline is always assigned a version number of 1
.
\n@return The version number of the pipeline. A newly-created pipeline is always assigned a version number of 1
.
*/",
"fluentSetterDocumentation" : "/**The version number of the pipeline.
A newly-created pipeline is always assigned a version number of 1
.
\n@param pipelineVersion The version number of the pipeline. A newly-created pipeline is always assigned a version number of 1
.
\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The version number of the pipeline.
A newly-created pipeline is always assigned a version number of 1
.
\n@param pipelineVersion The version number of the pipeline. A newly-created pipeline is always assigned a version number of 1
.
\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
",
"name" : "StageStates",
"c2jName" : "stageStates",
"c2jShape" : "StageStateList",
"variable" : {
"variableName" : "stageStates",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "stageStates",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "stageStates",
"marshallLocationName" : "stageStates",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "StageState",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "StageState",
"variable" : {
"variableName" : "member",
"variableType" : "StageState",
"variableDeclarationType" : "StageState",
"documentation" : "",
"simpleType" : "StageState",
"variableSetterType" : "StageState"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "StageState",
"variableDeclarationType" : "StageState",
"documentation" : "",
"simpleType" : "StageState",
"variableSetterType" : "StageState"
},
"getterModel" : {
"returnType" : "StageState",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"marshallNonAutoConstructedEmptyLists" : false,
"simple" : false,
"simpleType" : "StageState",
"map" : false,
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
\n@param stageStates A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.*/",
"getterDocumentation" : "/**A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
\n@return A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.*/",
"fluentSetterDocumentation" : "/**A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
\n@param stageStates A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setStageStates(java.util.Collection)} or {@link #withStageStates(java.util.Collection)} if you want to override the existing values.
\n@param stageStates A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The date and time the pipeline was created, in timestamp format.
",
"name" : "Created",
"c2jName" : "created",
"c2jShape" : "Timestamp",
"variable" : {
"variableName" : "created",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The date and time the pipeline was created, in timestamp format.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "created",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "created",
"marshallLocationName" : "created",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The date and time the pipeline was created, in timestamp format.
\n@param created The date and time the pipeline was created, in timestamp format.*/",
"getterDocumentation" : "/**The date and time the pipeline was created, in timestamp format.
\n@return The date and time the pipeline was created, in timestamp format.*/",
"fluentSetterDocumentation" : "/**The date and time the pipeline was created, in timestamp format.
\n@param created The date and time the pipeline was created, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The date and time the pipeline was created, in timestamp format.
\n@param created The date and time the pipeline was created, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The date and time the pipeline was last updated, in timestamp format.
",
"name" : "Updated",
"c2jName" : "updated",
"c2jShape" : "Timestamp",
"variable" : {
"variableName" : "updated",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The date and time the pipeline was last updated, in timestamp format.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "updated",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "updated",
"marshallLocationName" : "updated",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The date and time the pipeline was last updated, in timestamp format.
\n@param updated The date and time the pipeline was last updated, in timestamp format.*/",
"getterDocumentation" : "/**The date and time the pipeline was last updated, in timestamp format.
\n@return The date and time the pipeline was last updated, in timestamp format.*/",
"fluentSetterDocumentation" : "/**The date and time the pipeline was last updated, in timestamp format.
\n@param updated The date and time the pipeline was last updated, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The date and time the pipeline was last updated, in timestamp format.
\n@param updated The date and time the pipeline was last updated, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getPipelineStateResult",
"variableType" : "GetPipelineStateResult",
"variableDeclarationType" : "GetPipelineStateResult",
"documentation" : null,
"simpleType" : "GetPipelineStateResult",
"variableSetterType" : "GetPipelineStateResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Updated" : {
"documentation" : "The date and time the pipeline was last updated, in timestamp format.
",
"name" : "Updated",
"c2jName" : "updated",
"c2jShape" : "Timestamp",
"variable" : {
"variableName" : "updated",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The date and time the pipeline was last updated, in timestamp format.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "updated",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "updated",
"marshallLocationName" : "updated",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The date and time the pipeline was last updated, in timestamp format.
\n@param updated The date and time the pipeline was last updated, in timestamp format.*/",
"getterDocumentation" : "/**The date and time the pipeline was last updated, in timestamp format.
\n@return The date and time the pipeline was last updated, in timestamp format.*/",
"fluentSetterDocumentation" : "/**The date and time the pipeline was last updated, in timestamp format.
\n@param updated The date and time the pipeline was last updated, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The date and time the pipeline was last updated, in timestamp format.
\n@param updated The date and time the pipeline was last updated, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"PipelineName" : {
"documentation" : "The name of the pipeline for which you want to get the state.
",
"name" : "PipelineName",
"c2jName" : "pipelineName",
"c2jShape" : "PipelineName",
"variable" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the pipeline for which you want to get the state.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "pipelineName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineName",
"marshallLocationName" : "pipelineName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the pipeline for which you want to get the state.
\n@param pipelineName The name of the pipeline for which you want to get the state.*/",
"getterDocumentation" : "/**The name of the pipeline for which you want to get the state.
\n@return The name of the pipeline for which you want to get the state.*/",
"fluentSetterDocumentation" : "/**The name of the pipeline for which you want to get the state.
\n@param pipelineName The name of the pipeline for which you want to get the state.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the pipeline for which you want to get the state.
\n@param pipelineName The name of the pipeline for which you want to get the state.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"StageStates" : {
"documentation" : "A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
",
"name" : "StageStates",
"c2jName" : "stageStates",
"c2jShape" : "StageStateList",
"variable" : {
"variableName" : "stageStates",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "stageStates",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "stageStates",
"marshallLocationName" : "stageStates",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "StageState",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "StageState",
"variable" : {
"variableName" : "member",
"variableType" : "StageState",
"variableDeclarationType" : "StageState",
"documentation" : "",
"simpleType" : "StageState",
"variableSetterType" : "StageState"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "StageState",
"variableDeclarationType" : "StageState",
"documentation" : "",
"simpleType" : "StageState",
"variableSetterType" : "StageState"
},
"getterModel" : {
"returnType" : "StageState",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"marshallNonAutoConstructedEmptyLists" : false,
"simple" : false,
"simpleType" : "StageState",
"map" : false,
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
\n@param stageStates A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.*/",
"getterDocumentation" : "/**A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
\n@return A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.*/",
"fluentSetterDocumentation" : "/**A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
\n@param stageStates A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setStageStates(java.util.Collection)} or {@link #withStageStates(java.util.Collection)} if you want to override the existing values.
\n@param stageStates A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"PipelineVersion" : {
"documentation" : "The version number of the pipeline.
A newly-created pipeline is always assigned a version number of 1
.
",
"name" : "PipelineVersion",
"c2jName" : "pipelineVersion",
"c2jShape" : "PipelineVersion",
"variable" : {
"variableName" : "pipelineVersion",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The version number of the pipeline.
A newly-created pipeline is always assigned a version number of 1
.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "pipelineVersion",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "pipelineVersion",
"marshallLocationName" : "pipelineVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version number of the pipeline.
A newly-created pipeline is always assigned a version number of 1
.
\n@param pipelineVersion The version number of the pipeline. A newly-created pipeline is always assigned a version number of 1
.
*/",
"getterDocumentation" : "/**The version number of the pipeline.
A newly-created pipeline is always assigned a version number of 1
.
\n@return The version number of the pipeline. A newly-created pipeline is always assigned a version number of 1
.
*/",
"fluentSetterDocumentation" : "/**The version number of the pipeline.
A newly-created pipeline is always assigned a version number of 1
.
\n@param pipelineVersion The version number of the pipeline. A newly-created pipeline is always assigned a version number of 1
.
\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The version number of the pipeline.
A newly-created pipeline is always assigned a version number of 1
.
\n@param pipelineVersion The version number of the pipeline. A newly-created pipeline is always assigned a version number of 1
.
\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Created" : {
"documentation" : "The date and time the pipeline was created, in timestamp format.
",
"name" : "Created",
"c2jName" : "created",
"c2jShape" : "Timestamp",
"variable" : {
"variableName" : "created",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The date and time the pipeline was created, in timestamp format.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "created",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "created",
"marshallLocationName" : "created",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The date and time the pipeline was created, in timestamp format.
\n@param created The date and time the pipeline was created, in timestamp format.*/",
"getterDocumentation" : "/**The date and time the pipeline was created, in timestamp format.
\n@return The date and time the pipeline was created, in timestamp format.*/",
"fluentSetterDocumentation" : "/**The date and time the pipeline was created, in timestamp format.
\n@param created The date and time the pipeline was created, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The date and time the pipeline was created, in timestamp format.
\n@param created The date and time the pipeline was created, in timestamp format.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"PollForJobsResult" : {
"c2jName" : "PollForJobsOutput",
"documentation" : "Represents the output of a poll for jobs action.
",
"shapeName" : "PollForJobsResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Information about the jobs to take action on.
",
"name" : "Jobs",
"c2jName" : "jobs",
"c2jShape" : "JobList",
"variable" : {
"variableName" : "jobs",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "Information about the jobs to take action on.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "jobs",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "jobs",
"marshallLocationName" : "jobs",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "Job",
"memberLocationName" : null,
"implType" : "java.util.ArrayList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "Job",
"variable" : {
"variableName" : "member",
"variableType" : "Job",
"variableDeclarationType" : "Job",
"documentation" : "",
"simpleType" : "Job",
"variableSetterType" : "Job"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "Job",
"variableDeclarationType" : "Job",
"documentation" : "",
"simpleType" : "Job",
"variableSetterType" : "Job"
},
"getterModel" : {
"returnType" : "Job",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"marshallNonAutoConstructedEmptyLists" : false,
"simple" : false,
"simpleType" : "Job",
"map" : false,
"templateType" : "java.util.List",
"templateImplType" : "java.util.ArrayList"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**Information about the jobs to take action on.
\n@param jobs Information about the jobs to take action on.*/",
"getterDocumentation" : "/**Information about the jobs to take action on.
\n@return Information about the jobs to take action on.*/",
"fluentSetterDocumentation" : "/**Information about the jobs to take action on.
\n@param jobs Information about the jobs to take action on.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Information about the jobs to take action on.
\nNOTE: 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 Information about the jobs to take action on.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "pollForJobsResult",
"variableType" : "PollForJobsResult",
"variableDeclarationType" : "PollForJobsResult",
"documentation" : null,
"simpleType" : "PollForJobsResult",
"variableSetterType" : "PollForJobsResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Jobs" : {
"documentation" : "Information about the jobs to take action on.
",
"name" : "Jobs",
"c2jName" : "jobs",
"c2jShape" : "JobList",
"variable" : {
"variableName" : "jobs",
"variableType" : "java.util.List",
"variableDeclarationType" : "java.util.List",
"documentation" : "Information about the jobs to take action on.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection