aws-sdk-organizations 1.50.0 → 1.51.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: '048979f001ba9072b4255b7e645ca0d6eea122a8841fbc4716168bf1dde21968'
4
- data.tar.gz: 1ddafdfc2821fcaee5be2f5f3674fdb7ca3c932b9452bd098dbe3ce35c342fb0
3
+ metadata.gz: 7b6f5921109742aaa83544abde06a32cae7102b883e54767fe4e5567affe73a6
4
+ data.tar.gz: 0fdaeb797a8f94bca291bedaa02f83098032626aa70e1e304010bbc9926d7b25
5
5
  SHA512:
6
- metadata.gz: 699911dc1da0dfa00f5f957c50cf0ecef4d75c9fbb255c210e88d6e7aa42ef8f20f9c87960644d785945eb4e165f6b826929b8ddae96bd1ba73db31459209992
7
- data.tar.gz: cdc50b93fab7de17883e80282b932341eae8f1deaa08f0710613f27382dc4e1f70a91cb345bcf2fb60903d9ade9e27ccadbad54323cdbd11fd36dde68e2cdc61
6
+ metadata.gz: 40a50363452745e1f6a6ef0aef7f5688754608588f65766d59e5786d40dc54a718ee5d67b404f852459dc5a4a47491dcbee044c82b90ce7f589ec17a87e51fcd
7
+ data.tar.gz: 5bc9c7b9b676bee453d617114739d234a0203ba6ff31298dcb34cb7254f336d96feeb91aaa85ea0cbd5dbb7a829fd2a0401500158f969150dd28bb4a3c24c2cc
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  require 'aws-sdk-core'
11
12
  require 'aws-sigv4'
12
13
 
@@ -47,6 +48,6 @@ require_relative 'aws-sdk-organizations/customizations'
47
48
  # @!group service
48
49
  module Aws::Organizations
49
50
 
50
- GEM_VERSION = '1.50.0'
51
+ GEM_VERSION = '1.51.0'
51
52
 
52
53
  end
@@ -703,8 +703,6 @@ module Aws::Organizations
703
703
  # [Monitoring the Activity in Your Organization][1] in the *AWS
704
704
  # Organizations User Guide.*
705
705
  #
706
- #
707
- #
708
706
  # The user who calls the API to create an account must have the
709
707
  # `organizations:CreateAccount` permission. If you enabled all features
710
708
  # in the organization, AWS Organizations creates the required
@@ -712,6 +710,9 @@ module Aws::Organizations
712
710
  # information, see [AWS Organizations and Service-Linked Roles][2] in
713
711
  # the *AWS Organizations User Guide*.
714
712
  #
713
+ # If the request includes tags, then the requester must have the
714
+ # `organizations:TagResource` permission.
715
+ #
715
716
  # AWS Organizations preconfigures the new member account with a role
716
717
  # (named `OrganizationAccountAccessRole` by default) that grants users
717
718
  # in the master account administrator permissions in the new member
@@ -827,6 +828,23 @@ module Aws::Organizations
827
828
  #
828
829
  # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/grantaccess.html#ControllingAccessWebsite-Activate
829
830
  #
831
+ # @option params [Array<Types::Tag>] :tags
832
+ # A list of tags that you want to attach to the newly created account.
833
+ # For each tag in the list, you must specify both a tag key and a value.
834
+ # You can set the value to an empty string, but you can't set it to
835
+ # `null`. For more information about tagging, see [Tagging AWS
836
+ # Organizations resources][1] in the AWS Organizations User Guide.
837
+ #
838
+ # <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed number
839
+ # of tags for an account, then the entire request fails and the account
840
+ # is not created.
841
+ #
842
+ # </note>
843
+ #
844
+ #
845
+ #
846
+ # [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_tagging.html
847
+ #
830
848
  # @return [Types::CreateAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
831
849
  #
832
850
  # * {Types::CreateAccountResponse#create_account_status #create_account_status} => Types::CreateAccountStatus
@@ -859,6 +877,12 @@ module Aws::Organizations
859
877
  # account_name: "AccountName", # required
860
878
  # role_name: "RoleName",
861
879
  # iam_user_access_to_billing: "ALLOW", # accepts ALLOW, DENY
880
+ # tags: [
881
+ # {
882
+ # key: "TagKey", # required
883
+ # value: "TagValue", # required
884
+ # },
885
+ # ],
862
886
  # })
863
887
  #
864
888
  # @example Response structure
@@ -893,11 +917,12 @@ module Aws::Organizations
893
917
  # * You call this action from the master account of your organization in
894
918
  # the commercial Region.
895
919
  #
896
- # * You have the `organizations:CreateGovCloudAccount` permission. AWS
897
- # Organizations creates the required service-linked role named
898
- # `AWSServiceRoleForOrganizations`. For more information, see [AWS
899
- # Organizations and Service-Linked Roles][2] in the *AWS Organizations
900
- # User Guide.*
920
+ # * You have the `organizations:CreateGovCloudAccount` permission.
921
+ #
922
+ # AWS Organizations automatically creates the required service-linked
923
+ # role named `AWSServiceRoleForOrganizations`. For more information, see
924
+ # [AWS Organizations and Service-Linked Roles][2] in the *AWS
925
+ # Organizations User Guide.*
901
926
  #
902
927
  # AWS automatically enables AWS CloudTrail for AWS GovCloud (US)
903
928
  # accounts, but you should also do the following:
@@ -909,6 +934,13 @@ module Aws::Organizations
909
934
  # For more information, see [Verifying AWS CloudTrail Is Enabled][3]
910
935
  # in the *AWS GovCloud User Guide*.
911
936
  #
