aws-sdk-cloudformation 1.77.0 → 1.79.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -113,6 +113,16 @@ module Aws::CloudFormation
113
113
  include Aws::Structure
114
114
  end
115
115
 
116
+ # @api private
117
+ #
118
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ActivateOrganizationsAccessInput AWS API Documentation
119
+ #
120
+ class ActivateOrganizationsAccessInput < Aws::EmptyStructure; end
121
+
122
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ActivateOrganizationsAccessOutput AWS API Documentation
123
+ #
124
+ class ActivateOrganizationsAccessOutput < Aws::EmptyStructure; end
125
+
116
126
  # @!attribute [rw] type
117
127
  # The extension type.
118
128
  #
@@ -143,19 +153,19 @@ module Aws::CloudFormation
143
153
  #
144
154
  # @!attribute [rw] type_name_alias
145
155
  # An alias to assign to the public extension, in this account and
146
- # region. If you specify an alias for the extension, CloudFormation
156
+ # Region. If you specify an alias for the extension, CloudFormation
147
157
  # treats the alias as the extension type name within this account and
148
- # region. You must use the alias to refer to the extension in your
158
+ # Region. You must use the alias to refer to the extension in your
149
159
  # templates, API calls, and CloudFormation console.
150
160
  #
151
- # An extension alias must be unique within a given account and region.
161
+ # An extension alias must be unique within a given account and Region.
152
162
  # You can activate the same public resource multiple times in the same
153
- # account and region, using different type name aliases.
163
+ # account and Region, using different type name aliases.
154
164
  # @return [String]
155
165
  #
156
166
  # @!attribute [rw] auto_update
157
167
  # Whether to automatically update the extension in this account and
158
- # region when a new *minor* version is published by the extension
168
+ # Region when a new *minor* version is published by the extension
159
169
  # publisher. Major versions released by the publisher must be manually
160
170
  # updated.
161
171
  #
@@ -210,7 +220,7 @@ module Aws::CloudFormation
210
220
 
211
221
  # @!attribute [rw] arn
212
222
  # The Amazon Resource Name (ARN) of the activated extension, in this
213
- # account and region.
223
+ # account and Region.
214
224
  # @return [String]
215
225
  #
216
226
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ActivateTypeOutput AWS API Documentation
@@ -333,6 +343,19 @@ module Aws::CloudFormation
333
343
  # The input for the CancelUpdateStack action.
334
344
  #
335
345
  # @!attribute [rw] stack_name
346
+ # <note markdown="1"> If you don't pass a parameter to `StackName`, the API returns a
347
+ # response that describes all resources in the account.
348
+ #
349
+ # The IAM policy below can be added to IAM policies when you want to
350
+ # limit resource-level permissions and avoid returning a response when
351
+ # no parameter is sent in the request:
352
+ #
353
+ # `\{ "Version": "2012-10-17", "Statement": [\{ "Effect": "Deny",
354
+ # "Action": "cloudformation:DescribeStacks", "NotResource":
355
+ # "arn:aws:cloudformation:*:*:stack/*/*" \}] \}`
356
+ #
357
+ # </note>
358
+ #
336
359
  # The name or the unique stack ID that's associated with the stack.
337
360
  # @return [String]
338
361
  #
@@ -1685,8 +1708,18 @@ module Aws::CloudFormation
1685
1708
  #
1686
1709
  class CreatedButModifiedException < Aws::EmptyStructure; end
1687
1710
 
1711
+ # @api private
1712
+ #
1713
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeactivateOrganizationsAccessInput AWS API Documentation
1714
+ #
1715
+ class DeactivateOrganizationsAccessInput < Aws::EmptyStructure; end
1716
+
1717
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeactivateOrganizationsAccessOutput AWS API Documentation
1718
+ #
1719
+ class DeactivateOrganizationsAccessOutput < Aws::EmptyStructure; end
1720
+
1688
1721
  # @!attribute [rw] type_name
1689
- # The type name of the extension, in this account and region. If you
1722
+ # The type name of the extension, in this account and Region. If you
1690
1723
  # specified a type name alias when enabling the extension, use the
1691
1724
  # type name alias.
1692
1725
  #
