aws-sdk-codepipeline 1.55.0 → 1.56.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fbde90079349130bed657db5d53c94bed8c148fc2545d80833d1064786039698
4
- data.tar.gz: db6e35253c24ec6023bd70076f6e35f0dfc383e94b709764add20019552ea44b
3
+ metadata.gz: 1e6487e36c919af2fda536ec963475c2577827364324fd132c6af89721058162
4
+ data.tar.gz: 491e03c45b9c3822e14b4c7081ddbb6f1923c256fcd5a10aefbb0a51cbe245ec
5
5
  SHA512:
6
- metadata.gz: 87b8688a5a5177655bc76d33e134a6674a12375a331b70183b33e1a77ff3b4b4cf896026030fe6173c83f8ea2d366864c17b6a3fdc454a06242c7b9094b39f54
7
- data.tar.gz: fdc971eb69dc36fcfc785121b3fcecbc1e8b610c4e1d1770b2a5e6da8cbd2cbe52641dfeaad9928fc3bcefc78c5030725ce1e780367bc987819dbdcfd1e6b5c3
6
+ metadata.gz: 2549c9d94fdfdc283775f0509e531e4cdc9a8f2dfc2e0c39d9ff431550c7140584b53b4f55afcaa9bc1d528a038d2f00bd8d24f013aa1bd838eb8f6c45a63638
7
+ data.tar.gz: 96c3262e2f6d9f16316bc8cc3599d643da817da56c01cf026297def3f3f787158659169793ba67116ca42f77c1c50738d044d56cee14a54a5c9f08940f89172f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.56.0 (2023-05-25)
5
+ ------------------
6
+
7
+ * Feature - Add PollingDisabledAt time information in PipelineMetadata object of GetPipeline API.
8
+
4
9
  1.55.0 (2023-01-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.55.0
1
+ 1.56.0
@@ -386,10 +386,9 @@ module Aws::CodePipeline
386
386
  # confirm receipt.
387
387
  #
388
388
  # @option params [required, String] :nonce
389
- # A system-generated random number that AWS CodePipeline uses to ensure
390
- # that the job is being worked on by only one job worker. Get this
391
- # number from the response of the PollForJobs request that returned this
392
- # job.
389
+ # A system-generated random number that CodePipeline uses to ensure that
390
+ # the job is being worked on by only one job worker. Get this number
391
+ # from the response of the PollForJobs request that returned this job.
393
392
  #
394
393
  # @return [Types::AcknowledgeJobOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
395
394
  #
@@ -422,9 +421,9 @@ module Aws::CodePipeline
422
421
  # The unique system-generated ID of the job.
423
422
  #
424
423
  # @option params [required, String] :nonce
425
- # A system-generated random number that AWS CodePipeline uses to ensure
426
- # that the job is being worked on by only one job worker. Get this
427
- # number from the response to a GetThirdPartyJobDetails request.
424
+ # A system-generated random number that CodePipeline uses to ensure that
425
+ # the job is being worked on by only one job worker. Get this number
426
+ # from the response to a GetThirdPartyJobDetails request.
428
427
  #
429
428
  # @option params [required, String] :client_token
430
429
  # The clientToken portion of the clientId and clientToken pair used to
@@ -457,14 +456,15 @@ module Aws::CodePipeline
457
456
  end
458
457
 
459
458
  # Creates a new custom action that can be used in all pipelines
460
- # associated with the AWS account. Only used for custom actions.
459
+ # associated with the Amazon Web Services account. Only used for custom
460
+ # actions.
461
461
  #
462
462
  # @option params [required, String] :category
463
463
  # The category of the custom action, such as a build action or a test
464
464
  # action.
465
465
  #
466
466
  # @option params [required, String] :provider
467
- # The provider of the service used in the custom action, such as AWS
467
+ # The provider of the service used in the custom action, such as
468
468
  # CodeDeploy.
469
469
  #
470
470
  # @option params [required, String] :version
@@ -735,7 +735,7 @@ module Aws::CodePipeline
735
735
  # source or deploy.
736
736
  #
737
737
  # @option params [required, String] :provider
738
- # The provider of the service used in the custom action, such as AWS
738
+ # The provider of the service used in the custom action, such as
739
739
  # CodeDeploy.
740
740
  #
741
741
  # @option params [required, String] :version
@@ -783,7 +783,7 @@ module Aws::CodePipeline
783
783
  end
784
784
 
785
785
  # Deletes a previously created webhook by name. Deleting the webhook
786
- # stops AWS CodePipeline from starting a pipeline every time an external
786
+ # stops CodePipeline from starting a pipeline every time an external
787
787
  # event occurs. The API returns successfully when trying to delete a
788
788
  # webhook that is already deleted. If a deleted webhook is re-created by
789
789
  # calling PutWebhook with the same name, it will have a different URL.
@@ -1001,11 +1001,11 @@ module Aws::CodePipeline
1001
1001
 
1002
1002
  # Returns information about a job. Used for custom actions only.
1003
1003
  #
1004
- # When this API is called, AWS CodePipeline returns temporary
1005
- # credentials for the S3 bucket used to store artifacts for the
1006
- # pipeline, if the action requires access to that S3 bucket for input or
1007
- # output artifacts. This API also returns any secret values defined for
1008
- # the action.
1004
+ # When this API is called, CodePipeline returns temporary credentials
1005
+ # for the S3 bucket used to store artifacts for the pipeline, if the
1006
+ # action requires access to that S3 bucket for input or output
1007
+ # artifacts. This API also returns any secret values defined for the
1008
+ # action.
1009
1009
  #
1010
1010
  # @option params [required, String] :job_id
1011
1011
  # The unique system-generated ID for the job.
@@ -1071,7 +1071,7 @@ module Aws::CodePipeline
1071
1071
  #
1072
1072
  # @option params [required, String] :name
1073
1073
  # The name of the pipeline for which you want to get information.
1074
- # Pipeline names must be unique under an AWS user account.
1074
+ # Pipeline names must be unique in an Amazon Web Services account.
1075
1075
  #
1076
1076
  # @option params [Integer] :version
1077
1077
  # The version number of the pipeline. If you do not specify a version,
@@ -1127,6 +1127,7 @@ module Aws::CodePipeline
1127
1127
  # resp.metadata.pipeline_arn #=> String
1128
1128
  # resp.metadata.created #=> Time
1129
1129
  # resp.metadata.updated #=> Time
1130
+ # resp.metadata.polling_disabled_at #=> Time
1130
1131
  #
1131
1132
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetPipeline AWS API Documentation
1132
1133
  #
@@ -1257,11 +1258,11 @@ module Aws::CodePipeline
1257
1258
  # Requests the details of a job for a third party action. Used for
1258
1259
  # partner actions only.
1259
1260
  #
1260
- # When this API is called, AWS CodePipeline returns temporary
1261
- # credentials for the S3 bucket used to store artifacts for the
1262
- # pipeline, if the action requires access to that S3 bucket for input or
1263
- # output artifacts. This API also returns any secret values defined for
1264
- # the action.
1261
+ # When this API is called, CodePipeline returns temporary credentials
1262
+ # for the S3 bucket used to store artifacts for the pipeline, if the
1263
+ # action requires access to that S3 bucket for input or output
1264
+ # artifacts. This API also returns any secret values defined for the
1265
+ # action.
1265
1266
  #
1266
1267
  # @option params [required, String] :job_id
1267
1268
  # The unique system-generated ID used for identifying the job.
@@ -1415,8 +1416,8 @@ module Aws::CodePipeline
1415
1416
  req.send_request(options)
1416
1417
  end
1417
1418
 
1418
- # Gets a summary of all AWS CodePipeline action types associated with
1419
- # your account.
1419
+ # Gets a summary of all CodePipeline action types associated with your
1420
+ # account.
1420
1421
  #
1421
1422
  # @option params [String] :action_owner_filter
1422
1423
  # Filters the list of action types to those created by a specified
@@ -1626,9 +1627,9 @@ module Aws::CodePipeline
1626
1627
  req.send_request(options)
1627
1628
  end
1628
1629
 
1629
- # Gets a listing of all the webhooks in this AWS Region for this
1630
- # account. The output lists all webhooks and includes the webhook URL
1631
- # and ARN and the configuration for each webhook.
1630
+ # Gets a listing of all the webhooks in this Amazon Web Services Region
1631
+ # for this account. The output lists all webhooks and includes the
1632
+ # webhook URL and ARN and the configuration for each webhook.
1632
1633
  #
1633
1634
  # @option params [String] :next_token
1634
1635
  # The token that was returned from the previous ListWebhooks call, which
@@ -1684,16 +1685,16 @@ module Aws::CodePipeline
1684
1685
  req.send_request(options)
1685
1686
  end
1686
1687
 
1687
- # Returns information about any jobs for AWS CodePipeline to act on.
1688
+ # Returns information about any jobs for CodePipeline to act on.
1688
1689
  # `PollForJobs` is valid only for action types with "Custom" in the
1689
- # owner field. If the action type contains "AWS" or "ThirdParty" in
1690
- # the owner field, the `PollForJobs` action returns an error.
1690
+ # owner field. If the action type contains `AWS` or `ThirdParty` in the
1691
+ # owner field, the `PollForJobs` action returns an error.
1691
1692
  #
1692
- # When this API is called, AWS CodePipeline returns temporary
1693
- # credentials for the S3 bucket used to store artifacts for the
1694
- # pipeline, if the action requires access to that S3 bucket for input or
1695
- # output artifacts. This API also returns any secret values defined for
1696
- # the action.
1693
+ # When this API is called, CodePipeline returns temporary credentials
1694
+ # for the S3 bucket used to store artifacts for the pipeline, if the
1695
+ # action requires access to that S3 bucket for input or output
1696
+ # artifacts. This API also returns any secret values defined for the
1697
+ # action.
1697
1698
  #
1698
1699
  # @option params [required, Types::ActionTypeId] :action_type_id
1699
1700
  # Represents information about an action type.
@@ -1776,10 +1777,10 @@ module Aws::CodePipeline
1776
1777
  # Determines whether there are any third party jobs for a job worker to
1777
1778
  # act on. Used for partner actions only.
1778
1779
  #
1779
- # When this API is called, AWS CodePipeline returns temporary
1780
- # credentials for the S3 bucket used to store artifacts for the
1781
- # pipeline, if the action requires access to that S3 bucket for input or
1782
- # output artifacts.
1780
+ # When this API is called, CodePipeline returns temporary credentials
1781
+ # for the S3 bucket used to store artifacts for the pipeline, if the
1782
+ # action requires access to that S3 bucket for input or output
1783
+ # artifacts.
1783
1784
  #
1784
1785
  # @option params [required, Types::ActionTypeId] :action_type_id
1785
1786
  # Represents information about an action type.
@@ -1818,8 +1819,7 @@ module Aws::CodePipeline
1818
1819
  req.send_request(options)
1819
1820
  end
1820
1821
 
1821
- # Provides information to AWS CodePipeline about new revisions to a
1822
- # source.
1822
+ # Provides information to CodePipeline about new revisions to a source.
1823
1823
  #
1824
1824
  # @option params [required, String] :pipeline_name
1825
1825
  # The name of the pipeline that starts processing the revision to the
@@ -1867,8 +1867,8 @@ module Aws::CodePipeline
1867
1867
  req.send_request(options)
1868
1868
  end
1869
1869
 
1870
- # Provides the response to a manual approval request to AWS
1871
- # CodePipeline. Valid responses include Approved and Rejected.
1870
+ # Provides the response to a manual approval request to CodePipeline.
1871
+ # Valid responses include Approved and Rejected.
1872
1872
  #
1873
1873
  # @option params [required, String] :pipeline_name
1874
1874
  # The name of the pipeline that contains the action.
@@ -1962,12 +1962,12 @@ module Aws::CodePipeline
1962
1962
  # by the job.
1963
1963
  #
1964
1964
  # @option params [String] :continuation_token
1965
- # A token generated by a job worker, such as an AWS CodeDeploy
1966
- # deployment ID, that a successful job provides to identify a custom
1967
- # action in progress. Future jobs use this token to identify the running
1968
- # instance of the action. It can be reused to return more information
1969
- # about the progress of the custom action. When the action is complete,
1970
- # no continuation token should be supplied.
1965
+ # A token generated by a job worker, such as a CodeDeploy deployment ID,
1966
+ # that a successful job provides to identify a custom action in
1967
+ # progress. Future jobs use this token to identify the running instance
1968
+ # of the action. It can be reused to return more information about the
1969
+ # progress of the custom action. When the action is complete, no
1970
+ # continuation token should be supplied.
1971
1971
  #
1972
1972
  # @option params [Types::ExecutionDetails] :execution_details
1973
1973
  # The execution details of the successful job, such as the actions taken
@@ -2064,12 +2064,12 @@ module Aws::CodePipeline
2064
2064
  # Represents information about a current revision.
2065
2065
  #
2066
2066
  # @option params [String] :continuation_token
2067
- # A token generated by a job worker, such as an AWS CodeDeploy
2068
- # deployment ID, that a successful job provides to identify a partner
2069
- # action in progress. Future jobs use this token to identify the running
2070
- # instance of the action. It can be reused to return more information
2071
- # about the progress of the partner action. When the action is complete,
2072
- # no continuation token should be supplied.
2067
+ # A token generated by a job worker, such as a CodeDeploy deployment ID,
2068
+ # that a successful job provides to identify a partner action in
2069
+ # progress. Future jobs use this token to identify the running instance
2070
+ # of the action. It can be reused to return more information about the
2071
+ # progress of the partner action. When the action is complete, no
2072
+ # continuation token should be supplied.
2073
2073
  #
2074
2074
  # @option params [Types::ExecutionDetails] :execution_details
2075
2075
  # The details of the actions taken and results produced on an artifact
@@ -2379,7 +2379,7 @@ module Aws::CodePipeline
2379
2379
  req.send_request(options)
2380
2380
  end
2381
2381
 
2382
- # Removes tags from an AWS resource.
2382
+ # Removes tags from an Amazon Web Services resource.
2383
2383
  #
2384
2384
  # @option params [required, String] :resource_arn
2385
2385
  # The Amazon Resource Name (ARN) of the resource to remove tags from.
@@ -2616,7 +2616,7 @@ module Aws::CodePipeline
2616
2616
  params: params,
2617
2617
  config: config)