937
+ # If the request includes tags, then the requester must have the
938
+ # `organizations:TagResource` permission. The tags are attached to the
939
+ # commercial account associated with the GovCloud account, rather than
940
+ # the GovCloud account itself. To add tags to the GovCloud account, call
941
+ # the TagResource operation in the GovCloud Region after the new
942
+ # GovCloud account exists.
943
+ #
912
944
  # You call this action from the master account of your organization in
913
945
  # the commercial Region to create a standalone AWS account in the AWS
914
946
  # GovCloud (US) Region. After the account is created, the master account
@@ -945,10 +977,10 @@ module Aws::Organizations
945
977
  # allows the master account in the organization in the commercial Region
946
978
  # to assume it. An AWS GovCloud (US) account is then created and
947
979
  # associated with the commercial account that you just created. A role
948
- # is created in the new AWS GovCloud (US) account that can be assumed by
949
- # the AWS GovCloud (US) account that is associated with the master
950
- # account of the commercial organization. For more information and to
951
- # view a diagram that explains how account access works, see [AWS
980
+ # is also created in the new AWS GovCloud (US) account that can be
981
+ # assumed by the AWS GovCloud (US) account that is associated with the
982
+ # master account of the commercial organization. For more information
983
+ # and to view a diagram that explains how account access works, see [AWS
952
984
  # Organizations][4] in the *AWS GovCloud User Guide.*
953
985
  #
954
986
  # For more information about creating accounts, see [Creating an AWS
@@ -1062,6 +1094,28 @@ module Aws::Organizations
1062
1094
  #
1063
1095
  # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/grantaccess.html#ControllingAccessWebsite-Activate
1064
1096
  #
1097
+ # @option params [Array<Types::Tag>] :tags
1098
+ # A list of tags that you want to attach to the newly created account.
1099
+ # These tags are attached to the commercial account associated with the
1100
+ # GovCloud account, and not to the GovCloud account itself. To add tags
1101
+ # to the actual GovCloud account, call the TagResource operation in the
1102
+ # GovCloud region after the new GovCloud account exists.
1103
+ #
1104
+ # For each tag in the list, you must specify both a tag key and a value.
1105
+ # You can set the value to an empty string, but you can't set it to
1106
+ # `null`. For more information about tagging, see [Tagging AWS
1107
+ # Organizations resources][1] in the AWS Organizations User Guide.
1108
+ #
1109
+ # <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed number
1110
+ # of tags for an account, then the entire request fails and the account
1111
+ # is not created.
1112
+ #
1113
+ # </note>
1114
+ #
1115
+ #
1116
+ #
1117
+ # [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_tagging.html
1118
+ #
1065
1119
  # @return [Types::CreateGovCloudAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1066
1120
  #
1067
1121
  # * {Types::CreateGovCloudAccountResponse#create_account_status #create_account_status} => Types::CreateAccountStatus
@@ -1073,6 +1127,12 @@ module Aws::Organizations
1073
1127
  # account_name: "AccountName", # required
1074
1128
  # role_name: "RoleName",
1075
1129
  # iam_user_access_to_billing: "ALLOW", # accepts ALLOW, DENY
1130
+ # tags: [
1131
+ # {
1132
+ # key: "TagKey", # required
1133
+ # value: "TagValue", # required
1134
+ # },
1135
+ # ],
1076
1136
  # })
1077
1137
  #
1078
1138
  # @example Response structure
@@ -1113,7 +1173,7 @@ module Aws::Organizations
1113
1173
  #
1114
1174
  #
1115
1175
  #
1116
- # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/orgs_getting-started_concepts.html#account
1176
+ # [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#account
1117
1177
  #
1118
1178
  # @option params [String] :feature_set
1119
1179
  # Specifies the feature set supported by the new organization. Each
@@ -1230,6 +1290,9 @@ module Aws::Organizations
1230
1290
  # For more information about OUs, see [Managing Organizational Units][1]
1231
1291
  # in the *AWS Organizations User Guide.*
1232
1292
  #
1293
+ # If the request includes tags, then the requester must have the
1294
+ # `organizations:TagResource` permission.
1295
+ #
1233
1296
  # This operation can be called only from the organization's master
1234
1297
  # account.
1235
1298
  #
@@ -1259,6 +1322,23 @@ module Aws::Organizations
1259
1322
  # @option params [required, String] :name
1260
1323
  # The friendly name to assign to the new OU.
1261
1324
  #
1325
+ # @option params [Array<Types::Tag>] :tags
1326
+ # A list of tags that you want to attach to the newly created OU. For
1327
+ # each tag in the list, you must specify both a tag key and a value. You
1328
+ # can set the value to an empty string, but you can't set it to `null`.
1329
+ # For more information about tagging, see [Tagging AWS Organizations
1330
+ # resources][1] in the AWS Organizations User Guide.
1331
+ #
1332
+ # <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed number
1333
+ # of tags for an OU, then the entire request fails and the OU is not
1334
+ # created.
1335
+ #
1336
+ # </note>
1337
+ #
1338
+ #
1339
+ #
1340
+ # [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_tagging.html
1341
+ #
1262
1342
  # @return [Types::CreateOrganizationalUnitResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1263
1343
  #
1264
1344
  # * {Types::CreateOrganizationalUnitResponse#organizational_unit #organizational_unit} => Types::OrganizationalUnit
@@ -1287,6 +1367,12 @@ module Aws::Organizations
1287
1367
  # resp = client.create_organizational_unit({
1288
1368
  # parent_id: "ParentId", # required
1289
1369
  # name: "OrganizationalUnitName", # required
1370
+ # tags: [
1371
+ # {
1372
+ # key: "TagKey", # required
1373
+ # value: "TagValue", # required
1374
+ # },
1375
+ # ],
1290
1376
  # })
1291
1377
  #
1292
1378
  # @example Response structure
