aws-sdk-organizations 1.12.0 → 1.13.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 +4 -4
- data/lib/aws-sdk-organizations.rb +1 -1
- data/lib/aws-sdk-organizations/client.rb +149 -145
- data/lib/aws-sdk-organizations/client_api.rb +2 -1
- data/lib/aws-sdk-organizations/types.rb +58 -51
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8797e4e1fb96ade6c4743e0421b87845ff056bf1
|
|
4
|
+
data.tar.gz: 520c62ad0846a26bbf14bb2dbf0f163f453ddc1a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9d8ee445b006dcd5d687fd2d2b8df049906dcc425c0f036203c74f111ece45e968e4992ec850e29ebde185ae5d23c42e6082ac88f944bd5680ed2b90c48fd804
|
|
7
|
+
data.tar.gz: 99e0ac46e95f686d5922c69dffed488a4e941b81b7c7ef1de51245fe745b7977b47a29ec948193c156da980cdfe6a5d770bb382e4bcedc4ca9a4037a2a93d06a
|
|
@@ -200,7 +200,7 @@ module Aws::Organizations
|
|
|
200
200
|
# features in the organization, then the user must also have the
|
|
201
201
|
# `iam:CreateServiceLinkedRole` permission so that Organizations can
|
|
202
202
|
# create the required service-linked role named
|
|
203
|
-
# *
|
|
203
|
+
# *AWSServiceRoleForOrganizations*. For more information, see [AWS
|
|
204
204
|
# Organizations and Service-Linked Roles][1] in the *AWS Organizations
|
|
205
205
|
# User Guide*.
|
|
206
206
|
#
|
|
@@ -563,26 +563,34 @@ module Aws::Organizations
|
|
|
563
563
|
|
|
564
564
|
# Creates an AWS account that is automatically a member of the
|
|
565
565
|
# organization whose credentials made the request. This is an
|
|
566
|
-
# asynchronous request that AWS performs in the background.
|
|
567
|
-
#
|
|
568
|
-
#
|
|
569
|
-
#
|
|
566
|
+
# asynchronous request that AWS performs in the background. Because
|
|
567
|
+
# `CreateAccount` operates asynchronously, it can return a successful
|
|
568
|
+
# completion message even though account initialization might still be
|
|
569
|
+
# in progress. You might need to wait a few minutes before you can
|
|
570
|
+
# successfully access the account. To check the status of the request,
|
|
571
|
+
# do one of the following:
|
|
572
|
+
#
|
|
573
|
+
# * Use the `OperationId` response element from this operation to
|
|
574
|
+
# provide as a parameter to the DescribeCreateAccountStatus operation.
|
|
575
|
+
#
|
|
576
|
+
# * Check the AWS CloudTrail log for the `CreateAccountResult` event.
|
|
577
|
+
# For information on using AWS CloudTrail with Organizations, see
|
|
578
|
+
# [Monitoring the Activity in Your Organization][1] in the *AWS
|
|
579
|
+
# Organizations User Guide*.
|
|
570
580
|
#
|
|
571
|
-
# The user who calls the API for an invitation to join must have the
|
|
572
|
-
# `organizations:CreateAccount` permission. If you enabled all features
|
|
573
|
-
# in the organization, then the user must also have the
|
|
574
|
-
# `iam:CreateServiceLinkedRole` permission so that Organizations can
|
|
575
|
-
# create the required service-linked role named
|
|
576
|
-
# *OrgsServiceLinkedRoleName*. For more information, see [AWS
|
|
577
|
-
# Organizations and Service-Linked Roles][1] in the *AWS Organizations
|
|
578
|
-
# User Guide*.
|
|
579
581
|
#
|
|
580
|
-
#
|
|
581
|
-
#
|
|
582
|
-
#
|
|
583
|
-
#
|
|
584
|
-
#
|
|
585
|
-
#
|
|
582
|
+
#
|
|
583
|
+
# The user who calls the API to create an account must have the
|
|
584
|
+
# `organizations:CreateAccount` permission. If you enabled all features
|
|
585
|
+
# in the organization, AWS Organizations will create the required
|
|
586
|
+
# service-linked role named `AWSServiceRoleForOrganizations`. For more
|
|
587
|
+
# information, see [AWS Organizations and Service-Linked Roles][2] in
|
|
588
|
+
# the *AWS Organizations User Guide*.
|
|
589
|
+
#
|
|
590
|
+
# AWS Organizations preconfigures the new member account with a role
|
|
591
|
+
# (named `OrganizationAccountAccessRole` by default) that grants users
|
|
592
|
+
# in the master account administrator permissions in the new member
|
|
593
|
+
# account. Principals in the master account can assume the role. AWS
|
|
586
594
|
# Organizations clones the company name and address information for the
|
|
587
595
|
# new account from the organization's master account.
|
|
588
596
|
#
|
|
@@ -590,54 +598,50 @@ module Aws::Organizations
|
|
|
590
598
|
# account.
|
|
591
599
|
#
|
|
592
600
|
# For more information about creating accounts, see [Creating an AWS
|
|
593
|
-
# Account in Your Organization][
|
|
601
|
+
# Account in Your Organization][3] in the *AWS Organizations User
|
|
594
602
|
# Guide*.
|
|
595
603
|
#
|
|
596
604
|
# * When you create an account in an organization using the AWS
|
|
597
605
|
# Organizations console, API, or CLI commands, the information
|
|
598
606
|
# required for the account to operate as a standalone account, such as
|
|
599
|
-
# a payment method and signing the
|
|
607
|
+
# a payment method and signing the end user license agreement (EULA)
|
|
600
608
|
# is *not* automatically collected. If you must remove an account from
|
|
601
609
|
# your organization later, you can do so only after you provide the
|
|
602
610
|
# missing information. Follow the steps at [ To leave an organization
|
|
603
|
-
#
|
|
604
|
-
# in the *AWS Organizations User Guide*.
|
|
611
|
+
# as a member account][4] in the *AWS Organizations User Guide*.
|
|
605
612
|
#
|
|
606
613
|
# * If you get an exception that indicates that you exceeded your
|
|
607
|
-
# account limits for the organization
|
|
608
|
-
# because your organization is still initializing, wait one hour and
|
|
609
|
-
# then try again. If the error persists after an hour, then contact
|
|
610
|
-
# [AWS Customer Support][4].
|
|
614
|
+
# account limits for the organization, contact [AWS Support][5].
|
|
611
615
|
#
|
|
612
|
-
# *
|
|
613
|
-
#
|
|
614
|
-
#
|
|
615
|
-
# before you can successfully access the account.
|
|
616
|
+
# * If you get an exception that indicates that the operation failed
|
|
617
|
+
# because your organization is still initializing, wait one hour and
|
|
618
|
+
# then try again. If the error persists, contact [AWS Support][5].
|
|
616
619
|
#
|
|
617
620
|
# <note markdown="1"> When you create a member account with this operation, you can choose
|
|
618
621
|
# whether to create the account with the **IAM User and Role Access to
|
|
619
622
|
# Billing Information** switch enabled. If you enable it, IAM users and
|
|
620
623
|
# roles that have appropriate permissions can view billing information
|
|
621
|
-
# for the account. If you disable
|
|
622
|
-
#
|
|
623
|
-
#
|
|
624
|
-
# and Tools][
|
|
624
|
+
# for the account. If you disable it, only the account root user can
|
|
625
|
+
# access billing information. For information about how to disable this
|
|
626
|
+
# switch for an account, see [Granting Access to Your Billing
|
|
627
|
+
# Information and Tools][6].
|
|
625
628
|
#
|
|
626
629
|
# </note>
|
|
627
630
|
#
|
|
628
631
|
#
|
|
629
632
|
#
|
|
630
|
-
# [1]: http://docs.aws.amazon.com/organizations/latest/userguide/
|
|
631
|
-
# [2]: http://docs.aws.amazon.com/organizations/latest/userguide/
|
|
632
|
-
# [3]: http://docs.aws.amazon.com/organizations/latest/userguide/
|
|
633
|
-
# [4]:
|
|
634
|
-
# [5]:
|
|
633
|
+
# [1]: http://docs.aws.amazon.com/organizations/latest/userguide/orgs_monitoring.html
|
|
634
|
+
# [2]: http://docs.aws.amazon.com/organizations/latest/userguide/orgs_integrate_services.html#orgs_integrate_services-using_slrs
|
|
635
|
+
# [3]: http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_accounts_create.html
|
|
636
|
+
# [4]: http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_accounts_remove.html#leave-without-all-info
|
|
637
|
+
# [5]: https://console.aws.amazon.com/support/home#/
|
|
638
|
+
# [6]: http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/grantaccess.html
|
|
635
639
|
#
|
|
636
640
|
# @option params [required, String] :email
|
|
637
641
|
# The email address of the owner to assign to the new member account.
|
|
638
642
|
# This email address must not already be associated with another AWS
|
|
639
643
|
# account. You must use a valid email address to complete account
|
|
640
|
-
# creation. You
|
|
644
|
+
# creation. You can't access the root user of the account or remove an
|
|
641
645
|
# account that was created with an invalid email address.
|
|
642
646
|
#
|
|
643
647
|
# @option params [required, String] :account_name
|
|
@@ -646,13 +650,13 @@ module Aws::Organizations
|
|
|
646
650
|
# @option params [String] :role_name
|
|
647
651
|
# (Optional)
|
|
648
652
|
#
|
|
649
|
-
# The name of an IAM role that Organizations automatically
|
|
650
|
-
# in the new member account. This role trusts the master
|
|
651
|
-
# allowing users in the master account to assume the role, as
|
|
652
|
-
# by the master account administrator. The role has
|
|
653
|
-
# permissions in the new member account.
|
|
653
|
+
# The name of an IAM role that AWS Organizations automatically
|
|
654
|
+
# preconfigures in the new member account. This role trusts the master
|
|
655
|
+
# account, allowing users in the master account to assume the role, as
|
|
656
|
+
# permitted by the master account administrator. The role has
|
|
657
|
+
# administrator permissions in the new member account.
|
|
654
658
|
#
|
|
655
|
-
# If you
|
|
659
|
+
# If you don't specify this parameter, the role name defaults to
|
|
656
660
|
# `OrganizationAccountAccessRole`.
|
|
657
661
|
#
|
|
658
662
|
# For more information about how to use this role to access the member
|
|
@@ -675,14 +679,14 @@ module Aws::Organizations
|
|
|
675
679
|
# @option params [String] :iam_user_access_to_billing
|
|
676
680
|
# If set to `ALLOW`, the new account enables IAM users to access account
|
|
677
681
|
# billing information *if* they have the required permissions. If set to
|
|
678
|
-
# `DENY`,
|
|
682
|
+
# `DENY`, only the root user of the new account can access account
|
|
679
683
|
# billing information. For more information, see [Activating Access to
|
|
680
684
|
# the Billing and Cost Management Console][1] in the *AWS Billing and
|
|
681
685
|
# Cost Management User Guide*.
|
|
682
686
|
#
|
|
683
|
-
# If you
|
|
684
|
-
# IAM users and roles with the required permissions can access
|
|
685
|
-
# information for the new account.
|
|
687
|
+
# If you don't specify this parameter, the value defaults to `ALLOW`,
|
|
688
|
+
# and IAM users and roles with the required permissions can access
|
|
689
|
+
# billing information for the new account.
|
|
686
690
|
#
|
|
687
691
|
#
|
|
688
692
|
#
|
|
@@ -1169,7 +1173,7 @@ module Aws::Organizations
|
|
|
1169
1173
|
|
|
1170
1174
|
# Deletes the organization. You can delete an organization only by using
|
|
1171
1175
|
# credentials from the master account. The organization must be empty of
|
|
1172
|
-
# member accounts
|
|
1176
|
+
# member accounts.
|
|
1173
1177
|
#
|
|
1174
1178
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1175
1179
|
#
|
|
@@ -2222,7 +2226,7 @@ module Aws::Organizations
|
|
|
2222
2226
|
# you must specify the email address that is associated with the
|
|
2223
2227
|
# account.
|
|
2224
2228
|
#
|
|
2225
|
-
# `--target Id=
|
|
2229
|
+
# `--target Id=diego@example.com,Type=EMAIL`
|
|
2226
2230
|
#
|
|
2227
2231
|
# @option params [String] :notes
|
|
2228
2232
|
# Additional information that you want to include in the generated email
|
|
@@ -2410,13 +2414,13 @@ module Aws::Organizations
|
|
|
2410
2414
|
#
|
|
2411
2415
|
# @option params [Integer] :max_results
|
|
2412
2416
|
# (Optional) Use this to limit the number of results you want included
|
|
2413
|
-
# in the response. If you do not include this parameter, it
|
|
2414
|
-
# a value that is specific to the operation. If additional
|
|
2415
|
-
# beyond the maximum you specify, the `NextToken` response
|
|
2416
|
-
# present and has a value (is not null). Include that value
|
|
2417
|
-
# `NextToken` request parameter in the next call to the operation
|
|
2418
|
-
# the next part of the results. Note that Organizations might
|
|
2419
|
-
# fewer results than the maximum even when there are more results
|
|
2417
|
+
# per page in the response. If you do not include this parameter, it
|
|
2418
|
+
# defaults to a value that is specific to the operation. If additional
|
|
2419
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
2420
|
+
# element is present and has a value (is not null). Include that value
|
|
2421
|
+
# as the `NextToken` request parameter in the next call to the operation
|
|
2422
|
+
# to get the next part of the results. Note that Organizations might
|
|
2423
|
+
# return fewer results than the maximum even when there are more results
|
|
2420
2424
|
# available. You should check `NextToken` after every operation to
|
|
2421
2425
|
# ensure that you receive all of the results.
|
|
2422
2426
|
#
|
|
@@ -2471,13 +2475,13 @@ module Aws::Organizations
|
|
|
2471
2475
|
#
|
|
2472
2476
|
# @option params [Integer] :max_results
|
|
2473
2477
|
# (Optional) Use this to limit the number of results you want included
|
|
2474
|
-
# in the response. If you do not include this parameter, it
|
|
2475
|
-
# a value that is specific to the operation. If additional
|
|
2476
|
-
# beyond the maximum you specify, the `NextToken` response
|
|
2477
|
-
# present and has a value (is not null). Include that value
|
|
2478
|
-
# `NextToken` request parameter in the next call to the operation
|
|
2479
|
-
# the next part of the results. Note that Organizations might
|
|
2480
|
-
# fewer results than the maximum even when there are more results
|
|
2478
|
+
# per page in the response. If you do not include this parameter, it
|
|
2479
|
+
# defaults to a value that is specific to the operation. If additional
|
|
2480
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
2481
|
+
# element is present and has a value (is not null). Include that value
|
|
2482
|
+
# as the `NextToken` request parameter in the next call to the operation
|
|
2483
|
+
# to get the next part of the results. Note that Organizations might
|
|
2484
|
+
# return fewer results than the maximum even when there are more results
|
|
2481
2485
|
# available. You should check `NextToken` after every operation to
|
|
2482
2486
|
# ensure that you receive all of the results.
|
|
2483
2487
|
#
|
|
@@ -2594,13 +2598,13 @@ module Aws::Organizations
|
|
|
2594
2598
|
#
|
|
2595
2599
|
# @option params [Integer] :max_results
|
|
2596
2600
|
# (Optional) Use this to limit the number of results you want included
|
|
2597
|
-
# in the response. If you do not include this parameter, it
|
|
2598
|
-
# a value that is specific to the operation. If additional
|
|
2599
|
-
# beyond the maximum you specify, the `NextToken` response
|
|
2600
|
-
# present and has a value (is not null). Include that value
|
|
2601
|
-
# `NextToken` request parameter in the next call to the operation
|
|
2602
|
-
# the next part of the results. Note that Organizations might
|
|
2603
|
-
# fewer results than the maximum even when there are more results
|
|
2601
|
+
# per page in the response. If you do not include this parameter, it
|
|
2602
|
+
# defaults to a value that is specific to the operation. If additional
|
|
2603
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
2604
|
+
# element is present and has a value (is not null). Include that value
|
|
2605
|
+
# as the `NextToken` request parameter in the next call to the operation
|
|
2606
|
+
# to get the next part of the results. Note that Organizations might
|
|
2607
|
+
# return fewer results than the maximum even when there are more results
|
|
2604
2608
|
# available. You should check `NextToken` after every operation to
|
|
2605
2609
|
# ensure that you receive all of the results.
|
|
2606
2610
|
#
|
|
@@ -2717,13 +2721,13 @@ module Aws::Organizations
|
|
|
2717
2721
|
#
|
|
2718
2722
|
# @option params [Integer] :max_results
|
|
2719
2723
|
# (Optional) Use this to limit the number of results you want included
|
|
2720
|
-
# in the response. If you do not include this parameter, it
|
|
2721
|
-
# a value that is specific to the operation. If additional
|
|
2722
|
-
# beyond the maximum you specify, the `NextToken` response
|
|
2723
|
-
# present and has a value (is not null). Include that value
|
|
2724
|
-
# `NextToken` request parameter in the next call to the operation
|
|
2725
|
-
# the next part of the results. Note that Organizations might
|
|
2726
|
-
# fewer results than the maximum even when there are more results
|
|
2724
|
+
# per page in the response. If you do not include this parameter, it
|
|
2725
|
+
# defaults to a value that is specific to the operation. If additional
|
|
2726
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
2727
|
+
# element is present and has a value (is not null). Include that value
|
|
2728
|
+
# as the `NextToken` request parameter in the next call to the operation
|
|
2729
|
+
# to get the next part of the results. Note that Organizations might
|
|
2730
|
+
# return fewer results than the maximum even when there are more results
|
|
2727
2731
|
# available. You should check `NextToken` after every operation to
|
|
2728
2732
|
# ensure that you receive all of the results.
|
|
2729
2733
|
#
|
|
@@ -2808,13 +2812,13 @@ module Aws::Organizations
|
|
|
2808
2812
|
#
|
|
2809
2813
|
# @option params [Integer] :max_results
|
|
2810
2814
|
# (Optional) Use this to limit the number of results you want included
|
|
2811
|
-
# in the response. If you do not include this parameter, it
|
|
2812
|
-
# a value that is specific to the operation. If additional
|
|
2813
|
-
# beyond the maximum you specify, the `NextToken` response
|
|
2814
|
-
# present and has a value (is not null). Include that value
|
|
2815
|
-
# `NextToken` request parameter in the next call to the operation
|
|
2816
|
-
# the next part of the results. Note that Organizations might
|
|
2817
|
-
# fewer results than the maximum even when there are more results
|
|
2815
|
+
# per page in the response. If you do not include this parameter, it
|
|
2816
|
+
# defaults to a value that is specific to the operation. If additional
|
|
2817
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
2818
|
+
# element is present and has a value (is not null). Include that value
|
|
2819
|
+
# as the `NextToken` request parameter in the next call to the operation
|
|
2820
|
+
# to get the next part of the results. Note that Organizations might
|
|
2821
|
+
# return fewer results than the maximum even when there are more results
|
|
2818
2822
|
# available. You should check `NextToken` after every operation to
|
|
2819
2823
|
# ensure that you receive all of the results.
|
|
2820
2824
|
#
|
|
@@ -2935,13 +2939,13 @@ module Aws::Organizations
|
|
|
2935
2939
|
#
|
|
2936
2940
|
# @option params [Integer] :max_results
|
|
2937
2941
|
# (Optional) Use this to limit the number of results you want included
|
|
2938
|
-
# in the response. If you do not include this parameter, it
|
|
2939
|
-
# a value that is specific to the operation. If additional
|
|
2940
|
-
# beyond the maximum you specify, the `NextToken` response
|
|
2941
|
-
# present and has a value (is not null). Include that value
|
|
2942
|
-
# `NextToken` request parameter in the next call to the operation
|
|
2943
|
-
# the next part of the results. Note that Organizations might
|
|
2944
|
-
# fewer results than the maximum even when there are more results
|
|
2942
|
+
# per page in the response. If you do not include this parameter, it
|
|
2943
|
+
# defaults to a value that is specific to the operation. If additional
|
|
2944
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
2945
|
+
# element is present and has a value (is not null). Include that value
|
|
2946
|
+
# as the `NextToken` request parameter in the next call to the operation
|
|
2947
|
+
# to get the next part of the results. Note that Organizations might
|
|
2948
|
+
# return fewer results than the maximum even when there are more results
|
|
2945
2949
|
# available. You should check `NextToken` after every operation to
|
|
2946
2950
|
# ensure that you receive all of the results.
|
|
2947
2951
|
#
|
|
@@ -3082,13 +3086,13 @@ module Aws::Organizations
|
|
|
3082
3086
|
#
|
|
3083
3087
|
# @option params [Integer] :max_results
|
|
3084
3088
|
# (Optional) Use this to limit the number of results you want included
|
|
3085
|
-
# in the response. If you do not include this parameter, it
|
|
3086
|
-
# a value that is specific to the operation. If additional
|
|
3087
|
-
# beyond the maximum you specify, the `NextToken` response
|
|
3088
|
-
# present and has a value (is not null). Include that value
|
|
3089
|
-
# `NextToken` request parameter in the next call to the operation
|
|
3090
|
-
# the next part of the results. Note that Organizations might
|
|
3091
|
-
# fewer results than the maximum even when there are more results
|
|
3089
|
+
# per page in the response. If you do not include this parameter, it
|
|
3090
|
+
# defaults to a value that is specific to the operation. If additional
|
|
3091
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
3092
|
+
# element is present and has a value (is not null). Include that value
|
|
3093
|
+
# as the `NextToken` request parameter in the next call to the operation
|
|
3094
|
+
# to get the next part of the results. Note that Organizations might
|
|
3095
|
+
# return fewer results than the maximum even when there are more results
|
|
3092
3096
|
# available. You should check `NextToken` after every operation to
|
|
3093
3097
|
# ensure that you receive all of the results.
|
|
3094
3098
|
#
|
|
@@ -3274,13 +3278,13 @@ module Aws::Organizations
|
|
|
3274
3278
|
#
|
|
3275
3279
|
# @option params [Integer] :max_results
|
|
3276
3280
|
# (Optional) Use this to limit the number of results you want included
|
|
3277
|
-
# in the response. If you do not include this parameter, it
|
|
3278
|
-
# a value that is specific to the operation. If additional
|
|
3279
|
-
# beyond the maximum you specify, the `NextToken` response
|
|
3280
|
-
# present and has a value (is not null). Include that value
|
|
3281
|
-
# `NextToken` request parameter in the next call to the operation
|
|
3282
|
-
# the next part of the results. Note that Organizations might
|
|
3283
|
-
# fewer results than the maximum even when there are more results
|
|
3281
|
+
# per page in the response. If you do not include this parameter, it
|
|
3282
|
+
# defaults to a value that is specific to the operation. If additional
|
|
3283
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
3284
|
+
# element is present and has a value (is not null). Include that value
|
|
3285
|
+
# as the `NextToken` request parameter in the next call to the operation
|
|
3286
|
+
# to get the next part of the results. Note that Organizations might
|
|
3287
|
+
# return fewer results than the maximum even when there are more results
|
|
3284
3288
|
# available. You should check `NextToken` after every operation to
|
|
3285
3289
|
# ensure that you receive all of the results.
|
|
3286
3290
|
#
|
|
@@ -3385,13 +3389,13 @@ module Aws::Organizations
|
|
|
3385
3389
|
#
|
|
3386
3390
|
# @option params [Integer] :max_results
|
|
3387
3391
|
# (Optional) Use this to limit the number of results you want included
|
|
3388
|
-
# in the response. If you do not include this parameter, it
|
|
3389
|
-
# a value that is specific to the operation. If additional
|
|
3390
|
-
# beyond the maximum you specify, the `NextToken` response
|
|
3391
|
-
# present and has a value (is not null). Include that value
|
|
3392
|
-
# `NextToken` request parameter in the next call to the operation
|
|
3393
|
-
# the next part of the results. Note that Organizations might
|
|
3394
|
-
# fewer results than the maximum even when there are more results
|
|
3392
|
+
# per page in the response. If you do not include this parameter, it
|
|
3393
|
+
# defaults to a value that is specific to the operation. If additional
|
|
3394
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
3395
|
+
# element is present and has a value (is not null). Include that value
|
|
3396
|
+
# as the `NextToken` request parameter in the next call to the operation
|
|
3397
|
+
# to get the next part of the results. Note that Organizations might
|
|
3398
|
+
# return fewer results than the maximum even when there are more results
|
|
3395
3399
|
# available. You should check `NextToken` after every operation to
|
|
3396
3400
|
# ensure that you receive all of the results.
|
|
3397
3401
|
#
|
|
@@ -3468,13 +3472,13 @@ module Aws::Organizations
|
|
|
3468
3472
|
#
|
|
3469
3473
|
# @option params [Integer] :max_results
|
|
3470
3474
|
# (Optional) Use this to limit the number of results you want included
|
|
3471
|
-
# in the response. If you do not include this parameter, it
|
|
3472
|
-
# a value that is specific to the operation. If additional
|
|
3473
|
-
# beyond the maximum you specify, the `NextToken` response
|
|
3474
|
-
# present and has a value (is not null). Include that value
|
|
3475
|
-
# `NextToken` request parameter in the next call to the operation
|
|
3476
|
-
# the next part of the results. Note that Organizations might
|
|
3477
|
-
# fewer results than the maximum even when there are more results
|
|
3475
|
+
# per page in the response. If you do not include this parameter, it
|
|
3476
|
+
# defaults to a value that is specific to the operation. If additional
|
|
3477
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
3478
|
+
# element is present and has a value (is not null). Include that value
|
|
3479
|
+
# as the `NextToken` request parameter in the next call to the operation
|
|
3480
|
+
# to get the next part of the results. Note that Organizations might
|
|
3481
|
+
# return fewer results than the maximum even when there are more results
|
|
3478
3482
|
# available. You should check `NextToken` after every operation to
|
|
3479
3483
|
# ensure that you receive all of the results.
|
|
3480
3484
|
#
|
|
@@ -3597,13 +3601,13 @@ module Aws::Organizations
|
|
|
3597
3601
|
#
|
|
3598
3602
|
# @option params [Integer] :max_results
|
|
3599
3603
|
# (Optional) Use this to limit the number of results you want included
|
|
3600
|
-
# in the response. If you do not include this parameter, it
|
|
3601
|
-
# a value that is specific to the operation. If additional
|
|
3602
|
-
# beyond the maximum you specify, the `NextToken` response
|
|
3603
|
-
# present and has a value (is not null). Include that value
|
|
3604
|
-
# `NextToken` request parameter in the next call to the operation
|
|
3605
|
-
# the next part of the results. Note that Organizations might
|
|
3606
|
-
# fewer results than the maximum even when there are more results
|
|
3604
|
+
# per page in the response. If you do not include this parameter, it
|
|
3605
|
+
# defaults to a value that is specific to the operation. If additional
|
|
3606
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
3607
|
+
# element is present and has a value (is not null). Include that value
|
|
3608
|
+
# as the `NextToken` request parameter in the next call to the operation
|
|
3609
|
+
# to get the next part of the results. Note that Organizations might
|
|
3610
|
+
# return fewer results than the maximum even when there are more results
|
|
3607
3611
|
# available. You should check `NextToken` after every operation to
|
|
3608
3612
|
# ensure that you receive all of the results.
|
|
3609
3613
|
#
|
|
@@ -3697,13 +3701,13 @@ module Aws::Organizations
|
|
|
3697
3701
|
#
|
|
3698
3702
|
# @option params [Integer] :max_results
|
|
3699
3703
|
# (Optional) Use this to limit the number of results you want included
|
|
3700
|
-
# in the response. If you do not include this parameter, it
|
|
3701
|
-
# a value that is specific to the operation. If additional
|
|
3702
|
-
# beyond the maximum you specify, the `NextToken` response
|
|
3703
|
-
# present and has a value (is not null). Include that value
|
|
3704
|
-
# `NextToken` request parameter in the next call to the operation
|
|
3705
|
-
# the next part of the results. Note that Organizations might
|
|
3706
|
-
# fewer results than the maximum even when there are more results
|
|
3704
|
+
# per page in the response. If you do not include this parameter, it
|
|
3705
|
+
# defaults to a value that is specific to the operation. If additional
|
|
3706
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
3707
|
+
# element is present and has a value (is not null). Include that value
|
|
3708
|
+
# as the `NextToken` request parameter in the next call to the operation
|
|
3709
|
+
# to get the next part of the results. Note that Organizations might
|
|
3710
|
+
# return fewer results than the maximum even when there are more results
|
|
3707
3711
|
# available. You should check `NextToken` after every operation to
|
|
3708
3712
|
# ensure that you receive all of the results.
|
|
3709
3713
|
#
|
|
@@ -3797,13 +3801,13 @@ module Aws::Organizations
|
|
|
3797
3801
|
#
|
|
3798
3802
|
# @option params [Integer] :max_results
|
|
3799
3803
|
# (Optional) Use this to limit the number of results you want included
|
|
3800
|
-
# in the response. If you do not include this parameter, it
|
|
3801
|
-
# a value that is specific to the operation. If additional
|
|
3802
|
-
# beyond the maximum you specify, the `NextToken` response
|
|
3803
|
-
# present and has a value (is not null). Include that value
|
|
3804
|
-
# `NextToken` request parameter in the next call to the operation
|
|
3805
|
-
# the next part of the results. Note that Organizations might
|
|
3806
|
-
# fewer results than the maximum even when there are more results
|
|
3804
|
+
# per page in the response. If you do not include this parameter, it
|
|
3805
|
+
# defaults to a value that is specific to the operation. If additional
|
|
3806
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
3807
|
+
# element is present and has a value (is not null). Include that value
|
|
3808
|
+
# as the `NextToken` request parameter in the next call to the operation
|
|
3809
|
+
# to get the next part of the results. Note that Organizations might
|
|
3810
|
+
# return fewer results than the maximum even when there are more results
|
|
3807
3811
|
# available. You should check `NextToken` after every operation to
|
|
3808
3812
|
# ensure that you receive all of the results.
|
|
3809
3813
|
#
|
|
@@ -4237,7 +4241,7 @@ module Aws::Organizations
|
|
|
4237
4241
|
params: params,
|
|
4238
4242
|
config: config)
|
|
4239
4243
|
context[:gem_name] = 'aws-sdk-organizations'
|
|
4240
|
-
context[:gem_version] = '1.
|
|
4244
|
+
context[:gem_version] = '1.13.0'
|
|
4241
4245
|
Seahorse::Client::Request.new(handlers, context)
|
|
4242
4246
|
end
|
|
4243
4247
|
|
|
@@ -23,6 +23,7 @@ module Aws::Organizations
|
|
|
23
23
|
AccountJoinedMethod = Shapes::StringShape.new(name: 'AccountJoinedMethod')
|
|
24
24
|
AccountName = Shapes::StringShape.new(name: 'AccountName')
|
|
25
25
|
AccountNotFoundException = Shapes::StructureShape.new(name: 'AccountNotFoundException')
|
|
26
|
+
AccountOwnerNotVerifiedException = Shapes::StructureShape.new(name: 'AccountOwnerNotVerifiedException')
|
|
26
27
|
AccountStatus = Shapes::StringShape.new(name: 'AccountStatus')
|
|
27
28
|
Accounts = Shapes::ListShape.new(name: 'Accounts')
|
|
28
29
|
ActionType = Shapes::StringShape.new(name: 'ActionType')
|
|
@@ -613,7 +614,6 @@ module Aws::Organizations
|
|
|
613
614
|
"serviceId" => "Organizations",
|
|
614
615
|
"signatureVersion" => "v4",
|
|
615
616
|
"targetPrefix" => "AWSOrganizationsV20161128",
|
|
616
|
-
"timestampFormat" => "unixTimestamp",
|
|
617
617
|
"uid" => "organizations-2016-11-28",
|
|
618
618
|
}
|
|
619
619
|
|
|
@@ -990,6 +990,7 @@ module Aws::Organizations
|
|
|
990
990
|
o.output = Shapes::ShapeRef.new(shape: InviteAccountToOrganizationResponse)
|
|
991
991
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
992
992
|
o.errors << Shapes::ShapeRef.new(shape: AWSOrganizationsNotInUseException)
|
|
993
|
+
o.errors << Shapes::ShapeRef.new(shape: AccountOwnerNotVerifiedException)
|
|
993
994
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
|
994
995
|
o.errors << Shapes::ShapeRef.new(shape: HandshakeConstraintViolationException)
|
|
995
996
|
o.errors << Shapes::ShapeRef.new(shape: DuplicateHandshakeException)
|
|
@@ -254,7 +254,7 @@ module Aws::Organizations
|
|
|
254
254
|
# The email address of the owner to assign to the new member account.
|
|
255
255
|
# This email address must not already be associated with another AWS
|
|
256
256
|
# account. You must use a valid email address to complete account
|
|
257
|
-
# creation. You
|
|
257
|
+
# creation. You can't access the root user of the account or remove
|
|
258
258
|
# an account that was created with an invalid email address.
|
|
259
259
|
# @return [String]
|
|
260
260
|
#
|
|
@@ -265,13 +265,13 @@ module Aws::Organizations
|
|
|
265
265
|
# @!attribute [rw] role_name
|
|
266
266
|
# (Optional)
|
|
267
267
|
#
|
|
268
|
-
# The name of an IAM role that Organizations automatically
|
|
268
|
+
# The name of an IAM role that AWS Organizations automatically
|
|
269
269
|
# preconfigures in the new member account. This role trusts the master
|
|
270
270
|
# account, allowing users in the master account to assume the role, as
|
|
271
271
|
# permitted by the master account administrator. The role has
|
|
272
272
|
# administrator permissions in the new member account.
|
|
273
273
|
#
|
|
274
|
-
# If you
|
|
274
|
+
# If you don't specify this parameter, the role name defaults to
|
|
275
275
|
# `OrganizationAccountAccessRole`.
|
|
276
276
|
#
|
|
277
277
|
# For more information about how to use this role to access the member
|
|
@@ -295,12 +295,12 @@ module Aws::Organizations
|
|
|
295
295
|
# @!attribute [rw] iam_user_access_to_billing
|
|
296
296
|
# If set to `ALLOW`, the new account enables IAM users to access
|
|
297
297
|
# account billing information *if* they have the required permissions.
|
|
298
|
-
# If set to `DENY`,
|
|
299
|
-
#
|
|
300
|
-
#
|
|
301
|
-
#
|
|
298
|
+
# If set to `DENY`, only the root user of the new account can access
|
|
299
|
+
# account billing information. For more information, see [Activating
|
|
300
|
+
# Access to the Billing and Cost Management Console][1] in the *AWS
|
|
301
|
+
# Billing and Cost Management User Guide*.
|
|
302
302
|
#
|
|
303
|
-
# If you
|
|
303
|
+
# If you don't specify this parameter, the value defaults to `ALLOW`,
|
|
304
304
|
# and IAM users and roles with the required permissions can access
|
|
305
305
|
# billing information for the new account.
|
|
306
306
|
#
|
|
@@ -323,9 +323,16 @@ module Aws::Organizations
|
|
|
323
323
|
# A structure that contains details about the request to create an
|
|
324
324
|
# account. This response structure might not be fully populated when
|
|
325
325
|
# you first receive it because account creation is an asynchronous
|
|
326
|
-
# process. You can pass the returned CreateAccountStatus ID as a
|
|
327
|
-
# parameter to
|
|
328
|
-
# progress of the request at later times.
|
|
326
|
+
# process. You can pass the returned `CreateAccountStatus` ID as a
|
|
327
|
+
# parameter to DescribeCreateAccountStatus to get status about the
|
|
328
|
+
# progress of the request at later times. You can also check the AWS
|
|
329
|
+
# CloudTrail log for the `CreateAccountResult` event. For more
|
|
330
|
+
# information, see [Monitoring the Activity in Your Organization][1]
|
|
331
|
+
# in the *AWS Organizations User Guide*.
|
|
332
|
+
#
|
|
333
|
+
#
|
|
334
|
+
#
|
|
335
|
+
# [1]: http://docs.aws.amazon.com/organizations/latest/userguide/orgs_monitoring.html
|
|
329
336
|
# @return [Types::CreateAccountStatus]
|
|
330
337
|
#
|
|
331
338
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateAccountResponse AWS API Documentation
|
|
@@ -1368,7 +1375,7 @@ module Aws::Organizations
|
|
|
1368
1375
|
# then you must specify the email address that is associated with the
|
|
1369
1376
|
# account.
|
|
1370
1377
|
#
|
|
1371
|
-
# `--target Id=
|
|
1378
|
+
# `--target Id=diego@example.com,Type=EMAIL`
|
|
1372
1379
|
# @return [Types::HandshakeParty]
|
|
1373
1380
|
#
|
|
1374
1381
|
# @!attribute [rw] notes
|
|
@@ -1413,9 +1420,9 @@ module Aws::Organizations
|
|
|
1413
1420
|
#
|
|
1414
1421
|
# @!attribute [rw] max_results
|
|
1415
1422
|
# (Optional) Use this to limit the number of results you want included
|
|
1416
|
-
# in the response. If you do not include this parameter, it
|
|
1417
|
-
# to a value that is specific to the operation. If additional
|
|
1418
|
-
# exist beyond the maximum you specify, the `NextToken` response
|
|
1423
|
+
# per page in the response. If you do not include this parameter, it
|
|
1424
|
+
# defaults to a value that is specific to the operation. If additional
|
|
1425
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
1419
1426
|
# element is present and has a value (is not null). Include that value
|
|
1420
1427
|
# as the `NextToken` request parameter in the next call to the
|
|
1421
1428
|
# operation to get the next part of the results. Note that
|
|
@@ -1478,9 +1485,9 @@ module Aws::Organizations
|
|
|
1478
1485
|
#
|
|
1479
1486
|
# @!attribute [rw] max_results
|
|
1480
1487
|
# (Optional) Use this to limit the number of results you want included
|
|
1481
|
-
# in the response. If you do not include this parameter, it
|
|
1482
|
-
# to a value that is specific to the operation. If additional
|
|
1483
|
-
# exist beyond the maximum you specify, the `NextToken` response
|
|
1488
|
+
# per page in the response. If you do not include this parameter, it
|
|
1489
|
+
# defaults to a value that is specific to the operation. If additional
|
|
1490
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
1484
1491
|
# element is present and has a value (is not null). Include that value
|
|
1485
1492
|
# as the `NextToken` request parameter in the next call to the
|
|
1486
1493
|
# operation to get the next part of the results. Note that
|
|
@@ -1535,9 +1542,9 @@ module Aws::Organizations
|
|
|
1535
1542
|
#
|
|
1536
1543
|
# @!attribute [rw] max_results
|
|
1537
1544
|
# (Optional) Use this to limit the number of results you want included
|
|
1538
|
-
# in the response. If you do not include this parameter, it
|
|
1539
|
-
# to a value that is specific to the operation. If additional
|
|
1540
|
-
# exist beyond the maximum you specify, the `NextToken` response
|
|
1545
|
+
# per page in the response. If you do not include this parameter, it
|
|
1546
|
+
# defaults to a value that is specific to the operation. If additional
|
|
1547
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
1541
1548
|
# element is present and has a value (is not null). Include that value
|
|
1542
1549
|
# as the `NextToken` request parameter in the next call to the
|
|
1543
1550
|
# operation to get the next part of the results. Note that
|
|
@@ -1617,9 +1624,9 @@ module Aws::Organizations
|
|
|
1617
1624
|
#
|
|
1618
1625
|
# @!attribute [rw] max_results
|
|
1619
1626
|
# (Optional) Use this to limit the number of results you want included
|
|
1620
|
-
# in the response. If you do not include this parameter, it
|
|
1621
|
-
# to a value that is specific to the operation. If additional
|
|
1622
|
-
# exist beyond the maximum you specify, the `NextToken` response
|
|
1627
|
+
# per page in the response. If you do not include this parameter, it
|
|
1628
|
+
# defaults to a value that is specific to the operation. If additional
|
|
1629
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
1623
1630
|
# element is present and has a value (is not null). Include that value
|
|
1624
1631
|
# as the `NextToken` request parameter in the next call to the
|
|
1625
1632
|
# operation to get the next part of the results. Note that
|
|
@@ -1682,9 +1689,9 @@ module Aws::Organizations
|
|
|
1682
1689
|
#
|
|
1683
1690
|
# @!attribute [rw] max_results
|
|
1684
1691
|
# (Optional) Use this to limit the number of results you want included
|
|
1685
|
-
# in the response. If you do not include this parameter, it
|
|
1686
|
-
# to a value that is specific to the operation. If additional
|
|
1687
|
-
# exist beyond the maximum you specify, the `NextToken` response
|
|
1692
|
+
# per page in the response. If you do not include this parameter, it
|
|
1693
|
+
# defaults to a value that is specific to the operation. If additional
|
|
1694
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
1688
1695
|
# element is present and has a value (is not null). Include that value
|
|
1689
1696
|
# as the `NextToken` request parameter in the next call to the
|
|
1690
1697
|
# operation to get the next part of the results. Note that
|
|
@@ -1756,9 +1763,9 @@ module Aws::Organizations
|
|
|
1756
1763
|
#
|
|
1757
1764
|
# @!attribute [rw] max_results
|
|
1758
1765
|
# (Optional) Use this to limit the number of results you want included
|
|
1759
|
-
# in the response. If you do not include this parameter, it
|
|
1760
|
-
# to a value that is specific to the operation. If additional
|
|
1761
|
-
# exist beyond the maximum you specify, the `NextToken` response
|
|
1766
|
+
# per page in the response. If you do not include this parameter, it
|
|
1767
|
+
# defaults to a value that is specific to the operation. If additional
|
|
1768
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
1762
1769
|
# element is present and has a value (is not null). Include that value
|
|
1763
1770
|
# as the `NextToken` request parameter in the next call to the
|
|
1764
1771
|
# operation to get the next part of the results. Note that
|
|
@@ -1829,9 +1836,9 @@ module Aws::Organizations
|
|
|
1829
1836
|
#
|
|
1830
1837
|
# @!attribute [rw] max_results
|
|
1831
1838
|
# (Optional) Use this to limit the number of results you want included
|
|
1832
|
-
# in the response. If you do not include this parameter, it
|
|
1833
|
-
# to a value that is specific to the operation. If additional
|
|
1834
|
-
# exist beyond the maximum you specify, the `NextToken` response
|
|
1839
|
+
# per page in the response. If you do not include this parameter, it
|
|
1840
|
+
# defaults to a value that is specific to the operation. If additional
|
|
1841
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
1835
1842
|
# element is present and has a value (is not null). Include that value
|
|
1836
1843
|
# as the `NextToken` request parameter in the next call to the
|
|
1837
1844
|
# operation to get the next part of the results. Note that
|
|
@@ -1908,9 +1915,9 @@ module Aws::Organizations
|
|
|
1908
1915
|
#
|
|
1909
1916
|
# @!attribute [rw] max_results
|
|
1910
1917
|
# (Optional) Use this to limit the number of results you want included
|
|
1911
|
-
# in the response. If you do not include this parameter, it
|
|
1912
|
-
# to a value that is specific to the operation. If additional
|
|
1913
|
-
# exist beyond the maximum you specify, the `NextToken` response
|
|
1918
|
+
# per page in the response. If you do not include this parameter, it
|
|
1919
|
+
# defaults to a value that is specific to the operation. If additional
|
|
1920
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
1914
1921
|
# element is present and has a value (is not null). Include that value
|
|
1915
1922
|
# as the `NextToken` request parameter in the next call to the
|
|
1916
1923
|
# operation to get the next part of the results. Note that
|
|
@@ -1985,9 +1992,9 @@ module Aws::Organizations
|
|
|
1985
1992
|
#
|
|
1986
1993
|
# @!attribute [rw] max_results
|
|
1987
1994
|
# (Optional) Use this to limit the number of results you want included
|
|
1988
|
-
# in the response. If you do not include this parameter, it
|
|
1989
|
-
# to a value that is specific to the operation. If additional
|
|
1990
|
-
# exist beyond the maximum you specify, the `NextToken` response
|
|
1995
|
+
# per page in the response. If you do not include this parameter, it
|
|
1996
|
+
# defaults to a value that is specific to the operation. If additional
|
|
1997
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
1991
1998
|
# element is present and has a value (is not null). Include that value
|
|
1992
1999
|
# as the `NextToken` request parameter in the next call to the
|
|
1993
2000
|
# operation to get the next part of the results. Note that
|
|
@@ -2070,9 +2077,9 @@ module Aws::Organizations
|
|
|
2070
2077
|
#
|
|
2071
2078
|
# @!attribute [rw] max_results
|
|
2072
2079
|
# (Optional) Use this to limit the number of results you want included
|
|
2073
|
-
# in the response. If you do not include this parameter, it
|
|
2074
|
-
# to a value that is specific to the operation. If additional
|
|
2075
|
-
# exist beyond the maximum you specify, the `NextToken` response
|
|
2080
|
+
# per page in the response. If you do not include this parameter, it
|
|
2081
|
+
# defaults to a value that is specific to the operation. If additional
|
|
2082
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
2076
2083
|
# element is present and has a value (is not null). Include that value
|
|
2077
2084
|
# as the `NextToken` request parameter in the next call to the
|
|
2078
2085
|
# operation to get the next part of the results. Note that
|
|
@@ -2134,9 +2141,9 @@ module Aws::Organizations
|
|
|
2134
2141
|
#
|
|
2135
2142
|
# @!attribute [rw] max_results
|
|
2136
2143
|
# (Optional) Use this to limit the number of results you want included
|
|
2137
|
-
# in the response. If you do not include this parameter, it
|
|
2138
|
-
# to a value that is specific to the operation. If additional
|
|
2139
|
-
# exist beyond the maximum you specify, the `NextToken` response
|
|
2144
|
+
# per page in the response. If you do not include this parameter, it
|
|
2145
|
+
# defaults to a value that is specific to the operation. If additional
|
|
2146
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
2140
2147
|
# element is present and has a value (is not null). Include that value
|
|
2141
2148
|
# as the `NextToken` request parameter in the next call to the
|
|
2142
2149
|
# operation to get the next part of the results. Note that
|
|
@@ -2193,9 +2200,9 @@ module Aws::Organizations
|
|
|
2193
2200
|
#
|
|
2194
2201
|
# @!attribute [rw] max_results
|
|
2195
2202
|
# (Optional) Use this to limit the number of results you want included
|
|
2196
|
-
# in the response. If you do not include this parameter, it
|
|
2197
|
-
# to a value that is specific to the operation. If additional
|
|
2198
|
-
# exist beyond the maximum you specify, the `NextToken` response
|
|
2203
|
+
# per page in the response. If you do not include this parameter, it
|
|
2204
|
+
# defaults to a value that is specific to the operation. If additional
|
|
2205
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
2199
2206
|
# element is present and has a value (is not null). Include that value
|
|
2200
2207
|
# as the `NextToken` request parameter in the next call to the
|
|
2201
2208
|
# operation to get the next part of the results. Note that
|
|
@@ -2262,9 +2269,9 @@ module Aws::Organizations
|
|
|
2262
2269
|
#
|
|
2263
2270
|
# @!attribute [rw] max_results
|
|
2264
2271
|
# (Optional) Use this to limit the number of results you want included
|
|
2265
|
-
# in the response. If you do not include this parameter, it
|
|
2266
|
-
# to a value that is specific to the operation. If additional
|
|
2267
|
-
# exist beyond the maximum you specify, the `NextToken` response
|
|
2272
|
+
# per page in the response. If you do not include this parameter, it
|
|
2273
|
+
# defaults to a value that is specific to the operation. If additional
|
|
2274
|
+
# items exist beyond the maximum you specify, the `NextToken` response
|
|
2268
2275
|
# element is present and has a value (is not null). Include that value
|
|
2269
2276
|
# as the `NextToken` request parameter in the next call to the
|
|
2270
2277
|
# operation to get the next part of the results. Note that
|
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.
|
|
4
|
+
version: 1.13.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: 2018-09-
|
|
11
|
+
date: 2018-09-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|