aws-sdk-organizations 1.31.0 → 1.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7611bcab4211deaf5bc5f0052c579da3fbc16bd0
4
- data.tar.gz: ebcc58d54ac6890584a5cf72913b881351f8805d
3
+ metadata.gz: c8f7a9486d74efbd1f5f43a67c91c88a05290fb9
4
+ data.tar.gz: 6a0a4e612ad5179b622c2bf0c73e0ab45ccd7151
5
5
  SHA512:
6
- metadata.gz: b33496b61030223ed2c221f5f19c4ba14a41917f2e4f2b84f34c5b64838cacbdc22b069c0ab2e421ac4ab00adc89095fb17599b59c381860da8501de9fd09ffa
7
- data.tar.gz: 6d93e4f35da11348d9956d4c1edbd07f2daa4eaeaa85f1ad213d538ee19660e604d644e277b8da90b3dfa3f1f03af00ee6bfe520072eb605469974bf13b3e544
6
+ metadata.gz: 9c6b56e8e51bc5565a1e7e26750465f22bfee0751bd3c6f7deacdf5a149389677a538925b1274f89c70f11d42ea30a27a6382bc273e4160d9a254c02c91d68a8
7
+ data.tar.gz: cd707784ec8a9b53176865aa5dc0937dc9a411b42e7fe143dd0bf96e79104266c78e16c3c6d9e85dda33a38d6b9df27053ae3cac6f78eda4b889b009eda58cdc
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-organizations/customizations'
42
42
  # @service
43
43
  module Aws::Organizations
44
44
 
45
- GEM_VERSION = '1.31.0'
45
+ GEM_VERSION = '1.32.0'
46
46
 
47
47
  end
@@ -410,28 +410,28 @@ module Aws::Organizations
410
410
  # influence for a policy depends on what you attach the policy to:
411
411
  #
412
412
  # * If you attach an SCP to a root, it affects all accounts in the
413
- # organization
413
+ # organization.
414
414
  #
415
415
  # * If you attach an SCP to an OU, it affects all accounts in that OU
416
- # and in any child OUs
416
+ # and in any child OUs.
417
417
  #
418
418
  # * If you attach the policy directly to an account, it affects only
419
- # that account
419
+ # that account.
420
420
  #
421
421
  # SCPs are JSON policies that specify the maximum permissions for an
422
- # organization or organizational unit (OU). When you attach one SCP to
423
- # a higher level root or OU, and you also attach a different SCP to a
424
- # child OU or to an account, the child policy can further restrict
425
- # only the permissions that pass through the parent filter and are
426
- # available to the child. An SCP that is attached to a child can't
427
- # grant a permission that the paren't hasn't already granted. For
428
- # example, imagine that the parent SCP allows permissions A, B, C, D,
429
- # and E. The child SCP allows C, D, E, F, and G. The result is that
430
- # the accounts affected by the child SCP are allowed to use only C, D,
431
- # and E. They can't use A or B because the child OU filtered them
432
- # out. They also can't use F and G because the parent OU filtered
433
- # them out. They can't be granted back by the child SCP; child SCPs
434
- # can only filter the permissions they receive from the parent SCP.
422
+ # organization or organizational unit (OU). You can attach one SCP to
423
+ # a higher level root or OU, and a different SCP to a child OU or to
424
+ # an account. The child policy can further restrict only the
425
+ # permissions that pass through the parent filter and are available to
426
+ # the child. An SCP that is attached to a child can't grant a
427
+ # permission that the parent hasn't already granted. For example,
428
+ # imagine that the parent SCP allows permissions A, B, C, D, and E.
429
+ # The child SCP allows C, D, E, F, and G. The result is that the
430
+ # accounts affected by the child SCP are allowed to use only C, D, and
431
+ # E. They can't use A or B because the child OU filtered them out.
432
+ # They also can't use F and G because the parent OU filtered them
433
+ # out. They can't be granted back by the child SCP; child SCPs can
434
+ # only filter the permissions they receive from the parent SCP.
435
435
  #
436
436
  # AWS Organizations attaches a default SCP named `"FullAWSAccess` to
437
437
  # every root, OU, and account. This default SCP allows all services
@@ -471,15 +471,15 @@ module Aws::Organizations
471
471
  # The [regex pattern][1] for a target ID string requires one of the
472
472
  # following:
473
473
  #
474
- # * Root: a string that begins with "r-" followed by from 4 to 32
474
+ # * **Root** - A string that begins with "r-" followed by from 4 to 32
475
475
  # lower-case letters or digits.