@@ -1310,6 +1396,9 @@ module Aws::Organizations
1310
1396
  # For more information about policies and their use, see [Managing
1311
1397
  # Organization Policies][1].
1312
1398
  #
1399
+ # If the request includes tags, then the requester must have the
1400
+ # `organizations:TagResource` permission.
1401
+ #
1313
1402
  # This operation can be called only from the organization's master
1314
1403
  # account.
1315
1404
  #
@@ -1354,6 +1443,23 @@ module Aws::Organizations
1354
1443
  # [3]: http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
1355
1444
  # [4]: http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_tag-policies.html
1356
1445
  #
1446
+ # @option params [Array<Types::Tag>] :tags
1447
+ # A list of tags that you want to attach to the newly created policy.
1448
+ # For each tag in the list, you must specify both a tag key and a value.
1449
+ # You can set the value to an empty string, but you can't set it to
1450
+ # `null`. For more information about tagging, see [Tagging AWS
1451
+ # Organizations resources][1] in the AWS Organizations User Guide.
1452
+ #
1453
+ # <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed number
1454
+ # of tags for a policy, then the entire request fails and the policy is
1455
+ # not created.
1456
+ #
1457
+ # </note>
1458
+ #
1459
+ #
1460
+ #
1461
+ # [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_tagging.html
1462
+ #
1357
1463
  # @return [Types::CreatePolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1358
1464
  #
1359
1465
  # * {Types::CreatePolicyResponse#policy #policy} => Types::Policy
@@ -1393,6 +1499,12 @@ module Aws::Organizations
1393
1499
  # description: "PolicyDescription", # required
1394
1500
  # name: "PolicyName", # required
1395
1501
  # type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY
1502
+ # tags: [
1503
+ # {
1504
+ # key: "TagKey", # required
1505
+ # value: "TagValue", # required
1506
+ # },
1507
+ # ],
1396
1508
  # })
1397
1509
  #
1398
1510
  # @example Response structure
@@ -2726,6 +2838,9 @@ module Aws::Organizations
2726
2838
  # then try again. If the error persists after an hour, contact [AWS
2727
2839
  # Support][2].
2728
2840
  #
2841
+ # If the request includes tags, then the requester must have the
2842
+ # `organizations:TagResource` permission.
2843
+ #
2729
2844
  # This operation can be called only from the organization's master
2730
2845
  # account.
2731
2846
  #
@@ -2756,6 +2871,33 @@ module Aws::Organizations
2756
2871
  # Additional information that you want to include in the generated email
2757
2872
  # to the recipient account owner.
2758
2873
  #
2874
+ # @option params [Array<Types::Tag>] :tags
2875
+ # A list of tags that you want to attach to the account when it becomes
2876
+ # a member of the organization. For each tag in the list, you must
2877
+ # specify both a tag key and a value. You can set the value to an empty
2878
+ # string, but you can't set it to `null`. For more information about
2879
+ # tagging, see [Tagging AWS Organizations resources][1] in the AWS
2880
+ # Organizations User Guide.
2881
+ #
2882
+ # Any tags in the request are checked for compliance with any applicable
2883
+ # tag policies when the request is made. The request is rejected if the
2884
+ # tags in the request don't match the requirements of the policy at
2885
+ # that time. Tag policy compliance is <i> <b>not</b> </i> checked again
2886
+ # when the invitation is accepted and the tags are actually attached to
2887
+ # the account. That means that if the tag policy changes between the
2888
+ # invitation and the acceptance, then that tags could potentially be
2889
+ # non-compliant.
2890
+ #
2891
+ # <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed number
2892
+ # of tags for an account, then the entire request fails and invitations
2893
+ # are not sent.
2894
+ #
2895
+ # </note>
2896
+ #
2897
+ #
2898
+ #
2899
+ # [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_tagging.html
2900
+ #
2759
2901
  # @return [Types::InviteAccountToOrganizationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2760
2902
  #
2761
2903
  # * {Types::InviteAccountToOrganizationResponse#handshake #handshake} => Types::Handshake
@@ -2828,6 +2970,12 @@ module Aws::Organizations
2828
2970
  # type: "ACCOUNT", # required, accepts ACCOUNT, ORGANIZATION, EMAIL
2829
2971
  # },
2830
2972
  # notes: "HandshakeNotes",
2973
+ # tags: [
2974
+ # {
2975
+ # key: "TagKey", # required
2976
+ # value: "TagValue", # required
2977
+ # },
2978
+ # ],
2831
2979
  # })
2832
2980
  #
2833
2981
  # @example Response structure
@@ -2895,6 +3043,10 @@ module Aws::Organizations
2895
3043
  # Access to the Billing and Cost Management Console][2] in the *AWS
2896
3044
  # Billing and Cost Management User Guide.*
2897
3045
  #
3046
+ # * After the account leaves the organization, all tags that were
3047
+ # attached to the account object in the organization are deleted. AWS
3048
+ # accounts outside of an organization do not support tags.
3049
+ #
2898
3050
  #
2899
3051
  #
2900
3052
  # [1]: http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_accounts_remove.html#leave-without-all-info
@@ -4509,16 +4661,37 @@ module Aws::Organizations
4509
4661
  req.send_request(options)
4510
4662
  end
4511
4663
 
4512
- # Lists tags for the specified resource.
4664
+ # Lists tags that are attached to the specified resource.
4665
+ #
4666
+ # You can attach tags to the following resources in AWS Organizations.
4667
+ #
4668
+ # * AWS account
4669
+ #
4670
+ # * Organization root
4671
+ #
4672
+ # * Organizational unit (OU)
4513
4673
  #
4514
- # Currently, you can list tags on an account in AWS Organizations.
4674
+ # * Policy (any type)
4515
4675
  #
4516
4676
  # This operation can be called only from the organization's master