@@ -1703,7 +1736,7 @@ module Aws::CloudFormation
1703
1736
  #
1704
1737
  # @!attribute [rw] arn
1705
1738
  # The Amazon Resource Name (ARN) for the extension, in this account
1706
- # and region.
1739
+ # and Region.
1707
1740
  #
1708
1741
  # Conditional: You must specify either `Arn`, or `TypeName` and
1709
1742
  # `Type`.
@@ -2330,6 +2363,48 @@ module Aws::CloudFormation
2330
2363
  include Aws::Structure
2331
2364
  end
2332
2365
 
2366
+ # @!attribute [rw] call_as
2367
+ # \[Service-managed permissions\] Specifies whether you are acting as
2368
+ # an account administrator in the organization's management account
2369
+ # or as a delegated administrator in a member account.
2370
+ #
2371
+ # By default, `SELF` is specified.
2372
+ #
2373
+ # * If you are signed in to the management account, specify `SELF`.
2374
+ #
2375
+ # * If you are signed in to a delegated administrator account, specify
2376
+ # `DELEGATED_ADMIN`.
2377
+ #
2378
+ # Your Amazon Web Services account must be registered as a delegated
2379
+ # administrator in the management account. For more information, see
2380
+ # [Register a delegated administrator][1] in the *CloudFormation
2381
+ # User Guide*.
2382
+ #
2383
+ #
2384
+ #
2385
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
2386
+ # @return [String]
2387
+ #
2388
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeOrganizationsAccessInput AWS API Documentation
2389
+ #
2390
+ class DescribeOrganizationsAccessInput < Struct.new(
2391
+ :call_as)
2392
+ SENSITIVE = []
2393
+ include Aws::Structure
2394
+ end
2395
+
2396
+ # @!attribute [rw] status
2397
+ # Presents the status of the `OrganizationAccess`.
2398
+ # @return [String]
2399
+ #
2400
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeOrganizationsAccessOutput AWS API Documentation
2401
+ #
2402
+ class DescribeOrganizationsAccessOutput < Struct.new(
2403
+ :status)
2404
+ SENSITIVE = []
2405
+ include Aws::Structure
2406
+ end
2407
+
2333
2408
  # @!attribute [rw] publisher_id
2334
2409
  # The ID of the extension publisher.
2335
2410
  #
@@ -2873,6 +2948,21 @@ module Aws::CloudFormation
2873
2948
  # The input for DescribeStacks action.
2874
2949
  #
2875
2950
  # @!attribute [rw] stack_name
2951
+ # <note markdown="1"> If you don't pass a parameter to `StackName`, the API returns a
2952
+ # response that describes all resources in the account. This requires
2953
+ # `ListStacks` and `DescribeStacks` permissions.
2954
+ #
2955
+ # The IAM policy below can be added to IAM policies when you want to
2956
+ # limit resource-level permissions and avoid returning a response when
2957
+ # no parameter is sent in the request:
2958
+ #
2959
+ # \\\{ "Version": "2012-10-17", "Statement": \[\\\{ "Effect":
2960
+ # "Deny", "Action": "cloudformation:DescribeStacks",
2961
+ # "NotResource": "arn:aws:cloudformation:*:*:stack/*/*" \\}\]
2962
+ # \\}
2963
+ #
2964
+ # </note>
2965
+ #
2876
2966
  # The name or the unique stack ID that's associated with the stack,
2877
2967
  # which aren't always interchangeable:
2878
2968
  #
@@ -3199,7 +3289,7 @@ module Aws::CloudFormation
3199
3289
  #
3200
3290
  # @!attribute [rw] configuration_schema
3201
3291
  # A JSON string that represent the current configuration data for the
3202
- # extension in this account and region.
3292
+ # extension in this account and Region.
3203
3293
  #
3204
3294
  # To set the configuration data for an extension, use
3205
3295
  # [SetTypeConfiguration][1]. For more information, see [Configuring
@@ -3222,11 +3312,11 @@ module Aws::CloudFormation
3222
3312
  #
3223
3313
  # @!attribute [rw] original_type_name
3224
3314
  # For public extensions that have been activated for this account and
3225
- # region, the type name of the public extension.
3315
+ # Region, the type name of the public extension.
3226
3316
  #