476
476
  #
477
- # * Account: a string that consists of exactly 12 digits.
477
+ # * **Account** - A string that consists of exactly 12 digits.
478
478
  #
479
- # * Organizational unit (OU): a string that begins with "ou-" followed
480
- # by from 4 to 32 lower-case letters or digits (the ID of the root
481
- # that the OU is in) followed by a second "-" dash and from 8 to 32
482
- # additional lower-case letters or digits.
479
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
480
+ # followed by from 4 to 32 lower-case letters or digits (the ID of the
481
+ # root that the OU is in) followed by a second "-" dash and from 8
482
+ # to 32 additional lower-case letters or digits.
483
483
  #
484
484
  #
485
485
  #
@@ -660,7 +660,7 @@ module Aws::Organizations
660
660
  #
661
661
  # The user who calls the API to create an account must have the
662
662
  # `organizations:CreateAccount` permission. If you enabled all features
663
- # in the organization, AWS Organizations will create the required
663
+ # in the organization, AWS Organizations creates the required
664
664
  # service-linked role named `AWSServiceRoleForOrganizations`. For more
665
665
  # information, see [AWS Organizations and Service-Linked Roles][2] in
666
666
  # the *AWS Organizations User Guide*.
@@ -1080,9 +1080,9 @@ module Aws::Organizations
1080
1080
  #
1081
1081
  # * `ALL`\: In addition to all the features supported by the
1082
1082
  # consolidated billing feature set, the master account can also apply
1083
- # any type of policy to any member account in the organization. For
1084
- # more information, see [All features][2] in the *AWS Organizations
1085
- # User Guide.*
1083
+ # any policy type to any member account in the organization. For more
1084
+ # information, see [All features][2] in the *AWS Organizations User
1085
+ # Guide.*
1086
1086
  #
1087
1087
  #
1088
1088
  #
@@ -1195,13 +1195,13 @@ module Aws::Organizations
1195
1195
  # The [regex pattern][1] for a parent ID string requires one of the
1196
1196
  # following:
1197
1197
  #
1198
- # * Root: a string that begins with "r-" followed by from 4 to 32
1198
+ # * **Root** - A string that begins with "r-" followed by from 4 to 32
1199
1199
  # lower-case letters or digits.
1200
1200
  #
1201
- # * Organizational unit (OU): a string that begins with "ou-" followed
1202
- # by from 4 to 32 lower-case letters or digits (the ID of the root
1203
- # that the OU is in) followed by a second "-" dash and from 8 to 32
1204
- # additional lower-case letters or digits.
1201
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
1202
+ # followed by from 4 to 32 lower-case letters or digits (the ID of the
1203
+ # root that the OU is in) followed by a second "-" dash and from 8
1204
+ # to 32 additional lower-case letters or digits.
1205
1205
  #
1206
1206
  #
1207
1207
  #
@@ -1661,9 +1661,8 @@ module Aws::Organizations
1661
1661
  # can get the ID from the response to an earlier CreateAccount request,
1662
1662
  # or from the ListCreateAccountStatus operation.
1663
1663
  #
1664
- # The [regex pattern][1] for an create account request ID string
1665
- # requires "car-" followed by from 8 to 32 lower-case letters or
1666
- # digits.
1664
+ # The [regex pattern][1] for a create account request ID string requires
1665
+ # "car-" followed by from 8 to 32 lower-case letters or digits.
1667
1666
  #
1668
1667
  #
1669
1668
  #
@@ -2037,7 +2036,7 @@ module Aws::Organizations
2037
2036
  # attached, and specify `"Effect": "Deny"` in the second SCP to override
2038
2037
  # the `"Effect": "Allow"` in the `FullAWSAccess` policy (or any other
2039
2038
  # attached SCP), you're using the authorization strategy of
2040
- # [blacklisting][2].
2039
+ # [blacklisting][2] .
2041
2040
  #
2042
2041
  # This operation can be called only from the organization's master
2043
2042
  # account.
@@ -2066,15 +2065,15 @@ module Aws::Organizations
2066
2065
  # The [regex pattern][1] for a target ID string requires one of the
2067
2066
  # following:
2068
2067
  #
2069
- # * Root: a string that begins with "r-" followed by from 4 to 32
2068
+ # * **Root** - A string that begins with "r-" followed by from 4 to 32
2070
2069
  # lower-case letters or digits.
2071
2070
  #
2072
- # * Account: a string that consists of exactly 12 digits.
2071
+ # * **Account** - A string that consists of exactly 12 digits.
2073
2072
  #