4517
4677
  # account or by a member account that is a delegated administrator for
4518
4678
  # an AWS service.
4519
4679
  #
4520
4680
  # @option params [required, String] :resource_id
4521
- # The ID of the resource that you want to retrieve tags for.
4681
+ # The ID of the resource with the tags to list.
4682
+ #
4683
+ # You can specify any of the following taggable resources.
4684
+ #
4685
+ # * AWS account – specify the account ID number.
4686
+ #
4687
+ # * Organizational unit – specify the OU ID that begins with `ou-` and
4688
+ # looks similar to: `ou-1a2b-34uvwxyz `
4689
+ #
4690
+ # * Root – specify the root ID that begins with `r-` and looks similar
4691
+ # to: `r-1a2b `
4692
+ #
4693
+ # * Policy – specify the policy ID that begins with `p-` andlooks
4694
+ # similar to: `p-12abcdefg3 `
4522
4695
  #
4523
4696
  # @option params [String] :next_token
4524
4697
  # The parameter for receiving additional results if you receive a
@@ -4810,20 +4983,25 @@ module Aws::Organizations
4810
4983
  # account. Member accounts can remove themselves with LeaveOrganization
4811
4984
  # instead.
4812
4985
  #
4813
- # You can remove an account from your organization only if the account
4814
- # is configured with the information required to operate as a standalone
4815
- # account. When you create an account in an organization using the AWS
4816
- # Organizations console, API, or CLI commands, the information required
4817
- # of standalone accounts is *not* automatically collected. For an
4818
- # account that you want to make standalone, you must choose a support
4819
- # plan, provide and verify the required contact information, and provide
4820
- # a current payment method. AWS uses the payment method to charge for
4821
- # any billable (not free tier) AWS activity that occurs while the
4822
- # account isn't attached to an organization. To remove an account that
4823
- # doesn't yet have this information, you must sign in as the member
4824
- # account and follow the steps at [ To leave an organization when all
4825
- # required account information has not yet been provided][1] in the *AWS
4826
- # Organizations User Guide.*
4986
+ # * You can remove an account from your organization only if the account
4987
+ # is configured with the information required to operate as a
4988
+ # standalone account. When you create an account in an organization
4989
+ # using the AWS Organizations console, API, or CLI commands, the
4990
+ # information required of standalone accounts is *not* automatically
4991
+ # collected. For an account that you want to make standalone, you must
4992
+ # choose a support plan, provide and verify the required contact
4993
+ # information, and provide a current payment method. AWS uses the
4994
+ # payment method to charge for any billable (not free tier) AWS
4995
+ # activity that occurs while the account isn't attached to an
4996
+ # organization. To remove an account that doesn't yet have this
4997
+ # information, you must sign in as the member account and follow the
4998
+ # steps at [ To leave an organization when all required account
4999
+ # information has not yet been provided][1] in the *AWS Organizations
5000
+ # User Guide.*
5001
+ #
5002
+ # * After the account leaves the organization, all tags that were
5003
+ # attached to the account object in the organization are deleted. AWS
5004
+ # accounts outside of an organization do not support tags.
4827
5005
  #
4828
5006
  #
4829
5007
  #
@@ -4868,7 +5046,16 @@ module Aws::Organizations
4868
5046
 
4869
5047
  # Adds one or more tags to the specified resource.
4870
5048
  #
4871
- # Currently, you can tag and untag accounts in AWS Organizations.
5049
+ # Currently, you can attach tags to the following resources in AWS
5050
+ # Organizations.
5051
+ #
5052
+ # * AWS account
5053
+ #
5054
+ # * Organization root
5055
+ #
5056
+ # * Organizational unit (OU)
5057
+ #
5058
+ # * Policy (any type)
4872
5059
  #
4873
5060
  # This operation can be called only from the organization's master
4874
5061
  # account.
@@ -4877,9 +5064,30 @@ module Aws::Organizations
4877
5064
  # The ID of the resource to add a tag to.
4878
5065
  #
4879
5066
  # @option params [required, Array<Types::Tag>] :tags
4880
- # The tag to add to the specified resource. You must specify both a tag
4881
- # key and value. You can set the value of a tag to an empty string, but
4882
- # you can't set it to null.
5067
+ # A list of tags to add to the specified resource.
5068
+ #
5069
+ # You can specify any of the following taggable resources.
5070
+ #
5071
+ # * AWS account – specify the account ID number.
5072
+ #
5073
+ # * Organizational unit – specify the OU ID that begins with `ou-` and
5074
+ # looks similar to: `ou-1a2b-34uvwxyz `
5075
+ #
5076
+ # * Root – specify the root ID that begins with `r-` and looks similar
5077
+ # to: `r-1a2b `
5078
+ #
5079
+ # * Policy – specify the policy ID that begins with `p-` andlooks
5080
+ # similar to: `p-12abcdefg3 `
5081
+ #
5082
+ # For each tag in the list, you must specify both a tag key and a value.
5083
+ # You can set the value to an empty string, but you can't set it to
5084
+ # `null`.
5085
+ #
5086
+ # <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed number
5087
+ # of tags for an account user, then the entire request fails and the
5088
+ # account is not created.
5089
+ #
5090
+ # </note>
4883
5091
  #
4884
5092
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4885
5093
  #
@@ -4904,18 +5112,39 @@ module Aws::Organizations
4904
5112
  req.send_request(options)
4905
5113
  end
4906
5114
 
4907
- # Removes a tag from the specified resource.
5115
+ # Removes any tags with the specified keys from the specified resource.
5116
+ #
5117
+ # You can attach tags to the following resources in AWS Organizations.
5118
+ #
5119
+ # * AWS account
5120
+ #
5121
+ # * Organization root
4908
5122
  #
