|
342 | 342 | {"shape":"ValidationException"},
|
343 | 343 | {"shape":"InvalidNextTokenException"}
|
344 | 344 | ],
|
345 |
| - "documentation":"<p>Lists the rules for the condition. For more information about conditions, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html\">Stage conditions</a>. For more information about rules, see the <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html\">CodePipeline rule reference</a>.</p>" |
| 345 | + "documentation":"<p>Lists the rules for the condition. For more information about conditions, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html\">Stage conditions</a> and <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html\">How do stage conditions work?</a>.For more information about rules, see the <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html\">CodePipeline rule reference</a>.</p>" |
346 | 346 | },
|
347 | 347 | "ListTagsForResource":{
|
348 | 348 | "name":"ListTagsForResource",
|
|
390 | 390 | {"shape":"NotLatestPipelineExecutionException"},
|
391 | 391 | {"shape":"ConcurrentPipelineExecutionsLimitExceededException"}
|
392 | 392 | ],
|
393 |
| - "documentation":"<p>Used to override a stage condition.</p>" |
| 393 | + "documentation":"<p>Used to override a stage condition. For more information about conditions, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html\">Stage conditions</a> and <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html\">How do stage conditions work?</a>.</p>" |
394 | 394 | },
|
395 | 395 | "PollForJobs":{
|
396 | 396 | "name":"PollForJobs",
|
|
950 | 950 | "timeoutInMinutes":{
|
951 | 951 | "shape":"ActionTimeout",
|
952 | 952 | "documentation":"<p>A timeout duration in minutes that can be applied against the ActionType’s default timeout value specified in <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/limits.html\">Quotas for CodePipeline </a>. This attribute is available only to the manual approval ActionType.</p>"
|
| 953 | + }, |
| 954 | + "environmentVariables":{ |
| 955 | + "shape":"EnvironmentVariableList", |
| 956 | + "documentation":"<p>The environment variables for the action.</p>" |
953 | 957 | }
|
954 | 958 | },
|
955 | 959 | "documentation":"<p>Represents information about an action declaration.</p>"
|
|
1763 | 1767 | "documentation":"<p>The conditions that are configured as entry conditions.</p>"
|
1764 | 1768 | }
|
1765 | 1769 | },
|
1766 |
| - "documentation":"<p>The conditions for making checks for entry to a stage. </p>" |
| 1770 | + "documentation":"<p>The conditions for making checks for entry to a stage. For more information about conditions, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html\">Stage conditions</a> and <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html\">How do stage conditions work?</a>. </p>" |
1767 | 1771 | },
|
1768 | 1772 | "BlockerDeclaration":{
|
1769 | 1773 | "type":"structure",
|
|
1848 | 1852 | "documentation":"<p>The rules that make up the condition.</p>"
|
1849 | 1853 | }
|
1850 | 1854 | },
|
1851 |
| - "documentation":"<p>The condition for the stage. A condition is made up of the rules and the result for the condition. For more information about conditions, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html\">Stage conditions</a>. For more information about rules, see the <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html\">CodePipeline rule reference</a>.</p>" |
| 1855 | + "documentation":"<p>The condition for the stage. A condition is made up of the rules and the result for the condition. For more information about conditions, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html\">Stage conditions</a> and <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html\">How do stage conditions work?</a>.. For more information about rules, see the <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html\">CodePipeline rule reference</a>.</p>" |
1852 | 1856 | },
|
1853 | 1857 | "ConditionExecution":{
|
1854 | 1858 | "type":"structure",
|
|
2208 | 2212 | "type":"string",
|
2209 | 2213 | "enum":["KMS"]
|
2210 | 2214 | },
|
| 2215 | + "EnvironmentVariable":{ |
| 2216 | + "type":"structure", |
| 2217 | + "required":[ |
| 2218 | + "name", |
| 2219 | + "value" |
| 2220 | + ], |
| 2221 | + "members":{ |
| 2222 | + "name":{ |
| 2223 | + "shape":"EnvironmentVariableName", |
| 2224 | + "documentation":"<p>The environment variable name in the key-value pair.</p>" |
| 2225 | + }, |
| 2226 | + "value":{ |
| 2227 | + "shape":"EnvironmentVariableValue", |
| 2228 | + "documentation":"<p>The environment variable value in the key-value pair.</p>" |
| 2229 | + } |
| 2230 | + }, |
| 2231 | + "documentation":"<p>The environment variables for the action.</p>" |
| 2232 | + }, |
| 2233 | + "EnvironmentVariableList":{ |
| 2234 | + "type":"list", |
| 2235 | + "member":{"shape":"EnvironmentVariable"}, |
| 2236 | + "max":10, |
| 2237 | + "min":1 |
| 2238 | + }, |
| 2239 | + "EnvironmentVariableName":{ |
| 2240 | + "type":"string", |
| 2241 | + "max":128, |
| 2242 | + "min":1, |
| 2243 | + "pattern":"[A-Za-z0-9_]+" |
| 2244 | + }, |
| 2245 | + "EnvironmentVariableValue":{ |
| 2246 | + "type":"string", |
| 2247 | + "max":2000, |
| 2248 | + "min":1, |
| 2249 | + "pattern":".*" |
| 2250 | + }, |
2211 | 2251 | "ErrorDetails":{
|
2212 | 2252 | "type":"structure",
|
2213 | 2253 | "members":{
|
|
2315 | 2355 | },
|
2316 | 2356 | "conditions":{
|
2317 | 2357 | "shape":"ConditionList",
|
2318 |
| - "documentation":"<p>The conditions that are configured as failure conditions.</p>" |
| 2358 | + "documentation":"<p>The conditions that are configured as failure conditions. For more information about conditions, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html\">Stage conditions</a> and <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html\">How do stage conditions work?</a>.</p>" |
2319 | 2359 | }
|
2320 | 2360 | },
|
2321 |
| - "documentation":"<p>The configuration that specifies the result, such as rollback, to occur upon stage failure. </p>" |
| 2361 | + "documentation":"<p>The configuration that specifies the result, such as rollback, to occur upon stage failure. For more information about conditions, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html\">Stage conditions</a> and <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html\">How do stage conditions work?</a>. </p>" |
2322 | 2362 | },
|
2323 | 2363 | "FailureDetails":{
|
2324 | 2364 | "type":"structure",
|
|
2633 | 2673 | "members":{
|
2634 | 2674 | "events":{
|
2635 | 2675 | "shape":"GitPullRequestEventTypeList",
|
2636 |
| - "documentation":"<p>The field that specifies which pull request events to filter on (opened, updated, closed) for the trigger configuration.</p>" |
| 2676 | + "documentation":"<p>The field that specifies which pull request events to filter on (OPEN, UPDATED, CLOSED) for the trigger configuration.</p>" |
2637 | 2677 | },
|
2638 | 2678 | "branches":{
|
2639 | 2679 | "shape":"GitBranchFilterCriteria",
|
|
2644 | 2684 | "documentation":"<p>The field that specifies to filter on file paths for the pull request trigger configuration.</p>"
|
2645 | 2685 | }
|
2646 | 2686 | },
|
2647 |
| - "documentation":"<p>The event criteria for the pull request trigger configuration, such as the lists of branches or file paths to include and exclude.</p>" |
| 2687 | + "documentation":"<p>The event criteria for the pull request trigger configuration, such as the lists of branches or file paths to include and exclude.</p> <p>The following are valid values for the events for this filter:</p> <ul> <li> <p>CLOSED</p> </li> <li> <p>OPEN</p> </li> <li> <p>UPDATED</p> </li> </ul>" |
2648 | 2688 | },
|
2649 | 2689 | "GitPullRequestFilterList":{
|
2650 | 2690 | "type":"list",
|
|
4001 | 4041 | },
|
4002 | 4042 | "token":{
|
4003 | 4043 | "shape":"ApprovalToken",
|
4004 |
| - "documentation":"<p>The system-generated token used to identify a unique approval request. The token for each open approval request can be obtained using the <a>GetPipelineState</a> action. It is used to validate that the approval request corresponding to this token is still valid.</p> <important> <p>For a pipeline where the execution mode is set to PARALLEL, the token required to approve/reject approval request as detailed above is not available. Instead, use the <code>externalExecutionId</code> from the <code>GetPipelineState</code> action as the token in the approval request.</p> </important>" |
| 4044 | + "documentation":"<p>The system-generated token used to identify a unique approval request. The token for each open approval request can be obtained using the <a>GetPipelineState</a> action. It is used to validate that the approval request corresponding to this token is still valid.</p> <important> <p>For a pipeline where the execution mode is set to PARALLEL, the token required to approve/reject an approval request as detailed above is not available. Instead, use the <code>externalExecutionId</code> in the response output from the <a>ListActionExecutions</a> action as the token in the approval request.</p> </important>" |
4005 | 4045 | }
|
4006 | 4046 | },
|
4007 | 4047 | "documentation":"<p>Represents the input of a <code>PutApprovalResult</code> action.</p>"
|
|
4457 | 4497 | "documentation":"<p>The action timeout for the rule.</p>"
|
4458 | 4498 | }
|
4459 | 4499 | },
|
4460 |
| - "documentation":"<p>Represents information about the rule to be created for an associated condition. An example would be creating a new rule for an entry condition, such as a rule that checks for a test result before allowing the run to enter the deployment stage. For more information about conditions, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html\">Stage conditions</a>. For more information about rules, see the <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html\">CodePipeline rule reference</a>.</p>" |
| 4500 | + "documentation":"<p>Represents information about the rule to be created for an associated condition. An example would be creating a new rule for an entry condition, such as a rule that checks for a test result before allowing the run to enter the deployment stage. For more information about conditions, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html\">Stage conditions</a> and <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html\">How do stage conditions work?</a>. For more information about rules, see the <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html\">CodePipeline rule reference</a>.</p>" |
4461 | 4501 | },
|
4462 | 4502 | "RuleDeclarationList":{
|
4463 | 4503 | "type":"list",
|
|
4579 | 4619 | "members":{
|
4580 | 4620 | "ruleTypeId":{
|
4581 | 4621 | "shape":"RuleTypeId",
|
4582 |
| - "documentation":"<p>The ID for the rule type, which is made up of the combined values for category, owner, provider, and version.</p>" |
| 4622 | + "documentation":"<p>The ID for the rule type, which is made up of the combined values for category, owner, provider, and version. For more information about conditions, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html\">Stage conditions</a>. For more information about rules, see the <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html\">CodePipeline rule reference</a>.</p>" |
4583 | 4623 | },
|
4584 | 4624 | "configuration":{
|
4585 | 4625 | "shape":"RuleConfigurationMap",
|
|
4763 | 4803 | },
|
4764 | 4804 | "provider":{
|
4765 | 4805 | "shape":"RuleProvider",
|
4766 |
| - "documentation":"<p>The rule provider, such as the <code>DeploymentWindow</code> rule.</p>" |
| 4806 | + "documentation":"<p>The rule provider, such as the <code>DeploymentWindow</code> rule. For a list of rule provider names, see the rules listed in the <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html\">CodePipeline rule reference</a>.</p>" |
4767 | 4807 | },
|
4768 | 4808 | "version":{
|
4769 | 4809 | "shape":"Version",
|
4770 | 4810 | "documentation":"<p>A string that describes the rule version.</p>"
|
4771 | 4811 | }
|
4772 | 4812 | },
|
4773 |
| - "documentation":"<p>The ID for the rule type, which is made up of the combined values for category, owner, provider, and version.</p>" |
| 4813 | + "documentation":"<p>The ID for the rule type, which is made up of the combined values for category, owner, provider, and version. For more information about conditions, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html\">Stage conditions</a>. For more information about rules, see the <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html\">CodePipeline rule reference</a>.</p>" |
4774 | 4814 | },
|
4775 | 4815 | "RuleTypeList":{
|
4776 | 4816 | "type":"list",
|
|
5228 | 5268 | "documentation":"<p>The conditions that are success conditions.</p>"
|
5229 | 5269 | }
|
5230 | 5270 | },
|
5231 |
| - "documentation":"<p>The conditions for making checks that, if met, succeed a stage.</p>" |
| 5271 | + "documentation":"<p>The conditions for making checks that, if met, succeed a stage. For more information about conditions, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html\">Stage conditions</a> and <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html\">How do stage conditions work?</a>.</p>" |
5232 | 5272 | },
|
5233 | 5273 | "Tag":{
|
5234 | 5274 | "type":"structure",
|
|
0 commit comments