3227
3317
  # If you specified a `TypeNameAlias` when enabling the extension in
3228
- # this account and region, CloudFormation treats that alias as the
3229
- # extension's type name within the account and region, not the type
3318
+ # this account and Region, CloudFormation treats that alias as the
3319
+ # extension's type name within the account and Region, not the type
3230
3320
  # name of the public extension. For more information, see [Specifying
3231
3321
  # aliases to refer to extensions][1] in the *CloudFormation User
3232
3322
  # Guide*.
@@ -3238,7 +3328,7 @@ module Aws::CloudFormation
3238
3328
  #
3239
3329
  # @!attribute [rw] original_type_arn
3240
3330
  # For public extensions that have been activated for this account and
3241
- # region, the Amazon Resource Name (ARN) of the public extension.
3331
+ # Region, the Amazon Resource Name (ARN) of the public extension.
3242
3332
  # @return [String]
3243
3333
  #
3244
3334
  # @!attribute [rw] public_version_number
@@ -3260,7 +3350,7 @@ module Aws::CloudFormation
3260
3350
  # @return [String]
3261
3351
  #
3262
3352
  # @!attribute [rw] is_activated
3263
- # Whether the extension is activated in the account and region.
3353
+ # Whether the extension is activated in the account and Region.
3264
3354
  #
3265
3355
  # This only applies to public third-party extensions. For all other
3266
3356
  # extensions, CloudFormation returns `null`.
@@ -3268,12 +3358,15 @@ module Aws::CloudFormation
3268
3358
  #
3269
3359
  # @!attribute [rw] auto_update
3270
3360
  # Whether CloudFormation automatically updates the extension in this
3271
- # account and region when a new *minor* version is published by the
3361
+ # account and Region when a new *minor* version is published by the
3272
3362
  # extension publisher. Major versions released by the publisher must
3273
3363
  # be manually updated. For more information, see [Activating public
3274
- # extensions for use in your
3275
- # account](AWSCloudFormation/latest/UserGuide/registry-public.html#registry-public-enable)
3276
- # in the *CloudFormation User Guide*.
3364
+ # extensions for use in your account][1] in the *CloudFormation User
3365
+ # Guide*.
3366
+ #
3367
+ #
3368
+ #
3369
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-public.html#registry-public-enable
3277
3370
  # @return [Boolean]
3278
3371
  #
3279
3372
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeTypeOutput AWS API Documentation
@@ -4750,13 +4843,13 @@ module Aws::CloudFormation
4750
4843
  # Valid values include:
4751
4844
  #
4752
4845
  # * `PRIVATE`: Extensions that are visible and usable within this
4753
- # account and region. This includes:
4846
+ # account and Region. This includes:
4754
4847
  #
4755
4848
  # * Private extensions you have registered in this account and
4756
- # region.
4849
+ # Region.
4757
4850
  #
4758
4851
  # * Public extensions that you have activated in this account and
4759
- # region.
4852
+ # Region.
4760
4853
  #
4761
4854
  # * `PUBLIC`: Extensions that are publicly visible and available to be
4762
4855
  # activated within any Amazon Web Services account. This includes
@@ -4921,9 +5014,12 @@ module Aws::CloudFormation
4921
5014
  # stack template.
4922
5015
  #
4923
5016
  # For more information about modules, see [Using modules to encapsulate
4924
- # and reuse resource
4925
- # configurations](AWSCloudFormation/latest/UserGuide/modules.html) in
4926
- # the *CloudFormation User Guide*.
5017
+ # and reuse resource configurations][1] in the *CloudFormation User
5018
+ # Guide*.
5019
+ #
5020
+ #
5021
+ #
5022
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/modules.html
4927
5023
  #
4928
5024
  # @!attribute [rw] type_hierarchy
4929
5025
  # A concatenated list of the module type or types containing the
@@ -4947,9 +5043,12 @@ module Aws::CloudFormation
4947
5043
  #
4948
5044
  # `moduleA/moduleB`
4949
5045
  #