2074
- # * Organizational unit (OU): a string that begins with "ou-" followed
2075
- # by from 4 to 32 lower-case letters or digits (the ID of the root
2076
- # that the OU is in) followed by a second "-" dash and from 8 to 32
2077
- # additional lower-case letters or digits.
2073
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
2074
+ # followed by from 4 to 32 lower-case letters or digits (the ID of the
2075
+ # root that the OU is in) followed by a second "-" dash and from 8
2076
+ # to 32 additional lower-case letters or digits.
2078
2077
  #
2079
2078
  #
2080
2079
  #
@@ -2174,16 +2173,21 @@ module Aws::Organizations
2174
2173
  # any organizational unit (OU) or account in that root. You can undo
2175
2174
  # this by using the EnablePolicyType operation.
2176
2175
  #
2176
+ # This is an asynchronous request that AWS performs in the background.
2177
+ # If you disable a policy for a root, it still appears enabled for the
2178
+ # organization if [all features][1] are enabled for the organization.
2179
+ # AWS recommends that you first use ListRoots to see the status of
2180
+ # policy types for a specified root, and then use this operation.
2181
+ #
2177
2182
  # This operation can be called only from the organization's master
2178
2183
  # account.
2179
2184
  #
2180
- # <note markdown="1"> If you disable a policy type for a root, it still shows as enabled for
2181
- # the organization if all features are enabled in that organization. Use
2182
- # ListRoots to see the status of policy types for a specified root. Use
2183
- # DescribeOrganization to see the status of policy types in the
2184
- # organization.
2185
+ # To view the status of available policy types in the organization, use
2186
+ # DescribeOrganization.
2185
2187
  #
2186
- # </note>
2188
+ #
2189
+ #
2190
+ # [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_org_support-all-features.html
2187
2191
  #
2188
2192
  # @option params [required, String] :root_id
2189
2193
  # The unique identifier (ID) of the root in which you want to disable a
@@ -2408,14 +2412,16 @@ module Aws::Organizations
2408
2412
  # organizational unit (OU), or account in that root. You can undo this
2409
2413
  # by using the DisablePolicyType operation.
2410
2414
  #
2415
+ # This is an asynchronous request that AWS performs in the background.
2416
+ # AWS recommends that you first use ListRoots to see the status of
2417
+ # policy types for a specified root, and then use this operation.
2418
+ #
2411
2419
  # This operation can be called only from the organization's master
2412
2420
  # account.
2413
2421
  #
2414
2422
  # You can enable a policy type in a root only if that policy type is
2415
- # available in the organization. Use DescribeOrganization to view the
2416
- # status of available policy types in the organization.
2417
- #
2418
- # To view the status of policy type in a root, use ListRoots.
2423
+ # available in the organization. To view the status of available policy
2424
+ # types in the organization, use DescribeOrganization.
2419
2425
  #
2420
2426
  # @option params [required, String] :root_id
2421
2427
  # The unique identifier (ID) of the root in which you want to enable a
@@ -3002,13 +3008,13 @@ module Aws::Organizations
3002
3008
  # The [regex pattern][1] for a parent ID string requires one of the
3003
3009
  # following:
3004
3010
  #
3005
- # * Root: a string that begins with "r-" followed by from 4 to 32
3011
+ # * **Root** - A string that begins with "r-" followed by from 4 to 32
3006
3012
  # lower-case letters or digits.
3007
3013
  #
3008
- # * Organizational unit (OU): a string that begins with "ou-" followed
3009
- # by from 4 to 32 lower-case letters or digits (the ID of the root
3010
- # that the OU is in) followed by a second "-" dash and from 8 to 32
3011
- # additional lower-case letters or digits.
3014
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
3015
+ # followed by from 4 to 32 lower-case letters or digits (the ID of the
3016
+ # root that the OU is in) followed by a second "-" dash and from 8
3017
+ # to 32 additional lower-case letters or digits.
3012
3018
  #
3013
3019
  #
3014
3020
  #
@@ -3563,13 +3569,13 @@ module Aws::Organizations
3563
3569
  # The [regex pattern][1] for a parent ID string requires one of the
3564
3570
  # following:
3565
3571
  #
3566
- # * Root: a string that begins with "r-" followed by from 4 to 32
3572
+ # * **Root** - A string that begins with "r-" followed by from 4 to 32
3567
3573
  # lower-case letters or digits.
3568
3574
  #