2618
2618
  context[:gem_name] = 'aws-sdk-codepipeline'
2619
- context[:gem_version] = '1.55.0'
2619
+ context[:gem_version] = '1.56.0'
2620
2620
  Seahorse::Client::Request.new(handlers, context)
2621
2621
  end
2622
2622
 
@@ -895,6 +895,7 @@ module Aws::CodePipeline
895
895
  PipelineMetadata.add_member(:pipeline_arn, Shapes::ShapeRef.new(shape: PipelineArn, location_name: "pipelineArn"))
896
896
  PipelineMetadata.add_member(:created, Shapes::ShapeRef.new(shape: Timestamp, location_name: "created"))
897
897
  PipelineMetadata.add_member(:updated, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updated"))
898
+ PipelineMetadata.add_member(:polling_disabled_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "pollingDisabledAt"))
898
899
  PipelineMetadata.struct_class = Types::PipelineMetadata
899
900
 
900
901
  PipelineNameInUseException.struct_class = Types::PipelineNameInUseException
@@ -14,36 +14,39 @@ module Aws::CodePipeline
14
14
  use_dual_stack = parameters.use_dual_stack
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
- raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
- end
22
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
- raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
- end
25
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
- end
27
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
- return Aws::Endpoints::Endpoint.new(url: "https://codepipeline-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
- end
31
- raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
- end
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
33
18
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
- return Aws::Endpoints::Endpoint.new(url: "https://codepipeline-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
- end
37
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
38
20
  end
39
21
  if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
- return Aws::Endpoints::Endpoint.new(url: "https://codepipeline.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
+ end
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
25
+ end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://codepipeline-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
+ end
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
+ end
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://codepipeline-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
+ end
40
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
41
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
+ return Aws::Endpoints::Endpoint.new(url: "https://codepipeline.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
43
+ end
44
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
42
45
  end
43
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
46
+ return Aws::Endpoints::Endpoint.new(url: "https://codepipeline.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
44
47
  end
45
- return Aws::Endpoints::Endpoint.new(url: "https://codepipeline.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
46
48
  end
49
+ raise ArgumentError, "Invalid Configuration: Missing Region"
47
50
  raise ArgumentError, 'No endpoint could be resolved'
48
51
 
49
52
  end
@@ -10,10 +10,11 @@
10
10
  module Aws::CodePipeline
11
11
  module Types
12
12
 
13
- # Represents an AWS session credentials object. These credentials are
14
- # temporary credentials that are issued by AWS Secure Token Service
15
- # (STS). They can be used to access input and output artifacts in the S3
16
- # bucket used to store artifact for the pipeline in AWS CodePipeline.
13
+ # Represents an Amazon Web Services session credentials object. These
14
+ # credentials are temporary credentials that are issued by Amazon Web
15
+ # Services Secure Token Service (STS). They can be used to access input
16
+ # and output artifacts in the S3 bucket used to store artifact for the
17
+ # pipeline in CodePipeline.
17
18
  #
18
19
  # @!attribute [rw] access_key_id
19
20
  # The access key for the session.
@@ -45,10 +46,10 @@ module Aws::CodePipeline
45
46
  # @return [String]
46
47
  #
47
48
  # @!attribute [rw] nonce
48
- # A system-generated random number that AWS CodePipeline uses to
49
- # ensure that the job is being worked on by only one job worker. Get
50
- # this number from the response of the PollForJobs request that
51
- # returned this job.
49
+ # A system-generated random number that CodePipeline uses to ensure
50
+ # that the job is being worked on by only one job worker. Get this
51
+ # number from the response of the PollForJobs request that returned
52
+ # this job.
52
53
  # @return [String]
53
54
  #
54
55
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/AcknowledgeJobInput AWS API Documentation
@@ -81,9 +82,9 @@ module Aws::CodePipeline
81
82
  # @return [String]
82
83
  #
83
84
  # @!attribute [rw] nonce
84
- # A system-generated random number that AWS CodePipeline uses to
85
- # ensure that the job is being worked on by only one job worker. Get
86
- # this number from the response to a GetThirdPartyJobDetails request.
85
+ # A system-generated random number that CodePipeline uses to ensure
86
+ # that the job is being worked on by only one job worker. Get this
87
+ # number from the response to a GetThirdPartyJobDetails request.
87
88
  # @return [String]
88
89
  #
89
90
  # @!attribute [rw] client_token
@@ -230,11 +231,11 @@ module Aws::CodePipeline
230
231
  # The action's configuration. These are key-value pairs that specify
231
232
  # input values for an action. For more information, see [Action
232
233
  # Structure Requirements in CodePipeline][1]. For the list of
233
- # configuration properties for the AWS CloudFormation action type in
234
+ # configuration properties for the CloudFormation action type in
234
235
  # CodePipeline, see [Configuration Properties Reference][2] in the
235
- # *AWS CloudFormation User Guide*. For template snippets with
236
- # examples, see [Using Parameter Override Functions with CodePipeline
237
- # Pipelines][3] in the *AWS CloudFormation User Guide*.
236
+ # *CloudFormation User Guide*. For template snippets with examples,
237
+ # see [Using Parameter Override Functions with CodePipeline
238
+ # Pipelines][3] in the *CloudFormation User Guide*.
238
239
  #
239
240
  # The values can be represented in either JSON or YAML format. For
240
241
  # example, the JSON configuration item format is as follows:
@@ -266,7 +267,8 @@ module Aws::CodePipeline
266
267
  # @return [String]
267
268
  #
268
269
  # @!attribute [rw] region
269
- # The action declaration's AWS Region, such as us-east-1.
270
+ # The action declaration's Amazon Web Services Region, such as
271
+ # us-east-1.
270
272
  # @return [String]
271
273
  #
272
274
  # @!attribute [rw] namespace
@@ -332,8 +334,8 @@ module Aws::CodePipeline
332
334
  # @return [String]
333
335
  #
334
336
  # @!attribute [rw] external_execution_url
335
- # The URL of a resource external to AWS that is used when running the
336
- # action (for example, an external repository URL).
337
+ # The URL of a resource external to Amazon Web Services that is used
338
+ # when running the action (for example, an external repository URL).
337
339
  # @return [String]
338
340
  #
339
341
  # @!attribute [rw] percent_complete
@@ -341,7 +343,8 @@ module Aws::CodePipeline
341
343
  # @return [Integer]
342
344
  #
343
345
  # @!attribute [rw] error_details
344
- # The details of an error returned by a URL external to AWS.
346
+ # The details of an error returned by a URL external to Amazon Web
347
+ # Services.
345
348
  # @return [Types::ErrorDetails]
346
349
  #
347
350
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionExecution AWS API Documentation
@@ -459,7 +462,7 @@ module Aws::CodePipeline
459
462
  # @return [String]
460
463
  #
461
464
  # @!attribute [rw] region
462
- # The AWS Region for the action, such as us-east-1.
465
+ # The Amazon Web Services Region for the action, such as us-east-1.
463
466
  # @return [String]
464
467
  #
465
468
  # @!attribute [rw] input_artifacts
@@ -750,8 +753,8 @@ module Aws::CodePipeline
750
753
  #
751
754
  # @!attribute [rw] policy_statements_template
752
755
  # The policy statement that specifies the permissions in the
753
- # CodePipeline customer’s account that are needed to successfully run
754
- # an action.
756
+ # CodePipeline customer account that are needed to successfully run an
757
+ # action.
755
758
  #
756
759
  # To grant permission to another account, specify the account ID as
757
760
  # the Principal, a domain-style identifier defined by the service, for
@@ -815,8 +818,8 @@ module Aws::CodePipeline
815
818
  # @!attribute [rw] provider
816
819
  # The provider of the service being called by the action. Valid
817
820
  # providers are determined by the action category. For example, an
818
- # action in the Deploy category type might have a provider of AWS
819
- # CodeDeploy, which would be specified as CodeDeploy. For more
821
+ # action in the Deploy category type might have a provider of
822
+ # CodeDeploy, which would be specified as `CodeDeploy`. For more
820
823
  # information, see [Valid Action Types and Providers in
821
824
  # CodePipeline][1].
822
825
  #
@@ -893,8 +896,8 @@ module Aws::CodePipeline
893
896
  # Details identifying the users with permissions to use the action type.
894
897
  #
895
898
  # @!attribute [rw] allowed_accounts
896
- # A list of AWS account IDs with access to use the action type in
897
- # their pipelines.
899
+ # A list of Amazon Web Services account IDs with access to use the
900
+ # action type in their pipelines.
898
901
  # @return [Array<String>]
899
902
  #
900
903
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionTypePermissions AWS API Documentation
@@ -959,24 +962,24 @@ module Aws::CodePipeline
959
962
  # @return [String]
960
963
  #
961
964
  # @!attribute [rw] entity_url_template
962
- # The URL returned to the AWS CodePipeline console that provides a
963
- # deep link to the resources of the external system, such as the
964
- # configuration page for an AWS CodeDeploy deployment group. This link
965
- # is provided as part of the action display in the pipeline.
965
+ # The URL returned to the CodePipeline console that provides a deep
966
+ # link to the resources of the external system, such as the
967
+ # configuration page for a CodeDeploy deployment group. This link is
968
+ # provided as part of the action display in the pipeline.
966
969
  # @return [String]
967
970
  #
968
971
  # @!attribute [rw] execution_url_template
969
- # The URL returned to the AWS CodePipeline console that contains a
970
- # link to the top-level landing page for the external system, such as
971
- # the console page for AWS CodeDeploy. This link is shown on the
972
- # pipeline view page in the AWS CodePipeline console and provides a
973
- # link to the execution entity of the external action.
972
+ # The URL returned to the CodePipeline console that contains a link to
973
+ # the top-level landing page for the external system, such as the
974
+ # console page for CodeDeploy. This link is shown on the pipeline view
975
+ # page in the CodePipeline console and provides a link to the
976
+ # execution entity of the external action.
974
977
  # @return [String]
975
978
  #
976
979
  # @!attribute [rw] revision_url_template
977
- # The URL returned to the AWS CodePipeline console that contains a
978
- # link to the page where customers can update or change the
979
- # configuration of the external action.
980
+ # The URL returned to the CodePipeline console that contains a link to
981
+ # the page where customers can update or change the configuration of
982
+ # the external action.
980
983
  # @return [String]
981
984
  #
982
985
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionTypeSettings AWS API Documentation
@@ -1055,8 +1058,11 @@ module Aws::CodePipeline
1055
1058
  include Aws::Structure
1056
1059
  end
1057
1060
 
1058
- # Represents information about an artifact that is worked on by actions
1059
- # in the pipeline.
1061
+ # Artifacts are the files that are worked on by actions in the pipeline.
1062
+ # See the action configuration for each action for details about
1063
+ # artifact parameters. For example, the S3 source action artifact is a
1064
+ # file name (or file path), and the files are generally provided as a
1065
+ # ZIP file. Example artifact name: SampleApp\_Windows.zip
1060
1066
  #
1061
1067
  # @!attribute [rw] name
1062
1068
  # The artifact's name.
@@ -1157,7 +1163,7 @@ module Aws::CodePipeline
1157
1163
  #
1158
1164
  # @!attribute [rw] revision_summary
1159
1165
  # Summary information about the most recent revision of the artifact.
1160
- # For GitHub and AWS CodeCommit repositories, the commit message. For
1166
+ # For GitHub and CodeCommit repositories, the commit message. For
1161
1167
  # Amazon S3 buckets or actions, the user-provided content of a
1162
1168
  # `codepipeline-artifact-revision-summary` key specified in the object
1163
1169
  # metadata.
@@ -1170,7 +1176,7 @@ module Aws::CodePipeline
1170
1176
  #
1171
1177
  # @!attribute [rw] revision_url
1172
1178
  # The commit ID for the artifact revision. For artifacts stored in
1173
- # GitHub or AWS CodeCommit repositories, the commit ID is linked to a
1179
+ # GitHub or CodeCommit repositories, the commit ID is linked to a
1174
1180
  # commit details page.
1175
1181
  # @return [String]
1176
1182
  #
@@ -1203,14 +1209,15 @@ module Aws::CodePipeline
1203
1209
  # The S3 bucket used for storing the artifacts for a pipeline. You can
1204
1210
  # specify the name of an S3 bucket but not a folder in the bucket. A
1205
1211
  # folder to contain the pipeline artifacts is created for you based on
1206
- # the name of the pipeline. You can use any S3 bucket in the same AWS
1207
- # Region as the pipeline to store your pipeline artifacts.
1212
+ # the name of the pipeline. You can use any S3 bucket in the same
1213
+ # Amazon Web Services Region as the pipeline to store your pipeline
1214
+ # artifacts.
1208
1215
  # @return [String]
1209
1216
  #
1210
1217
  # @!attribute [rw] encryption_key
1211
1218
  # The encryption key used to encrypt the data in the artifact store,
1212
- # such as an AWS Key Management Service (AWS KMS) key. If this is
1213
- # undefined, the default key for Amazon S3 is used.
1219
+ # such as an Amazon Web Services Key Management Service key. If this
1220
+ # is undefined, the default key for Amazon S3 is used.
1214
1221
  # @return [Types::EncryptionKey]
1215
1222
  #
1216
1223
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ArtifactStore AWS API Documentation
@@ -1277,7 +1284,7 @@ module Aws::CodePipeline
1277
1284
  # @return [String]
1278
1285
  #
1279
1286
  # @!attribute [rw] provider
1280
- # The provider of the service used in the custom action, such as AWS
1287
+ # The provider of the service used in the custom action, such as
1281
1288
  # CodeDeploy.
1282
1289
  # @return [String]
1283
1290
  #
@@ -1432,7 +1439,7 @@ module Aws::CodePipeline
1432
1439
  # @return [String]
1433
1440
  #
1434
1441
  # @!attribute [rw] provider
1435
- # The provider of the service used in the custom action, such as AWS
1442
+ # The provider of the service used in the custom action, such as
1436
1443
  # CodeDeploy.
1437
1444
  # @return [String]
1438
1445
  #
@@ -1580,23 +1587,26 @@ module Aws::CodePipeline
1580
1587
  end
1581
1588
 
1582
1589
  # Represents information about the key used to encrypt data in the
1583
- # artifact store, such as an AWS Key Management Service (AWS KMS) key.
1590
+ # artifact store, such as an Amazon Web Services Key Management Service
1591
+ # (Key Management Service) key.
1584
1592
  #
1585
1593
  # @!attribute [rw] id
1586
- # The ID used to identify the key. For an AWS KMS key, you can use the
1587
- # key ID, the key ARN, or the alias ARN.
1594
+ # The ID used to identify the key. For an Amazon Web Services KMS key,
1595
+ # you can use the key ID, the key ARN, or the alias ARN.
1588
1596
  #
1589
- # <note markdown="1"> Aliases are recognized only in the account that created the customer
1590
- # master key (CMK). For cross-account actions, you can only use the
1591
- # key ID or key ARN to identify the key.
1597
+ # <note markdown="1"> Aliases are recognized only in the account that created the KMS key.
1598
+ # For cross-account actions, you can only use the key ID or key ARN to
1599
+ # identify the key. Cross-account actions involve using the role from
1600
+ # the other account (AccountB), so specifying the key ID will use the
1601
+ # key from the other account (AccountB).
1592
1602
  #
1593
1603
  # </note>
1594
1604
  # @return [String]
1595
1605
  #
1596
1606
  # @!attribute [rw] type
1597
- # The type of encryption key, such as an AWS Key Management Service
1598
- # (AWS KMS) key. When creating or updating a pipeline, the value must
1599
- # be set to 'KMS'.
1607
+ # The type of encryption key, such as an Amazon Web Services KMS key.
1608
+ # When creating or updating a pipeline, the value must be set to
1609
+ # 'KMS'.
1600
1610
  # @return [String]
1601
1611
  #
1602
1612
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/EncryptionKey AWS API Documentation
@@ -1608,7 +1618,7 @@ module Aws::CodePipeline
1608
1618
  include Aws::Structure
1609
1619
  end
1610
1620
 
1611
- # Represents information about an error in AWS CodePipeline.
1621
+ # Represents information about an error in CodePipeline.
1612
1622
  #
1613
1623
  # @!attribute [rw] code
1614
1624
  # The system ID or number code of the error.
@@ -1636,7 +1646,7 @@ module Aws::CodePipeline
1636
1646
  #
1637
1647
  # @!attribute [rw] external_execution_id
1638
1648
  # The system-generated unique ID of this action used to identify this
1639
- # job worker in any external systems, such as AWS CodeDeploy.
1649
+ # job worker in any external systems, such as CodeDeploy.
1640
1650
  # @return [String]
1641
1651
  #
1642
1652
  # @!attribute [rw] percent_complete
@@ -1850,7 +1860,7 @@ module Aws::CodePipeline
1850
1860
  #
1851
1861
  # @!attribute [rw] name
1852
1862
  # The name of the pipeline for which you want to get information.
1853
- # Pipeline names must be unique under an AWS user account.
1863
+ # Pipeline names must be unique in an Amazon Web Services account.
1854
1864
  # @return [String]
1855
1865
  #
1856
1866
  # @!attribute [rw] version
@@ -1985,6 +1995,13 @@ module Aws::CodePipeline
1985
1995
  # @!attribute [rw] name
1986
1996
  # The name of the artifact to be worked on (for example, "My App").
1987
1997
  #
1998
+ # Artifacts are the files that are worked on by actions in the
1999
+ # pipeline. See the action configuration for each action for details
2000
+ # about artifact parameters. For example, the S3 source action input
2001
+ # artifact is a file name (or file path), and the files are generally
2002
+ # provided as a ZIP file. Example artifact name:
2003
+ # SampleApp\_Windows.zip
2004
+ #
1988
2005
  # The input artifact of an action must exactly match the output
1989
2006
  # artifact declared in a preceding action, but the input artifact does
1990
2007
  # not have to be the next action in strict sequence from the action
@@ -2111,13 +2128,14 @@ module Aws::CodePipeline
2111
2128
  # @return [Types::JobData]
2112
2129
  #
2113
2130
  # @!attribute [rw] nonce
2114
- # A system-generated random number that AWS CodePipeline uses to
2115
- # ensure that the job is being worked on by only one job worker. Use
2116
- # this number in an AcknowledgeJob request.
2131
+ # A system-generated random number that CodePipeline uses to ensure
2132
+ # that the job is being worked on by only one job worker. Use this
2133
+ # number in an AcknowledgeJob request.
2117
2134
  # @return [String]
2118
2135
  #
2119
2136
  # @!attribute [rw] account_id
2120
- # The ID of the AWS account to use when performing the job.
2137
+ # The ID of the Amazon Web Services account to use when performing the
2138
+ # job.
2121
2139
  # @return [String]
2122
2140
  #
2123
2141
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/Job AWS API Documentation
@@ -2159,21 +2177,21 @@ module Aws::CodePipeline
2159
2177
  # @return [Array<Types::Artifact>]
2160
2178
  #
2161
2179
  # @!attribute [rw] artifact_credentials
2162
- # Represents an AWS session credentials object. These credentials are
2163
- # temporary credentials that are issued by AWS Secure Token Service
2164
- # (STS). They can be used to access input and output artifacts in the
2165
- # S3 bucket used to store artifacts for the pipeline in AWS
2166
- # CodePipeline.
2180
+ # Represents an Amazon Web Services session credentials object. These
2181
+ # credentials are temporary credentials that are issued by Amazon Web
2182
+ # Services Secure Token Service (STS). They can be used to access
2183
+ # input and output artifacts in the S3 bucket used to store artifacts
2184
+ # for the pipeline in CodePipeline.
2167
2185
  # @return [Types::AWSSessionCredentials]
2168
2186
  #
2169
2187
  # @!attribute [rw] continuation_token
2170
- # A system-generated token, such as a AWS CodeDeploy deployment ID,
2171
- # required by a job to continue the job asynchronously.
2188
+ # A system-generated token, such as a deployment ID, required by a job
2189
+ # to continue the job asynchronously.
2172
2190
  # @return [String]
2173
2191
  #
2174
2192
  # @!attribute [rw] encryption_key
2175
2193
  # Represents information about the key used to encrypt data in the
2176
- # artifact store, such as an AWS Key Management Service (AWS KMS) key.
2194
+ # artifact store, such as an KMS key.
2177
2195
  # @return [Types::EncryptionKey]
2178
2196
  #
2179
2197
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/JobData AWS API Documentation
@@ -2203,7 +2221,7 @@ module Aws::CodePipeline
2203
2221
  # @return [Types::JobData]
2204
2222
  #
2205
2223
  # @!attribute [rw] account_id
2206
- # The AWS account ID associated with the job.
2224
+ # The Amazon Web Services account ID associated with the job.
2207
2225
  # @return [String]
2208
2226
  #
2209
2227
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/JobDetails AWS API Documentation
@@ -2259,8 +2277,8 @@ module Aws::CodePipeline
2259
2277
  include Aws::Structure
2260
2278
  end
2261
2279
 
2262
- # The number of pipelines associated with the AWS account has exceeded
2263
- # the limit allowed for the account.
2280
+ # The number of pipelines associated with the Amazon Web Services
2281
+ # account has exceeded the limit allowed for the account.
2264
2282
  #
2265
2283
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/LimitExceededException AWS API Documentation
2266
2284
  #
@@ -2608,7 +2626,7 @@ module Aws::CodePipeline
2608
2626
  end
2609
2627
 
2610
2628
  # The stage has failed in a later run of the pipeline and the
2611
- # pipelineExecutionId associated with the request is out of date.
2629
+ # `pipelineExecutionId` associated with the request is out of date.
2612
2630
  #
2613
2631
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/NotLatestPipelineExecutionException AWS API Documentation
2614
2632
  #
@@ -2700,7 +2718,7 @@ module Aws::CodePipeline
2700
2718
  # @return [String]
2701
2719
  #
2702
2720
  # @!attribute [rw] role_arn
2703
- # The Amazon Resource Name (ARN) for AWS CodePipeline to use to either
2721
+ # The Amazon Resource Name (ARN) for CodePipeline to use to either
2704
2722
  # perform actions with no `actionRoleArn`, or to use to assume roles
2705
2723
  # for actions with an `actionRoleArn`.
2706
2724
  # @return [String]
@@ -2717,9 +2735,9 @@ module Aws::CodePipeline
2717
2735
  # @return [Types::ArtifactStore]
2718
2736
  #
2719
2737
  # @!attribute [rw] artifact_stores
2720
- # A mapping of `artifactStore` objects and their corresponding AWS
2721
- # Regions. There must be an artifact store for the pipeline Region and
2722
- # for each cross-region action in the pipeline.
2738
+ # A mapping of `artifactStore` objects and their corresponding Amazon
2739
+ # Web Services Regions. There must be an artifact store for the
2740
+ # pipeline Region and for each cross-region action in the pipeline.
2723
2741
  #
2724
2742
  # <note markdown="1"> You must include either `artifactStore` or `artifactStores` in your
2725
2743
  # pipeline, but you cannot use both. If you create a cross-region
@@ -2928,12 +2946,27 @@ module Aws::CodePipeline
2928
2946
  # format.
2929
2947
  # @return [Time]
2930
2948
  #
2949
+ # @!attribute [rw] polling_disabled_at
2950
+ # The date and time that polling for source changes (periodic checks)
2951
+ # was stopped for the pipeline, in timestamp format. You can migrate
2952
+ # (update) a polling pipeline to use event-based change detection. For
2953
+ # example, for a pipeline with a CodeCommit source, we recommend you
2954
+ # migrate (update) your pipeline to use CloudWatch Events. To learn
2955
+ # more, see [Migrate polling pipelines to use event-based change
2956
+ # detection][1] in the CodePipeline User Guide.
2957
+ #
2958
+ #
2959
+ #
2960
+ # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/update-change-detection.html
2961
+ # @return [Time]
2962
+ #
2931
2963
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PipelineMetadata AWS API Documentation
2932
2964
  #
2933
2965
  class PipelineMetadata < Struct.new(
2934
2966
  :pipeline_arn,
2935
2967
  :created,
2936
- :updated)
2968
+ :updated,
2969
+ :polling_disabled_at)
2937
2970
  SENSITIVE = []
2938
2971
  include Aws::Structure
2939
2972
  end
@@ -3197,12 +3230,12 @@ module Aws::CodePipeline
3197
3230
  # @return [Types::CurrentRevision]
3198
3231
  #
3199
3232
  # @!attribute [rw] continuation_token
3200
- # A token generated by a job worker, such as an AWS CodeDeploy
3201
- # deployment ID, that a successful job provides to identify a custom
3202
- # action in progress. Future jobs use this token to identify the
3203
- # running instance of the action. It can be reused to return more
3204
- # information about the progress of the custom action. When the action
3205
- # is complete, no continuation token should be supplied.
3233
+ # A token generated by a job worker, such as a CodeDeploy deployment
3234
+ # ID, that a successful job provides to identify a custom action in
3235
+ # progress. Future jobs use this token to identify the running
3236
+ # instance of the action. It can be reused to return more information
3237
+ # about the progress of the custom action. When the action is
3238
+ # complete, no continuation token should be supplied.
3206
3239
  # @return [String]
3207
3240
  #
3208
3241
  # @!attribute [rw] execution_details
@@ -3274,12 +3307,12 @@ module Aws::CodePipeline
3274
3307
  # @return [Types::CurrentRevision]
3275
3308
  #
3276
3309
  # @!attribute [rw] continuation_token
3277
- # A token generated by a job worker, such as an AWS CodeDeploy
3278
- # deployment ID, that a successful job provides to identify a partner
3279
- # action in progress. Future jobs use this token to identify the
3280
- # running instance of the action. It can be reused to return more
3281
- # information about the progress of the partner action. When the
3282
- # action is complete, no continuation token should be supplied.
3310
+ # A token generated by a job worker, such as a CodeDeploy deployment
3311
+ # ID, that a successful job provides to identify a partner action in
3312
+ # progress. Future jobs use this token to identify the running
3313
+ # instance of the action. It can be reused to return more information
3314
+ # about the progress of the partner action. When the action is
3315
+ # complete, no continuation token should be supplied.
3283
3316
  # @return [String]
3284
3317
  #
3285
3318
  # @!attribute [rw] execution_details
@@ -3469,7 +3502,7 @@ module Aws::CodePipeline
3469
3502
  #
3470
3503
  # @!attribute [rw] revision_summary
3471
3504
  # Summary information about the most recent revision of the artifact.
3472
- # For GitHub and AWS CodeCommit repositories, the commit message. For
3505
+ # For GitHub and CodeCommit repositories, the commit message. For
3473
3506
  # Amazon S3 buckets or actions, the user-provided content of a
3474
3507
  # `codepipeline-artifact-revision-summary` key specified in the object
3475
3508
  # metadata.
@@ -3477,7 +3510,7 @@ module Aws::CodePipeline
3477
3510
  #
3478
3511
  # @!attribute [rw] revision_url
3479
3512
  # The commit ID for the artifact revision. For artifacts stored in
3480
- # GitHub or AWS CodeCommit repositories, the commit ID is linked to a
3513
+ # GitHub or CodeCommit repositories, the commit ID is linked to a
3481
3514
  # commit details page.
3482
3515
  # @return [String]
3483
3516
  #
@@ -3746,7 +3779,7 @@ module Aws::CodePipeline
3746
3779
  #
3747
3780
  class TagResourceOutput < Aws::EmptyStructure; end
3748
3781
 
3749
- # A response to a `PollForThirdPartyJobs` request returned by AWS
3782
+ # A response to a `PollForThirdPartyJobs` request returned by
3750
3783
  # CodePipeline when there is a job to be worked on by a partner action.
3751
3784
  #
3752
3785
  # @!attribute [rw] client_id
@@ -3756,7 +3789,7 @@ module Aws::CodePipeline
3756
3789
  # @return [String]
3757
3790
  #
3758
3791
  # @!attribute [rw] job_id
3759
- # The identifier used to identify the job in AWS CodePipeline.
3792
+ # The identifier used to identify the job in CodePipeline.
3760
3793
  # @return [String]
3761
3794
  #
3762
3795
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ThirdPartyJob AWS API Documentation
@@ -3802,22 +3835,23 @@ module Aws::CodePipeline
3802
3835
  # @return [Array<Types::Artifact>]
3803
3836
  #
3804
3837
  # @!attribute [rw] artifact_credentials
3805
- # Represents an AWS session credentials object. These credentials are
3806
- # temporary credentials that are issued by AWS Secure Token Service
3807
- # (STS). They can be used to access input and output artifacts in the
3808
- # S3 bucket used to store artifact for the pipeline in AWS
3809
- # CodePipeline.
3838
+ # Represents an Amazon Web Services session credentials object. These
3839
+ # credentials are temporary credentials that are issued by Amazon Web
3840
+ # Services Secure Token Service (STS). They can be used to access
3841
+ # input and output artifacts in the S3 bucket used to store artifact
3842
+ # for the pipeline in CodePipeline.
3810
3843
  # @return [Types::AWSSessionCredentials]
3811
3844
  #
3812
3845
  # @!attribute [rw] continuation_token
3813
- # A system-generated token, such as a AWS CodeDeploy deployment ID,
3814
- # that a job requires to continue the job asynchronously.
3846
+ # A system-generated token, such as a CodeDeploy deployment ID, that a
3847
+ # job requires to continue the job asynchronously.
3815
3848
  # @return [String]
3816
3849
  #
3817
3850
  # @!attribute [rw] encryption_key
3818
3851
  # The encryption key used to encrypt and decrypt data in the artifact
3819
- # store for the pipeline, such as an AWS Key Management Service (AWS
3820
- # KMS) key. This is optional and might not be present.
3852
+ # store for the pipeline, such as an Amazon Web Services Key
3853
+ # Management Service (Amazon Web Services KMS) key. This is optional
3854
+ # and might not be present.
3821
3855
  # @return [Types::EncryptionKey]
3822
3856
  #
3823
3857
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ThirdPartyJobData AWS API Documentation
@@ -3839,7 +3873,7 @@ module Aws::CodePipeline
3839
3873
  # request.
3840
3874
  #
3841
3875
  # @!attribute [rw] id
3842
- # The identifier used to identify the job details in AWS CodePipeline.
3876
+ # The identifier used to identify the job details in CodePipeline.
3843
3877
  # @return [String]
3844
3878
  #
3845
3879
  # @!attribute [rw] data
@@ -3847,9 +3881,9 @@ module Aws::CodePipeline
3847
3881
  # @return [Types::ThirdPartyJobData]
3848
3882
  #
3849
3883
  # @!attribute [rw] nonce
3850
- # A system-generated random number that AWS CodePipeline uses to
3851
- # ensure that the job is being worked on by only one job worker. Use
3852
- # this number in an AcknowledgeThirdPartyJob request.
3884
+ # A system-generated random number that CodePipeline uses to ensure
3885
+ # that the job is being worked on by only one job worker. Use this
3886
+ # number in an AcknowledgeThirdPartyJob request.
3853
3887
  # @return [String]
3854
3888
  #
3855
3889
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ThirdPartyJobDetails AWS API Documentation
@@ -4082,8 +4116,8 @@ module Aws::CodePipeline
4082
4116
  # configuration key with curly brackets. For example, if the value
4083
4117
  # supplied here is "refs/heads/\\\{Branch\\}" and the target action
4084
4118
  # has an action configuration property called "Branch" with a value
4085
- # of "master", the `MatchEquals` value is evaluated as
4086
- # "refs/heads/master". For a list of action configuration properties
4119
+ # of "main", the `MatchEquals` value is evaluated as
4120
+ # "refs/heads/main". For a list of action configuration properties
4087
4121
  # for built-in action types, see [Pipeline Structure Reference Action
4088
4122
  # Requirements][1].
4089
4123
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-codepipeline/customizations'
52
52
  # @!group service
53
53
  module Aws::CodePipeline
54
54
 
55
- GEM_VERSION = '1.55.0'
55
+ GEM_VERSION = '1.56.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codepipeline
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.55.0
4
+ version: 1.56.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-18 00:00:00.000000000 Z
11
+ date: 2023-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core