4950
- # For more information, see [Referencing resources in a
4951
- # module](AWSCloudFormation/latest/UserGuide/modules.html#module-ref-resources)
4952
- # in the *CloudFormation User Guide*.
5046
+ # For more information, see [Referencing resources in a module][1] in
5047
+ # the *CloudFormation User Guide*.
5048
+ #
5049
+ #
5050
+ #
5051
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/modules.html#module-ref-resources
4953
5052
  # @return [String]
4954
5053
  #
4955
5054
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ModuleInfo AWS API Documentation
@@ -5469,9 +5568,7 @@ module Aws::CloudFormation
5469
5568
  # must contain a trust relationship with the CloudFormation service
5470
5569
  # principle (`resources.cloudformation.amazonaws.com`). For more
5471
5570
  # information about adding trust relationships, see [Modifying a role
5472
- # trust
5473
- # policy](IAM/latest/UserGuide/roles-managingrole-editing-console.html#roles-managingrole_edit-trust-policy)
5474
- # in the *Identity and Access Management User Guide*.
5571
+ # trust policy][1] in the *Identity and Access Management User Guide*.
5475
5572
  #
5476
5573
  # If your extension calls Amazon Web Services APIs in any of its
5477
5574
  # handlers, you must create an <i> <a
@@ -5483,6 +5580,10 @@ module Aws::CloudFormation
5483
5580
  # create a temporary session token, which it then passes to the
5484
5581
  # resource type handler, thereby supplying your resource type with the
5485
5582
  # appropriate credentials.
5583
+ #
5584
+ #
5585
+ #
5586
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/roles-managingrole-editing-console.html#roles-managingrole_edit-trust-policy
5486
5587
  # @return [String]
5487
5588
  #
5488
5589
  # @!attribute [rw] client_request_token
@@ -5535,9 +5636,9 @@ module Aws::CloudFormation
5535
5636
  #
5536
5637
  # @!attribute [rw] type_name_alias
5537
5638
  # An alias assigned to the public extension, in this account and
5538
- # region. If you specify an alias for the extension, CloudFormation
5639
+ # Region. If you specify an alias for the extension, CloudFormation
5539
5640
  # treats the alias as the extension type name within this account and
5540
- # region. You must use the alias to refer to the extension in your
5641
+ # Region. You must use the alias to refer to the extension in your
5541
5642
  # templates, API calls, and CloudFormation console.
5542
5643
  # @return [String]
5543
5644
  #
@@ -5545,8 +5646,8 @@ module Aws::CloudFormation
5545
5646
  # The type name of the public extension.
5546
5647
  #
5547
5648
  # If you specified a `TypeNameAlias` when enabling the extension in
5548
- # this account and region, CloudFormation treats that alias as the
5549
- # extension's type name within the account and region, not the type
5649
+ # this account and Region, CloudFormation treats that alias as the
5650
+ # extension's type name within the account and Region, not the type
5550
5651
  # name of the public extension. For more information, see [Specifying
5551
5652
  # aliases to refer to extensions][1] in the *CloudFormation User
5552
5653
  # Guide*.
@@ -6015,12 +6116,12 @@ module Aws::CloudFormation
6015
6116
 
6016
6117
  # @!attribute [rw] type_arn
6017
6118
  # The Amazon Resource Name (ARN) for the extension, in this account
6018
- # and region.
6119
+ # and Region.
6019
6120
  #
6020
6121
  # For public extensions, this will be the ARN assigned when you
6021
- # [activate the type][1] in this account and region. For private
6122
+ # [activate the type][1] in this account and Region. For private
6022
6123
  # extensions, this will be the ARN assigned when you [register the
6023
- # type][2] in this account and region.
6124
+ # type][2] in this account and Region.
6024
6125
  #
6025
6126
  # Do not include the extension versions suffix at the end of the ARN.
6026
6127
  # You can set the configuration for an extension, but not for a
@@ -6034,18 +6135,18 @@ module Aws::CloudFormation
6034
6135
  #
6035
6136
  # @!attribute [rw] configuration
6036
6137
  # The configuration data for the extension, in this account and
6037
- # region.
6138
+ # Region.
6038
6139
  #
6039
6140
  # The configuration data must be formatted as JSON, and validate
6040
6141
  # against the schema returned in the `ConfigurationSchema` response