3569
- # * Organizational unit (OU): a string that begins with "ou-" followed
3570
- # by from 4 to 32 lower-case letters or digits (the ID of the root
3571
- # that the OU is in) followed by a second "-" dash and from 8 to 32
3572
- # additional lower-case letters or digits.
3575
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
3576
+ # followed by from 4 to 32 lower-case letters or digits (the ID of the
3577
+ # root that the OU is in) followed by a second "-" dash and from 8
3578
+ # to 32 additional lower-case letters or digits.
3573
3579
  #
3574
3580
  #
3575
3581
  #
@@ -3675,12 +3681,12 @@ module Aws::Organizations
3675
3681
  # The [regex pattern][1] for a child ID string requires one of the
3676
3682
  # following:
3677
3683
  #
3678
- # * Account: a string that consists of exactly 12 digits.
3684
+ # * **Account** - A string that consists of exactly 12 digits.
3679
3685
  #
3680
- # * Organizational unit (OU): a string that begins with "ou-" followed
3681
- # by from 4 to 32 lower-case letters or digits (the ID of the root
3682
- # that contains the OU) followed by a second "-" dash and from 8 to
3683
- # 32 additional lower-case letters or digits.
3686
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
3687
+ # followed by from 4 to 32 lower-case letters or digits (the ID of the
3688
+ # root that contains the OU) followed by a second "-" dash and from
3689
+ # 8 to 32 additional lower-case letters or digits.
3684
3690
  #
3685
3691
  #
3686
3692
  #
@@ -3881,15 +3887,15 @@ module Aws::Organizations
3881
3887
  # The [regex pattern][1] for a target ID string requires one of the
3882
3888
  # following:
3883
3889
  #
3884
- # * Root: a string that begins with "r-" followed by from 4 to 32
3890
+ # * **Root** - A string that begins with "r-" followed by from 4 to 32
3885
3891
  # lower-case letters or digits.
3886
3892
  #
3887
- # * Account: a string that consists of exactly 12 digits.
3893
+ # * **Account** - A string that consists of exactly 12 digits.
3888
3894
  #
3889
- # * Organizational unit (OU): a string that begins with "ou-" followed
3890
- # by from 4 to 32 lower-case letters or digits (the ID of the root
3891
- # that the OU is in) followed by a second "-" dash and from 8 to 32
3892
- # additional lower-case letters or digits.
3895
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
3896
+ # followed by from 4 to 32 lower-case letters or digits (the ID of the
3897
+ # root that the OU is in) followed by a second "-" dash and from 8
3898
+ # to 32 additional lower-case letters or digits.
3893
3899
  #
3894
3900
  #
3895
3901
  #
@@ -4245,13 +4251,13 @@ module Aws::Organizations
4245
4251
  # The [regex pattern][1] for a parent ID string requires one of the
4246
4252
  # following:
4247
4253
  #
4248
- # * Root: a string that begins with "r-" followed by from 4 to 32
4254
+ # * **Root** - A string that begins with "r-" followed by from 4 to 32
4249
4255
  # lower-case letters or digits.
4250
4256
  #
4251
- # * Organizational unit (OU): a string that begins with "ou-" followed
4252
- # by from 4 to 32 lower-case letters or digits (the ID of the root
4253
- # that the OU is in) followed by a second "-" dash and from 8 to 32
4254
- # additional lower-case letters or digits.
4257
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
4258
+ # followed by from 4 to 32 lower-case letters or digits (the ID of the
4259
+ # root that the OU is in) followed by a second "-" dash and from 8
4260
+ # to 32 additional lower-case letters or digits.
4255
4261
  #
4256
4262
  #
4257
4263
  #
@@ -4264,13 +4270,13 @@ module Aws::Organizations
4264
4270
  # The [regex pattern][1] for a parent ID string requires one of the
4265
4271
  # following:
4266
4272
  #
4267
- # * Root: a string that begins with "r-" followed by from 4 to 32
4273
+ # * **Root** - A string that begins with "r-" followed by from 4 to 32
4268
4274
  # lower-case letters or digits.
4269
4275
  #
4270
- # * Organizational unit (OU): a string that begins with "ou-" followed
4271
- # by from 4 to 32 lower-case letters or digits (the ID of the root
4272
- # that the OU is in) followed by a second "-" dash and from 8 to 32
4273
- # additional lower-case letters or digits.
4276
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
4277
+ # followed by from 4 to 32 lower-case letters or digits (the ID of the
4278
+ # root that the OU is in) followed by a second "-" dash and from 8
4279
+ # to 32 additional lower-case letters or digits.
4274
4280
  #