4909
- # Currently, you can tag and untag accounts in AWS Organizations.
5123
+ # * Organizational unit (OU)
5124
+ #
5125
+ # * Policy (any type)
4910
5126
  #
4911
5127
  # This operation can be called only from the organization's master
4912
5128
  # account.
4913
5129
  #
4914
5130
  # @option params [required, String] :resource_id
4915
- # The ID of the resource to remove the tag from.
5131
+ # The ID of the resource to remove a tag from.
5132
+ #
5133
+ # You can specify any of the following taggable resources.
5134
+ #
5135
+ # * AWS account – specify the account ID number.
5136
+ #
5137
+ # * Organizational unit – specify the OU ID that begins with `ou-` and
5138
+ # looks similar to: `ou-1a2b-34uvwxyz `
5139
+ #
5140
+ # * Root – specify the root ID that begins with `r-` and looks similar
5141
+ # to: `r-1a2b `
5142
+ #
5143
+ # * Policy – specify the policy ID that begins with `p-` andlooks
5144
+ # similar to: `p-12abcdefg3 `
4916
5145
  #
4917
5146
  # @option params [required, Array<String>] :tag_keys
4918
- # The tag to remove from the specified resource.
5147
+ # The list of keys for tags to remove from the specified resource.
4919
5148
  #
4920
5149
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4921
5150
  #
@@ -5148,7 +5377,7 @@ module Aws::Organizations
5148
5377
  params: params,
5149
5378
  config: config)
5150
5379
  context[:gem_name] = 'aws-sdk-organizations'
5151
- context[:gem_version] = '1.50.0'
5380
+ context[:gem_version] = '1.51.0'
5152
5381
  Seahorse::Client::Request.new(handlers, context)
5153
5382
  end
5154
5383
 
@@ -312,6 +312,7 @@ module Aws::Organizations
312
312
  CreateAccountRequest.add_member(:account_name, Shapes::ShapeRef.new(shape: AccountName, required: true, location_name: "AccountName"))
313
313
  CreateAccountRequest.add_member(:role_name, Shapes::ShapeRef.new(shape: RoleName, location_name: "RoleName"))
314
314
  CreateAccountRequest.add_member(:iam_user_access_to_billing, Shapes::ShapeRef.new(shape: IAMUserAccessToBilling, location_name: "IamUserAccessToBilling"))
315
+ CreateAccountRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
315
316
  CreateAccountRequest.struct_class = Types::CreateAccountRequest
316
317
 
317
318
  CreateAccountResponse.add_member(:create_account_status, Shapes::ShapeRef.new(shape: CreateAccountStatus, location_name: "CreateAccountStatus"))
@@ -338,6 +339,7 @@ module Aws::Organizations
338
339
  CreateGovCloudAccountRequest.add_member(:account_name, Shapes::ShapeRef.new(shape: AccountName, required: true, location_name: "AccountName"))
339
340
  CreateGovCloudAccountRequest.add_member(:role_name, Shapes::ShapeRef.new(shape: RoleName, location_name: "RoleName"))
340
341
  CreateGovCloudAccountRequest.add_member(:iam_user_access_to_billing, Shapes::ShapeRef.new(shape: IAMUserAccessToBilling, location_name: "IamUserAccessToBilling"))
342
+ CreateGovCloudAccountRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
341
343
  CreateGovCloudAccountRequest.struct_class = Types::CreateGovCloudAccountRequest
342
344
 
343
345
  CreateGovCloudAccountResponse.add_member(:create_account_status, Shapes::ShapeRef.new(shape: CreateAccountStatus, location_name: "CreateAccountStatus"))
@@ -351,6 +353,7 @@ module Aws::Organizations
351
353
 
352
354
  CreateOrganizationalUnitRequest.add_member(:parent_id, Shapes::ShapeRef.new(shape: ParentId, required: true, location_name: "ParentId"))
353
355
  CreateOrganizationalUnitRequest.add_member(:name, Shapes::ShapeRef.new(shape: OrganizationalUnitName, required: true, location_name: "Name"))
356
+ CreateOrganizationalUnitRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
354
357
  CreateOrganizationalUnitRequest.struct_class = Types::CreateOrganizationalUnitRequest
355
358
 
356
359
  CreateOrganizationalUnitResponse.add_member(:organizational_unit, Shapes::ShapeRef.new(shape: OrganizationalUnit, location_name: "OrganizationalUnit"))
@@ -360,6 +363,7 @@ module Aws::Organizations
360
363
  CreatePolicyRequest.add_member(:description, Shapes::ShapeRef.new(shape: PolicyDescription, required: true, location_name: "Description"))
361
364
  CreatePolicyRequest.add_member(:name, Shapes::ShapeRef.new(shape: PolicyName, required: true, location_name: "Name"))
362
365
  CreatePolicyRequest.add_member(:type, Shapes::ShapeRef.new(shape: PolicyType, required: true, location_name: "Type"))
366
+ CreatePolicyRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
363
367
  CreatePolicyRequest.struct_class = Types::CreatePolicyRequest
364
368
 
365
369
  CreatePolicyResponse.add_member(:policy, Shapes::ShapeRef.new(shape: Policy, location_name: "Policy"))
@@ -552,6 +556,7 @@ module Aws::Organizations
552
556
 
553
557
  InviteAccountToOrganizationRequest.add_member(:target, Shapes::ShapeRef.new(shape: HandshakeParty, required: true, location_name: "Target"))
554
558
  InviteAccountToOrganizationRequest.add_member(:notes, Shapes::ShapeRef.new(shape: HandshakeNotes, location_name: "Notes"))
559
+ InviteAccountToOrganizationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
555
560
  InviteAccountToOrganizationRequest.struct_class = Types::InviteAccountToOrganizationRequest