6041
- # element of
6042
- # [API\_DescribeType](AWSCloudFormation/latest/APIReference/API_DescribeType.html).
6043
- # For more information, see [Defining account-level configuration data
6044
- # for an extension][1] in the *CloudFormation CLI User Guide*.
6142
+ # element of [DescribeType][1]. For more information, see [Defining
6143
+ # account-level configuration data for an extension][2] in the
6144
+ # *CloudFormation CLI User Guide*.
6045
6145
  #
6046
6146
  #
6047
6147
  #
6048
- # [1]: https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-model.html#resource-type-howto-configuration
6148
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html
6149
+ # [2]: https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-model.html#resource-type-howto-configuration
6049
6150
  # @return [String]
6050
6151
  #
6051
6152
  # @!attribute [rw] configuration_alias
@@ -6083,7 +6184,7 @@ module Aws::CloudFormation
6083
6184
 
6084
6185
  # @!attribute [rw] configuration_arn
6085
6186
  # The Amazon Resource Name (ARN) for the configuration data, in this
6086
- # account and region.
6187
+ # account and Region.
6087
6188
  #
6088
6189
  # Conditional: You must specify `ConfigurationArn`, or `Type` and
6089
6190
  # `TypeName`.
@@ -6305,10 +6406,10 @@ module Aws::CloudFormation
6305
6406
  #
6306
6407
  # @!attribute [rw] drift_information
6307
6408
  # Information about whether a stack's actual configuration differs,
6308
- # or has *drifted*, from it's expected configuration, as defined in
6309
- # the stack template and any values specified as template parameters.
6310
- # For more information, see [Detecting Unregulated Configuration
6311
- # Changes to Stacks and Resources][1].
6409
+ # or has *drifted*, from its expected configuration, as defined in the
6410
+ # stack template and any values specified as template parameters. For
6411
+ # more information, see [Detecting Unregulated Configuration Changes
6412
+ # to Stacks and Resources][1].
6312
6413
  #
6313
6414
  #
6314
6415
  #
@@ -7410,6 +7511,9 @@ module Aws::CloudFormation
7410
7511
  # @return [Types::ManagedExecution]
7411
7512
  #
7412
7513
  # @!attribute [rw] regions
7514
+ # Returns a list of all Amazon Web Services Regions the given StackSet
7515
+ # has stack instances deployed in. The Amazon Web Services Regions
7516
+ # list output is in no particular order.
7413
7517
  # @return [Array<String>]
7414
7518
  #
7415
7519
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSet AWS API Documentation
@@ -8154,7 +8258,7 @@ module Aws::CloudFormation
8154
8258
  #
8155
8259
  # @!attribute [rw] drift_information
8156
8260
  # Summarizes information about whether a stack's actual configuration
8157
- # differs, or has *drifted*, from it's expected configuration, as
8261
+ # differs, or has *drifted*, from its expected configuration, as
8158
8262
  # defined in the stack template and any values specified as template
8159
8263
  # parameters. For more information, see [Detecting Unregulated
8160
8264
  # Configuration Changes to Stacks and Resources][1].
@@ -8313,7 +8417,7 @@ module Aws::CloudFormation
8313
8417
  # and `Type`.
8314
8418
  #
8315
8419
  # If you don't specify a version, CloudFormation uses the default
8316
- # version of the extension in this account and region for testing.
8420
+ # version of the extension in this account and Region for testing.
8317
8421
  # @return [String]
8318
8422
  #
8319
8423
  # @!attribute [rw] log_delivery_bucket
@@ -8372,7 +8476,7 @@ module Aws::CloudFormation
8372
8476
  class TokenAlreadyExistsException < Aws::EmptyStructure; end
8373
8477
 
8374
8478
  # Detailed information concerning the specification of a CloudFormation
8375
- # extension in a given account and region.
8479
+ # extension in a given account and Region.
8376
8480
  #
8377
8481
  # For more information, see [Configuring extensions at the account
8378
8482
  # level][1] in the *CloudFormation User Guide*.
@@ -8383,7 +8487,7 @@ module Aws::CloudFormation
8383
8487
  #
8384
8488
  # @!attribute [rw] arn
8385
8489
  # The Amazon Resource Name (ARN) for the configuration data, in this