4275
4281
  #
4276
4282
  #
@@ -4650,7 +4656,7 @@ module Aws::Organizations
4650
4656
  params: params,
4651
4657
  config: config)
4652
4658
  context[:gem_name] = 'aws-sdk-organizations'
4653
- context[:gem_version] = '1.31.0'
4659
+ context[:gem_version] = '1.32.0'
4654
4660
  Seahorse::Client::Request.new(handlers, context)
4655
4661
  end
4656
4662
 
@@ -245,12 +245,12 @@ module Aws::Organizations
245
245
  # The [regex pattern][1] for a target ID string requires one of the
246
246
  # following:
247
247
  #
248
- # * Root: a string that begins with "r-" followed by from 4 to 32
249
- # lower-case letters or digits.
248
+ # * **Root** - A string that begins with "r-" followed by from 4 to
249
+ # 32 lower-case letters or digits.
250
250
  #
251
- # * Account: a string that consists of exactly 12 digits.
251
+ # * **Account** - A string that consists of exactly 12 digits.
252
252
  #
253
- # * Organizational unit (OU): a string that begins with "ou-"
253
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
254
254
  # followed by from 4 to 32 lower-case letters or digits (the ID of
255
255
  # the root that the OU is in) followed by a second "-" dash and
256
256
  # from 8 to 32 additional lower-case letters or digits.
@@ -812,9 +812,9 @@ module Aws::Organizations
812
812
  #
813
813
  # * `ALL`\: In addition to all the features supported by the
814
814
  # consolidated billing feature set, the master account can also
815
- # apply any type of policy to any member account in the
816
- # organization. For more information, see [All features][2] in the
817
- # *AWS Organizations User Guide.*
815
+ # apply any policy type to any member account in the organization.
816
+ # For more information, see [All features][2] in the *AWS
817
+ # Organizations User Guide.*
818
818
  #
819
819
  #
820
820
  #
@@ -856,10 +856,10 @@ module Aws::Organizations
856
856
  # The [regex pattern][1] for a parent ID string requires one of the
857
857
  # following:
858
858
  #
859
- # * Root: a string that begins with "r-" followed by from 4 to 32
860
- # lower-case letters or digits.
859
+ # * **Root** - A string that begins with "r-" followed by from 4 to
860
+ # 32 lower-case letters or digits.
861
861
  #
862
- # * Organizational unit (OU): a string that begins with "ou-"
862
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
863
863
  # followed by from 4 to 32 lower-case letters or digits (the ID of
864
864
  # the root that the OU is in) followed by a second "-" dash and
865
865
  # from 8 to 32 additional lower-case letters or digits.
@@ -1106,7 +1106,7 @@ module Aws::Organizations
1106
1106
  # You can get the ID from the response to an earlier CreateAccount
1107
1107
  # request, or from the ListCreateAccountStatus operation.
1108
1108
  #
1109
- # The [regex pattern][1] for an create account request ID string
1109
+ # The [regex pattern][1] for a create account request ID string
1110
1110
  # requires "car-" followed by from 8 to 32 lower-case letters or
1111
1111
  # digits.
1112
1112
  #
@@ -1304,12 +1304,12 @@ module Aws::Organizations
1304
1304
  # The [regex pattern][1] for a target ID string requires one of the
1305
1305
  # following:
1306
1306
  #
1307
- # * Root: a string that begins with "r-" followed by from 4 to 32
1308
- # lower-case letters or digits.
1307
+ # * **Root** - A string that begins with "r-" followed by from 4 to
1308
+ # 32 lower-case letters or digits.
1309
1309
  #
1310
- # * Account: a string that consists of exactly 12 digits.
1310
+ # * **Account** - A string that consists of exactly 12 digits.
1311
1311
  #
1312
- # * Organizational unit (OU): a string that begins with "ou-"
1312
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
1313
1313
  # followed by from 4 to 32 lower-case letters or digits (the ID of
1314
1314
  # the root that the OU is in) followed by a second "-" dash and
1315
1315
  # from 8 to 32 additional lower-case letters or digits.
@@ -2245,10 +2245,10 @@ module Aws::Organizations
2245
2245
  # The [regex pattern][1] for a parent ID string requires one of the
2246
2246
  # following:
2247
2247
  #
2248
- # * Root: a string that begins with "r-" followed by from 4 to 32
2249
- # lower-case letters or digits.
2248
+ # * **Root** - A string that begins with "r-" followed by from 4 to
2249
+ # 32 lower-case letters or digits.
2250
2250
  #