556
561
 
557
562
  InviteAccountToOrganizationResponse.add_member(:handshake, Shapes::ShapeRef.new(shape: Handshake, location_name: "Handshake"))
@@ -1322,6 +1327,7 @@ module Aws::Organizations
1322
1327
  o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1323
1328
  o.errors << Shapes::ShapeRef.new(shape: HandshakeConstraintViolationException)
1324
1329
  o.errors << Shapes::ShapeRef.new(shape: DuplicateHandshakeException)
1330
+ o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
1325
1331
  o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
1326
1332
  o.errors << Shapes::ShapeRef.new(shape: FinalizingOrganizationException)
1327
1333
  o.errors << Shapes::ShapeRef.new(shape: ServiceException)
@@ -597,6 +597,12 @@ module Aws::Organizations
597
597
  # account_name: "AccountName", # required
598
598
  # role_name: "RoleName",
599
599
  # iam_user_access_to_billing: "ALLOW", # accepts ALLOW, DENY
600
+ # tags: [
601
+ # {
602
+ # key: "TagKey", # required
603
+ # value: "TagValue", # required
604
+ # },
605
+ # ],
600
606
  # }
601
607
  #
602
608
  # @!attribute [rw] email
@@ -660,13 +666,32 @@ module Aws::Organizations
660
666
  # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/grantaccess.html#ControllingAccessWebsite-Activate
661
667
  # @return [String]
662
668
  #
669
+ # @!attribute [rw] tags
670
+ # A list of tags that you want to attach to the newly created account.
671
+ # For each tag in the list, you must specify both a tag key and a
672
+ # value. You can set the value to an empty string, but you can't set
673
+ # it to `null`. For more information about tagging, see [Tagging AWS
674
+ # Organizations resources][1] in the AWS Organizations User Guide.
675
+ #
676
+ # <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed
677
+ # number of tags for an account, then the entire request fails and the
678
+ # account is not created.
679
+ #
680
+ # </note>
681
+ #
682
+ #
683
+ #
684
+ # [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_tagging.html
685
+ # @return [Array<Types::Tag>]
686
+ #
663
687
  # @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateAccountRequest AWS API Documentation
664
688
  #
665
689
  class CreateAccountRequest < Struct.new(
666
690
  :email,
667
691
  :account_name,
668
692
  :role_name,
669
- :iam_user_access_to_billing)
693
+ :iam_user_access_to_billing,
694
+ :tags)
670
695
  SENSITIVE = [:email, :account_name]
671
696
  include Aws::Structure
672
697
  end
@@ -819,6 +844,12 @@ module Aws::Organizations
819
844
  # account_name: "AccountName", # required
820
845
  # role_name: "RoleName",
821
846
  # iam_user_access_to_billing: "ALLOW", # accepts ALLOW, DENY
847
+ # tags: [
848
+ # {
849
+ # key: "TagKey", # required
850
+ # value: "TagValue", # required
851
+ # },
852
+ # ],
822
853
  # }
823
854
  #
824
855
  # @!attribute [rw] email
@@ -885,13 +916,37 @@ module Aws::Organizations
885
916
  # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/grantaccess.html#ControllingAccessWebsite-Activate
886
917
  # @return [String]
887
918
  #
919
+ # @!attribute [rw] tags
920
+ # A list of tags that you want to attach to the newly created account.
921
+ # These tags are attached to the commercial account associated with
922
+ # the GovCloud account, and not to the GovCloud account itself. To add
923
+ # tags to the actual GovCloud account, call the TagResource operation
924
+ # in the GovCloud region after the new GovCloud account exists.
925
+ #
926
+ # For each tag in the list, you must specify both a tag key and a
927
+ # value. You can set the value to an empty string, but you can't set
928
+ # it to `null`. For more information about tagging, see [Tagging AWS
929
+ # Organizations resources][1] in the AWS Organizations User Guide.
930
+ #
931
+ # <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed
932
+ # number of tags for an account, then the entire request fails and the
933
+ # account is not created.
934
+ #
935
+ # </note>
936
+ #
937
+ #
938
+ #
939
+ # [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_tagging.html
940
+ # @return [Array<Types::Tag>]
941
+ #
888
942
  # @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateGovCloudAccountRequest AWS API Documentation
889
943
  #
890
944
  class CreateGovCloudAccountRequest < Struct.new(
891
945
  :email,
892
946
  :account_name,
893
947
  :role_name,
894
- :iam_user_access_to_billing)
948
+ :iam_user_access_to_billing,
949
+ :tags)
895
950
  SENSITIVE = [:email, :account_name]
896
951
  include Aws::Structure
897
952
  end
@@ -968,6 +1023,12 @@ module Aws::Organizations
968
1023
  # {
969
1024
  # parent_id: "ParentId", # required
970
1025
  # name: "OrganizationalUnitName", # required
1026
+ # tags: [
1027
+ # {
1028
+ # key: "TagKey", # required
1029
+ # value: "TagValue", # required
1030
+ # },
1031
+ # ],
971
1032
  # }
972
1033
  #
973
1034
  # @!attribute [rw] parent_id
@@ -995,11 +1056,30 @@ module Aws::Organizations
995
1056
  # The friendly name to assign to the new OU.
996
1057
  # @return [String]
997
1058
  #
1059
+ # @!attribute [rw] tags
1060
+ # A list of tags that you want to attach to the newly created OU. For
1061
+ # each tag in the list, you must specify both a tag key and a value.
1062
+ # You can set the value to an empty string, but you can't set it to
1063
+ # `null`. For more information about tagging, see [Tagging AWS
1064
+ # Organizations resources][1] in the AWS Organizations User Guide.
1065
+ #
1066
+ # <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed
1067
+ # number of tags for an OU, then the entire request fails and the OU
1068
+ # is not created.
1069
+ #
1070
+ # </note>
1071
+ #
1072
+ #
1073
+ #
1074
+ # [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_tagging.html
1075
+ # @return [Array<Types::Tag>]
1076
+ #
998
1077
  # @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateOrganizationalUnitRequest AWS API Documentation
999
1078
  #
1000
1079
  class CreateOrganizationalUnitRequest < Struct.new(
1001
1080
  :parent_id,
1002
- :name)
1081
+ :name,
1082
+ :tags)
1003
1083
  SENSITIVE = []
1004
1084
  include Aws::Structure
1005
1085
  end
@@ -1024,6 +1104,12 @@ module Aws::Organizations
1024
1104
  # description: "PolicyDescription", # required
1025
1105
  # name: "PolicyName", # required
1026
1106
  # type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY
1107
+ # tags: [
1108
+ # {
1109
+ # key: "TagKey", # required
1110
+ # value: "TagValue", # required
1111
+ # },
1112
+ # ],
1027
1113
  # }
1028
1114
  #
1029
1115
  # @!attribute [rw] content
@@ -1067,13 +1153,32 @@ module Aws::Organizations
1067
1153
  # [4]: http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_tag-policies.html
1068
1154
  # @return [String]
1069
1155
  #
1156
+ # @!attribute [rw] tags
1157
+ # A list of tags that you want to attach to the newly created policy.
1158
+ # For each tag in the list, you must specify both a tag key and a
1159
+ # value. You can set the value to an empty string, but you can't set
1160
+ # it to `null`. For more information about tagging, see [Tagging AWS
1161
+ # Organizations resources][1] in the AWS Organizations User Guide.
1162
+ #
1163
+ # <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed
1164
+ # number of tags for a policy, then the entire request fails and the
1165
+ # policy is not created.
1166
+ #
1167
+ # </note>
1168
+ #
1169
+ #
1170
+ #
1171
+ # [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_tagging.html
1172
+ # @return [Array<Types::Tag>]
1173
+ #
1070
1174
  # @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreatePolicyRequest AWS API Documentation
1071
1175
  #
1072
1176
  class CreatePolicyRequest < Struct.new(
1073
1177
  :content,
1074
1178
  :description,
1075
1179
  :name,
1076
- :type)
1180
+ :type,
1181
+ :tags)
1077
1182
  SENSITIVE = []
1078
1183
  include Aws::Structure
1079
1184
  end
@@ -2348,6 +2453,9 @@ module Aws::Organizations
2348
2453
  #
2349
2454
  # </note>
2350
2455
  #
2456
+ # * DUPLICATE\_TAG\_KEY: Tag keys must be unique among the tags attached
2457
+ # to the same entity.
2458
+ #
2351
2459
  # * IMMUTABLE\_POLICY: You specified a policy that is managed by AWS and
2352
2460
  # can't be modified.
2353
2461
  #
@@ -2356,6 +2464,9 @@ module Aws::Organizations
2356
2464
  #
2357
2465
  # * INVALID\_ENUM: You specified an invalid value.
2358
2466
  #
2467
+ # * INVALID\_ENUM\_POLICY\_TYPE: You specified an invalid policy type
2468
+ # string.
2469
+ #
2359
2470
  # * INVALID\_FULL\_NAME\_TARGET: You specified a full name that contains
2360
2471
  # invalid characters.
2361
2472
  #
@@ -2405,6 +2516,12 @@ module Aws::Organizations
2405
2516
  # * MOVING\_ACCOUNT\_BETWEEN\_DIFFERENT\_ROOTS: You can move an account
2406
2517
  # only between entities in the same root.
2407
2518
  #
2519
+ # * TARGET\_NOT\_SUPPORTED: You can't perform the specified operation
2520
+ # on that target entity.
2521
+ #
2522
+ # * UNRECOGNIZED\_SERVICE\_PRINCIPAL: You specified a service principal
2523
+ # that isn't recognized.
2524
+ #
2408
2525
  # @!attribute [rw] message
2409
2526
  # @return [String]
2410
2527
  #
@@ -2429,6 +2546,12 @@ module Aws::Organizations
2429
2546
  # type: "ACCOUNT", # required, accepts ACCOUNT, ORGANIZATION, EMAIL
2430
2547
  # },
2431
2548
  # notes: "HandshakeNotes",
2549
+ # tags: [
2550
+ # {
2551
+ # key: "TagKey", # required
2552
+ # value: "TagValue", # required
2553
+ # },
2554
+ # ],
2432
2555
  # }
2433
2556
  #
2434
2557
  # @!attribute [rw] target
@@ -2455,11 +2578,40 @@ module Aws::Organizations
2455
2578
  # email to the recipient account owner.
2456
2579
  # @return [String]
2457
2580
  #
2581
+ # @!attribute [rw] tags
2582
+ # A list of tags that you want to attach to the account when it
2583
+ # becomes a member of the organization. For each tag in the list, you
2584
+ # must specify both a tag key and a value. You can set the value to an
2585
+ # empty string, but you can't set it to `null`. For more information
2586
+ # about tagging, see [Tagging AWS Organizations resources][1] in the
2587
+ # AWS Organizations User Guide.
2588
+ #
2589
+ # Any tags in the request are checked for compliance with any
2590
+ # applicable tag policies when the request is made. The request is
2591
+ # rejected if the tags in the request don't match the requirements of
2592
+ # the policy at that time. Tag policy compliance is <i> <b>not</b>
2593
+ # </i> checked again when the invitation is accepted and the tags are
2594
+ # actually attached to the account. That means that if the tag policy
2595
+ # changes between the invitation and the acceptance, then that tags
2596
+ # could potentially be non-compliant.
2597
+ #
2598
+ # <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed
2599
+ # number of tags for an account, then the entire request fails and
2600
+ # invitations are not sent.
2601
+ #
2602
+ # </note>
2603
+ #
2604
+ #
2605
+ #
2606
+ # [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_tagging.html
2607
+ # @return [Array<Types::Tag>]
2608
+ #
2458
2609
  # @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/InviteAccountToOrganizationRequest AWS API Documentation
2459
2610
  #
2460
2611
  class InviteAccountToOrganizationRequest < Struct.new(
2461
2612
  :target,
2462
- :notes)
2613
+ :notes,
2614
+ :tags)
2463
2615
  SENSITIVE = [:notes]
2464
2616
  include Aws::Structure
2465
2617
  end
@@ -3528,7 +3680,20 @@ module Aws::Organizations
3528
3680
  # }
3529
3681
  #
3530
3682
  # @!attribute [rw] resource_id
3531
- # The ID of the resource that you want to retrieve tags for.
3683
+ # The ID of the resource with the tags to list.
3684
+ #
3685
+ # You can specify any of the following taggable resources.
3686
+ #
3687
+ # * AWS account – specify the account ID number.
3688
+ #
3689
+ # * Organizational unit – specify the OU ID that begins with `ou-` and
3690
+ # looks similar to: `ou-1a2b-34uvwxyz `
3691
+ #
3692
+ # * Root – specify the root ID that begins with `r-` and looks similar
3693
+ # to: `r-1a2b `
3694
+ #
3695
+ # * Policy – specify the policy ID that begins with `p-` andlooks
3696
+ # similar to: `p-12abcdefg3 `
3532
3697
  # @return [String]
3533
3698
  #
3534
3699
  # @!attribute [rw] next_token
@@ -4428,8 +4593,18 @@ module Aws::Organizations
4428
4593
  include Aws::Structure
4429
4594
  end
4430
4595
 
4431
- # A custom key-value pair associated with a resource such as an account
4432
- # within your organization.
4596
+ # A custom key-value pair associated with a resource within your
4597
+ # organization.
4598
+ #
4599
+ # You can attach tags to any of the following organization resources.
4600
+ #
4601
+ # * AWS account
4602
+ #
4603
+ # * Organizational unit (OU)
4604
+ #
4605
+ # * Organization root
4606
+ #
4607
+ # * Policy
4433
4608
  #
4434
4609
  # @note When making an API call, you may pass Tag
4435
4610
  # data as a hash:
@@ -4476,9 +4651,30 @@ module Aws::Organizations
4476
4651
  # @return [String]
4477
4652
  #
4478
4653
  # @!attribute [rw] tags
4479
- # The tag to add to the specified resource. You must specify both a
4480
- # tag key and value. You can set the value of a tag to an empty
4481
- # string, but you can't set it to null.
4654
+ # A list of tags to add to the specified resource.
4655
+ #
4656
+ # You can specify any of the following taggable resources.
4657
+ #
4658
+ # * AWS account – specify the account ID number.
4659
+ #
4660
+ # * Organizational unit – specify the OU ID that begins with `ou-` and
4661
+ # looks similar to: `ou-1a2b-34uvwxyz `
4662
+ #
4663
+ # * Root – specify the root ID that begins with `r-` and looks similar
4664
+ # to: `r-1a2b `
4665
+ #
4666
+ # * Policy – specify the policy ID that begins with `p-` andlooks
4667
+ # similar to: `p-12abcdefg3 `
4668
+ #
4669
+ # For each tag in the list, you must specify both a tag key and a
4670
+ # value. You can set the value to an empty string, but you can't set
4671
+ # it to `null`.
4672
+ #
4673
+ # <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed
4674
+ # number of tags for an account user, then the entire request fails
4675
+ # and the account is not created.
4676
+ #
4677
+ # </note>
4482
4678
  # @return [Array<Types::Tag>]
4483
4679
  #
4484
4680
  # @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/TagResourceRequest AWS API Documentation
@@ -4490,8 +4686,8 @@ module Aws::Organizations
4490
4686
  include Aws::Structure
4491
4687
  end
4492
4688
 
4493
- # We can't find a root, OU, or account with the `TargetId` that you
4494
- # specified.
4689
+ # We can't find a root, OU, account, or policy with the `TargetId` that
4690
+ # you specified.
4495
4691
  #
4496
4692
  # @!attribute [rw] message
4497
4693
  # @return [String]
@@ -4553,11 +4749,24 @@ module Aws::Organizations
4553
4749
  # }
4554
4750
  #
4555
4751
  # @!attribute [rw] resource_id
4556
- # The ID of the resource to remove the tag from.
4752
+ # The ID of the resource to remove a tag from.
4753
+ #
4754
+ # You can specify any of the following taggable resources.
4755
+ #
4756
+ # * AWS account – specify the account ID number.
4757
+ #
4758
+ # * Organizational unit – specify the OU ID that begins with `ou-` and
4759
+ # looks similar to: `ou-1a2b-34uvwxyz `
4760
+ #
4761
+ # * Root – specify the root ID that begins with `r-` and looks similar
4762
+ # to: `r-1a2b `
4763
+ #
4764
+ # * Policy – specify the policy ID that begins with `p-` andlooks
4765
+ # similar to: `p-12abcdefg3 `
4557
4766
  # @return [String]
4558
4767
  #
4559
4768
  # @!attribute [rw] tag_keys
4560
- # The tag to remove from the specified resource.
4769
+ # The list of keys for tags to remove from the specified resource.
4561
4770
  # @return [Array<String>]
4562
4771
  #
4563
4772
  # @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/UntagResourceRequest AWS API Documentation
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.50.0
4
+ version: 1.51.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: 2020-08-25 00:00:00.000000000 Z
11
+ date: 2020-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core