8386
- # account and region.
8490
+ # account and Region.
8387
8491
  # @return [String]
8388
8492
  #
8389
8493
  # @!attribute [rw] alias
@@ -8393,7 +8497,7 @@ module Aws::CloudFormation
8393
8497
  #
8394
8498
  # @!attribute [rw] configuration
8395
8499
  # A JSON string specifying the configuration data for the extension,
8396
- # in this account and region.
8500
+ # in this account and Region.
8397
8501
  #
8398
8502
  # If a configuration hasn't been set for a specified extension,
8399
8503
  # CloudFormation returns `\{\}`.
@@ -8408,12 +8512,12 @@ module Aws::CloudFormation
8408
8512
  #
8409
8513
  # @!attribute [rw] type_arn
8410
8514
  # The Amazon Resource Name (ARN) for the extension, in this account
8411
- # and region.
8515
+ # and Region.
8412
8516
  #
8413
8517
  # For public extensions, this will be the ARN assigned when you
8414
- # [activate the type][1] in this account and region. For private
8518
+ # [activate the type][1] in this account and Region. For private
8415
8519
  # extensions, this will be the ARN assigned when you [register the
8416
- # type][2] in this account and region.
8520
+ # type][2] in this account and Region.
8417
8521
  #
8418
8522
  #
8419
8523
  #
@@ -8449,12 +8553,12 @@ module Aws::CloudFormation
8449
8553
  #
8450
8554
  # @!attribute [rw] type_arn
8451
8555
  # The Amazon Resource Name (ARN) for the extension, in this account
8452
- # and region.
8556
+ # and Region.
8453
8557
  #
8454
8558
  # For public extensions, this will be the ARN assigned when you
8455
- # [activate the type][1] in this account and region. For private
8559
+ # [activate the type][1] in this account and Region. For private
8456
8560
  # extensions, this will be the ARN assigned when you [register the
8457
- # type][2] in this account and region.
8561
+ # type][2] in this account and Region.
8458
8562
  #
8459
8563
  #
8460
8564
  #
@@ -8469,7 +8573,7 @@ module Aws::CloudFormation
8469
8573
  #
8470
8574
  # @!attribute [rw] type_configuration_arn
8471
8575
  # The Amazon Resource Name (ARN) for the configuration, in this
8472
- # account and region.
8576
+ # account and Region.
8473
8577
  # @return [String]
8474
8578
  #
8475
8579
  # @!attribute [rw] type
@@ -8504,10 +8608,10 @@ module Aws::CloudFormation
8504
8608
  # The category of extensions to return.
8505
8609
  #
8506
8610
  # * `REGISTERED`: Private extensions that have been registered for
8507
- # this account and region.
8611
+ # this account and Region.
8508
8612
  #
8509
8613
  # * `ACTIVATED`: Public extensions that have been activated for this
8510
- # account and region.
8614
+ # account and Region.
8511
8615
  #
8512
8616
  # * `THIRD_PARTY`: Extensions available for use from publishers other
8513
8617
  # than Amazon. This includes:
@@ -8559,7 +8663,7 @@ module Aws::CloudFormation
8559
8663
  # The name of the extension.
8560
8664
  #
8561
8665
  # If you specified a `TypeNameAlias` when you [activate this
8562
- # extension][1] in your account and region, CloudFormation considers
8666
+ # extension][1] in your account and Region, CloudFormation considers
8563
8667
  # that alias as the type name.
8564
8668
  #
8565
8669
  #
@@ -8619,11 +8723,11 @@ module Aws::CloudFormation
8619
8723
  #
8620
8724
  # @!attribute [rw] original_type_name
8621
8725
  # For public extensions that have been activated for this account and
8622
- # region, the type name of the public extension.
8726
+ # Region, the type name of the public extension.
8623
8727
  #
8624
8728
  # If you specified a `TypeNameAlias` when enabling the extension in
8625
- # this account and region, CloudFormation treats that alias as the
8626
- # extension's type name within the account and region, not the type
8729
+ # this account and Region, CloudFormation treats that alias as the
8730
+ # extension's type name within the account and Region, not the type
8627
8731
  # name of the public extension. For more information, see [Specifying