2251
- # * Organizational unit (OU): a string that begins with "ou-"
2251
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
2252
2252
  # followed by from 4 to 32 lower-case letters or digits (the ID of
2253
2253
  # the root that the OU is in) followed by a second "-" dash and
2254
2254
  # from 8 to 32 additional lower-case letters or digits.
@@ -2540,10 +2540,10 @@ module Aws::Organizations
2540
2540
  # The [regex pattern][1] for a parent ID string requires one of the
2541
2541
  # following:
2542
2542
  #
2543
- # * Root: a string that begins with "r-" followed by from 4 to 32
2544
- # lower-case letters or digits.
2543
+ # * **Root** - A string that begins with "r-" followed by from 4 to
2544
+ # 32 lower-case letters or digits.
2545
2545
  #
2546
- # * Organizational unit (OU): a string that begins with "ou-"
2546
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
2547
2547
  # followed by from 4 to 32 lower-case letters or digits (the ID of
2548
2548
  # the root that the OU is in) followed by a second "-" dash and
2549
2549
  # from 8 to 32 additional lower-case letters or digits.
@@ -2618,9 +2618,9 @@ module Aws::Organizations
2618
2618
  # The [regex pattern][1] for a child ID string requires one of the
2619
2619
  # following:
2620
2620
  #
2621
- # * Account: a string that consists of exactly 12 digits.
2621
+ # * **Account** - A string that consists of exactly 12 digits.
2622
2622
  #
2623
- # * Organizational unit (OU): a string that begins with "ou-"
2623
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
2624
2624
  # followed by from 4 to 32 lower-case letters or digits (the ID of
2625
2625
  # the root that contains the OU) followed by a second "-" dash and
2626
2626
  # from 8 to 32 additional lower-case letters or digits.
@@ -2696,12 +2696,12 @@ module Aws::Organizations
2696
2696
  # The [regex pattern][1] for a target ID string requires one of the
2697
2697
  # following:
2698
2698
  #
2699
- # * Root: a string that begins with "r-" followed by from 4 to 32
2700
- # lower-case letters or digits.
2699
+ # * **Root** - A string that begins with "r-" followed by from 4 to
2700
+ # 32 lower-case letters or digits.
2701
2701
  #
2702
- # * Account: a string that consists of exactly 12 digits.
2702
+ # * **Account** - A string that consists of exactly 12 digits.
2703
2703
  #
2704
- # * Organizational unit (OU): a string that begins with "ou-"
2704
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
2705
2705
  # followed by from 4 to 32 lower-case letters or digits (the ID of
2706
2706
  # the root that the OU is in) followed by a second "-" dash and
2707
2707
  # from 8 to 32 additional lower-case letters or digits.
@@ -3064,10 +3064,10 @@ module Aws::Organizations
3064
3064
  # The [regex pattern][1] for a parent ID string requires one of the
3065
3065
  # following:
3066
3066
  #
3067
- # * Root: a string that begins with "r-" followed by from 4 to 32
3068
- # lower-case letters or digits.
3067
+ # * **Root** - A string that begins with "r-" followed by from 4 to
3068
+ # 32 lower-case letters or digits.
3069
3069
  #
3070
- # * Organizational unit (OU): a string that begins with "ou-"
3070
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
3071
3071
  # followed by from 4 to 32 lower-case letters or digits (the ID of
3072
3072
  # the root that the OU is in) followed by a second "-" dash and
3073
3073
  # from 8 to 32 additional lower-case letters or digits.
@@ -3084,10 +3084,10 @@ module Aws::Organizations
3084
3084
  # The [regex pattern][1] for a parent ID string requires one of the
3085
3085
  # following:
3086
3086
  #
3087
- # * Root: a string that begins with "r-" followed by from 4 to 32
3088
- # lower-case letters or digits.
3087
+ # * **Root** - A string that begins with "r-" followed by from 4 to
3088
+ # 32 lower-case letters or digits.
3089
3089
  #
3090
- # * Organizational unit (OU): a string that begins with "ou-"
3090
+ # * **Organizational unit (OU)** - A string that begins with "ou-"
3091
3091
  # followed by from 4 to 32 lower-case letters or digits (the ID of
3092
3092
  # the root that the OU is in) followed by a second "-" dash and
3093
3093
  # from 8 to 32 additional lower-case letters or digits.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-organizations
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.31.0
4
+ version: 1.32.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: 2019-07-25 00:00:00.000000000 Z
11
+ date: 2019-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core