8628
8732
  # aliases to refer to extensions][1] in the *CloudFormation User
8629
8733
  # Guide*.
@@ -8635,12 +8739,12 @@ module Aws::CloudFormation
8635
8739
  #
8636
8740
  # @!attribute [rw] public_version_number
8637
8741
  # For public extensions that have been activated for this account and
8638
- # region, the version of the public extension to be used for
8742
+ # Region, the version of the public extension to be used for
8639
8743
  # CloudFormation operations in this account and Region.
8640
8744
  #
8641
8745
  # How you specified `AutoUpdate` when enabling the extension affects
8642
8746
  # whether CloudFormation automatically updates the extension in this
8643
- # account and region when a new version is released. For more
8747
+ # account and Region when a new version is released. For more
8644
8748
  # information, see [Setting CloudFormation to automatically use new
8645
8749
  # versions of extensions][1] in the *CloudFormation User Guide*.
8646
8750
  #
@@ -8651,13 +8755,13 @@ module Aws::CloudFormation
8651
8755
  #
8652
8756
  # @!attribute [rw] latest_public_version
8653
8757
  # For public extensions that have been activated for this account and
8654
- # region, the latest version of the public extension *that is
8758
+ # Region, the latest version of the public extension *that is
8655
8759
  # available*. For any extensions other than activated third-arty
8656
8760
  # extensions, CloudFormation returns `null`.
8657
8761
  #
8658
8762
  # How you specified `AutoUpdate` when enabling the extension affects
8659
8763
  # whether CloudFormation automatically updates the extension in this
8660
- # account and region when a new version is released. For more
8764
+ # account and Region when a new version is released. For more
8661
8765
  # information, see [Setting CloudFormation to automatically use new
8662
8766
  # versions of extensions][1] in the *CloudFormation User Guide*.
8663
8767
  #
@@ -8684,7 +8788,7 @@ module Aws::CloudFormation
8684
8788
  # @return [String]
8685
8789
  #
8686
8790
  # @!attribute [rw] is_activated
8687
- # Whether the extension is activated for this account and region.
8791
+ # Whether the extension is activated for this account and Region.
8688
8792
  #
8689
8793
  # This applies only to third-party public extensions. Extensions
8690
8794
  # published by Amazon are activated by default.
@@ -8750,14 +8854,14 @@ module Aws::CloudFormation
8750
8854
  #
8751
8855
  # @!attribute [rw] public_version_number
8752
8856
  # For public extensions that have been activated for this account and
8753
- # region, the version of the public extension to be used for
8754
- # CloudFormation operations in this account and region. For any
8857
+ # Region, the version of the public extension to be used for
8858
+ # CloudFormation operations in this account and Region. For any
8755
8859
  # extensions other than activated third-arty extensions,
8756
8860
  # CloudFormation returns `null`.
8757
8861
  #
8758
8862
  # How you specified `AutoUpdate` when enabling the extension affects
8759
8863
  # whether CloudFormation automatically updates the extension in this
8760
- # account and region when a new version is released. For more
8864
+ # account and Region when a new version is released. For more
8761
8865
  # information, see [Setting CloudFormation to automatically use new
8762
8866
  # versions of extensions][1] in the *CloudFormation User Guide*.
8763
8867
  #
@@ -37,7 +37,7 @@ require_relative 'aws-sdk-cloudformation/customizations'
37
37
  # structure.
38
38
  #
39
39
  # cloud_formation = Aws::CloudFormation::Client.new
40
- # resp = cloud_formation.activate_type(params)
40
+ # resp = cloud_formation.activate_organizations_access(params)
41
41
  #
42
42
  # See {Client} for more information.
43
43
  #
@@ -57,6 +57,6 @@ require_relative 'aws-sdk-cloudformation/customizations'
57
57
  # @!group service
58
58
  module Aws::CloudFormation
59
59
 
60
- GEM_VERSION = '1.77.0'
60
+ GEM_VERSION = '1.79.0'
61
61
 
62
62
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudformation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.77.0
4
+ version: 1.79.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-04-06 00:00:00.000000000 Z
11
+ date: 2023-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.165.0
22
+ version: 3.174.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement