aws-sdk-organizations 1.129.0 → 1.130.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-organizations/client.rb +76 -22
- data/lib/aws-sdk-organizations/types.rb +60 -0
- data/lib/aws-sdk-organizations.rb +1 -1
- data/sig/client.rbs +10 -10
- data/sig/types.rbs +13 -13
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7078a57444280752150a0e107008667e750e5ddbafdd06a80c850af89b092234
|
|
4
|
+
data.tar.gz: '095b3682463115488809a0fdde48d55a3babb4567d66f34a9ad0327d71268c9c'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5da9b2b722cbded3fee83079c6894669e6ac3286a3d2a6974ab21bea8026bb333bbe6ee78b876e4508ed40187e66826cfee0e34956c7f3b323bf94b39cdd9be7
|
|
7
|
+
data.tar.gz: e5f3bbe7236c5e0495de647259ec70b6e6897209ef34f3ba2e53b4b58372e2da2a599f5c753d58fb499aa5db2a9c34640dbb1b28ec0657ce5edb332202b82afb
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.130.0
|
|
@@ -638,6 +638,10 @@ module Aws::Organizations
|
|
|
638
638
|
#
|
|
639
639
|
# * [INSPECTOR\_POLICY][10]
|
|
640
640
|
#
|
|
641
|
+
# * [BEDROCK\_POLICY][11]
|
|
642
|
+
#
|
|
643
|
+
# * [S3\_POLICY][12]
|
|
644
|
+
#
|
|
641
645
|
# You can only call this operation from the management account or a
|
|
642
646
|
# member account that is a delegated administrator.
|
|
643
647
|
#
|
|
@@ -653,6 +657,8 @@ module Aws::Organizations
|
|
|
653
657
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
654
658
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
655
659
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
660
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
661
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
656
662
|
#
|
|
657
663
|
# @option params [required, String] :policy_id
|
|
658
664
|
# ID for the policy that you want to attach to the target. You can get
|
|
@@ -1554,7 +1560,7 @@ module Aws::Organizations
|
|
|
1554
1560
|
# resp.organization.master_account_id #=> String
|
|
1555
1561
|
# resp.organization.master_account_email #=> String
|
|
1556
1562
|
# resp.organization.available_policy_types #=> Array
|
|
1557
|
-
# resp.organization.available_policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
1563
|
+
# resp.organization.available_policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY"
|
|
1558
1564
|
# resp.organization.available_policy_types[0].status #=> String, one of "ENABLED", "PENDING_ENABLE", "PENDING_DISABLE"
|
|
1559
1565
|
#
|
|
1560
1566
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateOrganization AWS API Documentation
|
|
@@ -1741,6 +1747,10 @@ module Aws::Organizations
|
|
|
1741
1747
|
#
|
|
1742
1748
|
# * [INSPECTOR\_POLICY][10]
|
|
1743
1749
|
#
|
|
1750
|
+
# * [BEDROCK\_POLICY][11]
|
|
1751
|
+
#
|
|
1752
|
+
# * [S3\_POLICY][12]
|
|
1753
|
+
#
|
|
1744
1754
|
#
|
|
1745
1755
|
#
|
|
1746
1756
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -1753,6 +1763,8 @@ module Aws::Organizations
|
|
|
1753
1763
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
1754
1764
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
1755
1765
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
1766
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
1767
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
1756
1768
|
#
|
|
1757
1769
|
# @option params [Array<Types::Tag>] :tags
|
|
1758
1770
|
# A list of tags that you want to attach to the newly created policy.
|
|
@@ -1809,7 +1821,7 @@ module Aws::Organizations
|
|
|
1809
1821
|
# content: "PolicyContent", # required
|
|
1810
1822
|
# description: "PolicyDescription", # required
|
|
1811
1823
|
# name: "PolicyName", # required
|
|
1812
|
-
# type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
1824
|
+
# type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY, BEDROCK_POLICY, S3_POLICY
|
|
1813
1825
|
# tags: [
|
|
1814
1826
|
# {
|
|
1815
1827
|
# key: "TagKey", # required
|
|
@@ -1824,7 +1836,7 @@ module Aws::Organizations
|
|
|
1824
1836
|
# resp.policy.policy_summary.arn #=> String
|
|
1825
1837
|
# resp.policy.policy_summary.name #=> String
|
|
1826
1838
|
# resp.policy.policy_summary.description #=> String
|
|
1827
|
-
# resp.policy.policy_summary.type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
1839
|
+
# resp.policy.policy_summary.type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY"
|
|
1828
1840
|
# resp.policy.policy_summary.aws_managed #=> Boolean
|
|
1829
1841
|
# resp.policy.content #=> String
|
|
1830
1842
|
#
|
|
@@ -2296,6 +2308,10 @@ module Aws::Organizations
|
|
|
2296
2308
|
#
|
|
2297
2309
|
# * [INSPECTOR\_POLICY][8]
|
|
2298
2310
|
#
|
|
2311
|
+
# * [BEDROCK\_POLICY][9]
|
|
2312
|
+
#
|
|
2313
|
+
# * [S3\_POLICY][10]
|
|
2314
|
+
#
|
|
2299
2315
|
#
|
|
2300
2316
|
#
|
|
2301
2317
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html
|
|
@@ -2306,6 +2322,8 @@ module Aws::Organizations
|
|
|
2306
2322
|
# [6]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
2307
2323
|
# [7]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
2308
2324
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
2325
|
+
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
2326
|
+
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
2309
2327
|
#
|
|
2310
2328
|
# @option params [String] :target_id
|
|
2311
2329
|
# When you're signed in as the management account, specify the ID of
|
|
@@ -2319,7 +2337,7 @@ module Aws::Organizations
|
|
|
2319
2337
|
# @example Request syntax with placeholder values
|
|
2320
2338
|
#
|
|
2321
2339
|
# resp = client.describe_effective_policy({
|
|
2322
|
-
# policy_type: "TAG_POLICY", # required, accepts TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
2340
|
+
# policy_type: "TAG_POLICY", # required, accepts TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY, BEDROCK_POLICY, S3_POLICY
|
|
2323
2341
|
# target_id: "PolicyTargetId",
|
|
2324
2342
|
# })
|
|
2325
2343
|
#
|
|
@@ -2328,7 +2346,7 @@ module Aws::Organizations
|
|
|
2328
2346
|
# resp.effective_policy.policy_content #=> String
|
|
2329
2347
|
# resp.effective_policy.last_updated_timestamp #=> Time
|
|
2330
2348
|
# resp.effective_policy.target_id #=> String
|
|
2331
|
-
# resp.effective_policy.policy_type #=> String, one of "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
2349
|
+
# resp.effective_policy.policy_type #=> String, one of "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY"
|
|
2332
2350
|
#
|
|
2333
2351
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeEffectivePolicy AWS API Documentation
|
|
2334
2352
|
#
|
|
@@ -2495,7 +2513,7 @@ module Aws::Organizations
|
|
|
2495
2513
|
# resp.organization.master_account_id #=> String
|
|
2496
2514
|
# resp.organization.master_account_email #=> String
|
|
2497
2515
|
# resp.organization.available_policy_types #=> Array
|
|
2498
|
-
# resp.organization.available_policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
2516
|
+
# resp.organization.available_policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY"
|
|
2499
2517
|
# resp.organization.available_policy_types[0].status #=> String, one of "ENABLED", "PENDING_ENABLE", "PENDING_DISABLE"
|
|
2500
2518
|
#
|
|
2501
2519
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeOrganization AWS API Documentation
|
|
@@ -2625,7 +2643,7 @@ module Aws::Organizations
|
|
|
2625
2643
|
# resp.policy.policy_summary.arn #=> String
|
|
2626
2644
|
# resp.policy.policy_summary.name #=> String
|
|
2627
2645
|
# resp.policy.policy_summary.description #=> String
|
|
2628
|
-
# resp.policy.policy_summary.type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
2646
|
+
# resp.policy.policy_summary.type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY"
|
|
2629
2647
|
# resp.policy.policy_summary.aws_managed #=> Boolean
|
|
2630
2648
|
# resp.policy.content #=> String
|
|
2631
2649
|
#
|
|
@@ -2971,6 +2989,10 @@ module Aws::Organizations
|
|
|
2971
2989
|
#
|
|
2972
2990
|
# * [INSPECTOR\_POLICY][10]
|
|
2973
2991
|
#
|
|
2992
|
+
# * [BEDROCK\_POLICY][11]
|
|
2993
|
+
#
|
|
2994
|
+
# * [S3\_POLICY][12]
|
|
2995
|
+
#
|
|
2974
2996
|
#
|
|
2975
2997
|
#
|
|
2976
2998
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -2983,6 +3005,8 @@ module Aws::Organizations
|
|
|
2983
3005
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
2984
3006
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
2985
3007
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
3008
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
3009
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
2986
3010
|
#
|
|
2987
3011
|
# @return [Types::DisablePolicyTypeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2988
3012
|
#
|
|
@@ -3014,7 +3038,7 @@ module Aws::Organizations
|
|
|
3014
3038
|
#
|
|
3015
3039
|
# resp = client.disable_policy_type({
|
|
3016
3040
|
# root_id: "RootId", # required
|
|
3017
|
-
# policy_type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
3041
|
+
# policy_type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY, BEDROCK_POLICY, S3_POLICY
|
|
3018
3042
|
# })
|
|
3019
3043
|
#
|
|
3020
3044
|
# @example Response structure
|
|
@@ -3023,7 +3047,7 @@ module Aws::Organizations
|
|
|
3023
3047
|
# resp.root.arn #=> String
|
|
3024
3048
|
# resp.root.name #=> String
|
|
3025
3049
|
# resp.root.policy_types #=> Array
|
|
3026
|
-
# resp.root.policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
3050
|
+
# resp.root.policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY"
|
|
3027
3051
|
# resp.root.policy_types[0].status #=> String, one of "ENABLED", "PENDING_ENABLE", "PENDING_DISABLE"
|
|
3028
3052
|
#
|
|
3029
3053
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DisablePolicyType AWS API Documentation
|
|
@@ -3240,6 +3264,10 @@ module Aws::Organizations
|
|
|
3240
3264
|
#
|
|
3241
3265
|
# * [INSPECTOR\_POLICY][10]
|
|
3242
3266
|
#
|
|
3267
|
+
# * [BEDROCK\_POLICY][11]
|
|
3268
|
+
#
|
|
3269
|
+
# * [S3\_POLICY][12]
|
|
3270
|
+
#
|
|
3243
3271
|
#
|
|
3244
3272
|
#
|
|
3245
3273
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -3252,6 +3280,8 @@ module Aws::Organizations
|
|
|
3252
3280
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
3253
3281
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
3254
3282
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
3283
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
3284
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
3255
3285
|
#
|
|
3256
3286
|
# @return [Types::EnablePolicyTypeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3257
3287
|
#
|
|
@@ -3287,7 +3317,7 @@ module Aws::Organizations
|
|
|
3287
3317
|
#
|
|
3288
3318
|
# resp = client.enable_policy_type({
|
|
3289
3319
|
# root_id: "RootId", # required
|
|
3290
|
-
# policy_type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
3320
|
+
# policy_type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY, BEDROCK_POLICY, S3_POLICY
|
|
3291
3321
|
# })
|
|
3292
3322
|
#
|
|
3293
3323
|
# @example Response structure
|
|
@@ -3296,7 +3326,7 @@ module Aws::Organizations
|
|
|
3296
3326
|
# resp.root.arn #=> String
|
|
3297
3327
|
# resp.root.name #=> String
|
|
3298
3328
|
# resp.root.policy_types #=> Array
|
|
3299
|
-
# resp.root.policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
3329
|
+
# resp.root.policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY"
|
|
3300
3330
|
# resp.root.policy_types[0].status #=> String, one of "ENABLED", "PENDING_ENABLE", "PENDING_DISABLE"
|
|
3301
3331
|
#
|
|
3302
3332
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/EnablePolicyType AWS API Documentation
|
|
@@ -4047,6 +4077,10 @@ module Aws::Organizations
|
|
|
4047
4077
|
#
|
|
4048
4078
|
# * [INSPECTOR\_POLICY][8]
|
|
4049
4079
|
#
|
|
4080
|
+
# * [BEDROCK\_POLICY][9]
|
|
4081
|
+
#
|
|
4082
|
+
# * [S3\_POLICY][10]
|
|
4083
|
+
#
|
|
4050
4084
|
#
|
|
4051
4085
|
#
|
|
4052
4086
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html
|
|
@@ -4057,6 +4091,8 @@ module Aws::Organizations
|
|
|
4057
4091
|
# [6]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
4058
4092
|
# [7]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
4059
4093
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
4094
|
+
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
4095
|
+
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
4060
4096
|
#
|
|
4061
4097
|
# @option params [String] :next_token
|
|
4062
4098
|
# The parameter for receiving additional results if you receive a
|
|
@@ -4117,7 +4153,7 @@ module Aws::Organizations
|
|
|
4117
4153
|
# @example Request syntax with placeholder values
|
|
4118
4154
|
#
|
|
4119
4155
|
# resp = client.list_accounts_with_invalid_effective_policy({
|
|
4120
|
-
# policy_type: "TAG_POLICY", # required, accepts TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
4156
|
+
# policy_type: "TAG_POLICY", # required, accepts TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY, BEDROCK_POLICY, S3_POLICY
|
|
4121
4157
|
# next_token: "NextToken",
|
|
4122
4158
|
# max_results: 1,
|
|
4123
4159
|
# })
|
|
@@ -4133,7 +4169,7 @@ module Aws::Organizations
|
|
|
4133
4169
|
# resp.accounts[0].state #=> String, one of "PENDING_ACTIVATION", "ACTIVE", "SUSPENDED", "PENDING_CLOSURE", "CLOSED"
|
|
4134
4170
|
# resp.accounts[0].joined_method #=> String, one of "INVITED", "CREATED"
|
|
4135
4171
|
# resp.accounts[0].joined_timestamp #=> Time
|
|
4136
|
-
# resp.policy_type #=> String, one of "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
4172
|
+
# resp.policy_type #=> String, one of "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY"
|
|
4137
4173
|
# resp.next_token #=> String
|
|
4138
4174
|
#
|
|
4139
4175
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListAccountsWithInvalidEffectivePolicy AWS API Documentation
|
|
@@ -4521,6 +4557,10 @@ module Aws::Organizations
|
|
|
4521
4557
|
#
|
|
4522
4558
|
# * [INSPECTOR\_POLICY][8]
|
|
4523
4559
|
#
|
|
4560
|
+
# * [BEDROCK\_POLICY][9]
|
|
4561
|
+
#
|
|
4562
|
+
# * [S3\_POLICY][10]
|
|
4563
|
+
#
|
|
4524
4564
|
#
|
|
4525
4565
|
#
|
|
4526
4566
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html
|
|
@@ -4531,6 +4571,8 @@ module Aws::Organizations
|
|
|
4531
4571
|
# [6]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
4532
4572
|
# [7]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
4533
4573
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
4574
|
+
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
4575
|
+
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
4534
4576
|
#
|
|
4535
4577
|
# @option params [String] :next_token
|
|
4536
4578
|
# The parameter for receiving additional results if you receive a
|
|
@@ -4597,7 +4639,7 @@ module Aws::Organizations
|
|
|
4597
4639
|
#
|
|
4598
4640
|
# resp = client.list_effective_policy_validation_errors({
|
|
4599
4641
|
# account_id: "AccountId", # required
|
|
4600
|
-
# policy_type: "TAG_POLICY", # required, accepts TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
4642
|
+
# policy_type: "TAG_POLICY", # required, accepts TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY, BEDROCK_POLICY, S3_POLICY
|
|
4601
4643
|
# next_token: "NextToken",
|
|
4602
4644
|
# max_results: 1,
|
|
4603
4645
|
# })
|
|
@@ -4605,7 +4647,7 @@ module Aws::Organizations
|
|
|
4605
4647
|
# @example Response structure
|
|
4606
4648
|
#
|
|
4607
4649
|
# resp.account_id #=> String
|
|
4608
|
-
# resp.policy_type #=> String, one of "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
4650
|
+
# resp.policy_type #=> String, one of "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY"
|
|
4609
4651
|
# resp.path #=> String
|
|
4610
4652
|
# resp.evaluation_timestamp #=> Time
|
|
4611
4653
|
# resp.next_token #=> String
|
|
@@ -5377,6 +5419,10 @@ module Aws::Organizations
|
|
|
5377
5419
|
#
|
|
5378
5420
|
# * [INSPECTOR\_POLICY][10]
|
|
5379
5421
|
#
|
|
5422
|
+
# * [BEDROCK\_POLICY][11]
|
|
5423
|
+
#
|
|
5424
|
+
# * [S3\_POLICY][12]
|
|
5425
|
+
#
|
|
5380
5426
|
#
|
|
5381
5427
|
#
|
|
5382
5428
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -5389,6 +5435,8 @@ module Aws::Organizations
|
|
|
5389
5435
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
5390
5436
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
5391
5437
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
5438
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
5439
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
5392
5440
|
#
|
|
5393
5441
|
# @option params [String] :next_token
|
|
5394
5442
|
# The parameter for receiving additional results if you receive a
|
|
@@ -5451,7 +5499,7 @@ module Aws::Organizations
|
|
|
5451
5499
|
# @example Request syntax with placeholder values
|
|
5452
5500
|
#
|
|
5453
5501
|
# resp = client.list_policies({
|
|
5454
|
-
# filter: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
5502
|
+
# filter: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY, BEDROCK_POLICY, S3_POLICY
|
|
5455
5503
|
# next_token: "NextToken",
|
|
5456
5504
|
# max_results: 1,
|
|
5457
5505
|
# })
|
|
@@ -5463,7 +5511,7 @@ module Aws::Organizations
|
|
|
5463
5511
|
# resp.policies[0].arn #=> String
|
|
5464
5512
|
# resp.policies[0].name #=> String
|
|
5465
5513
|
# resp.policies[0].description #=> String
|
|
5466
|
-
# resp.policies[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
5514
|
+
# resp.policies[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY"
|
|
5467
5515
|
# resp.policies[0].aws_managed #=> Boolean
|
|
5468
5516
|
# resp.next_token #=> String
|
|
5469
5517
|
#
|
|
@@ -5537,6 +5585,10 @@ module Aws::Organizations
|
|
|
5537
5585
|
#
|
|
5538
5586
|
# * [INSPECTOR\_POLICY][10]
|
|
5539
5587
|
#
|
|
5588
|
+
# * [BEDROCK\_POLICY][11]
|
|
5589
|
+
#
|
|
5590
|
+
# * [S3\_POLICY][12]
|
|
5591
|
+
#
|
|
5540
5592
|
#
|
|
5541
5593
|
#
|
|
5542
5594
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -5549,6 +5601,8 @@ module Aws::Organizations
|
|
|
5549
5601
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
5550
5602
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
5551
5603
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
5604
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
5605
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
5552
5606
|
#
|
|
5553
5607
|
# @option params [String] :next_token
|
|
5554
5608
|
# The parameter for receiving additional results if you receive a
|
|
@@ -5599,7 +5653,7 @@ module Aws::Organizations
|
|
|
5599
5653
|
#
|
|
5600
5654
|
# resp = client.list_policies_for_target({
|
|
5601
5655
|
# target_id: "PolicyTargetId", # required
|
|
5602
|
-
# filter: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
5656
|
+
# filter: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY, BEDROCK_POLICY, S3_POLICY
|
|
5603
5657
|
# next_token: "NextToken",
|
|
5604
5658
|
# max_results: 1,
|
|
5605
5659
|
# })
|
|
@@ -5611,7 +5665,7 @@ module Aws::Organizations
|
|
|
5611
5665
|
# resp.policies[0].arn #=> String
|
|
5612
5666
|
# resp.policies[0].name #=> String
|
|
5613
5667
|
# resp.policies[0].description #=> String
|
|
5614
|
-
# resp.policies[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
5668
|
+
# resp.policies[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY"
|
|
5615
5669
|
# resp.policies[0].aws_managed #=> Boolean
|
|
5616
5670
|
# resp.next_token #=> String
|
|
5617
5671
|
#
|
|
@@ -5705,7 +5759,7 @@ module Aws::Organizations
|
|
|
5705
5759
|
# resp.roots[0].arn #=> String
|
|
5706
5760
|
# resp.roots[0].name #=> String
|
|
5707
5761
|
# resp.roots[0].policy_types #=> Array
|
|
5708
|
-
# resp.roots[0].policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
5762
|
+
# resp.roots[0].policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY"
|
|
5709
5763
|
# resp.roots[0].policy_types[0].status #=> String, one of "ENABLED", "PENDING_ENABLE", "PENDING_DISABLE"
|
|
5710
5764
|
# resp.next_token #=> String
|
|
5711
5765
|
#
|
|
@@ -6536,7 +6590,7 @@ module Aws::Organizations
|
|
|
6536
6590
|
# resp.policy.policy_summary.arn #=> String
|
|
6537
6591
|
# resp.policy.policy_summary.name #=> String
|
|
6538
6592
|
# resp.policy.policy_summary.description #=> String
|
|
6539
|
-
# resp.policy.policy_summary.type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
6593
|
+
# resp.policy.policy_summary.type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY"
|
|
6540
6594
|
# resp.policy.policy_summary.aws_managed #=> Boolean
|
|
6541
6595
|
# resp.policy.content #=> String
|
|
6542
6596
|
#
|
|
@@ -6643,7 +6697,7 @@ module Aws::Organizations
|
|
|
6643
6697
|
tracer: tracer
|
|
6644
6698
|
)
|
|
6645
6699
|
context[:gem_name] = 'aws-sdk-organizations'
|
|
6646
|
-
context[:gem_version] = '1.
|
|
6700
|
+
context[:gem_version] = '1.130.0'
|
|
6647
6701
|
Seahorse::Client::Request.new(handlers, context)
|
|
6648
6702
|
end
|
|
6649
6703
|
|
|
@@ -1288,6 +1288,10 @@ module Aws::Organizations
|
|
|
1288
1288
|
#
|
|
1289
1289
|
# * [INSPECTOR\_POLICY][10]
|
|
1290
1290
|
#
|
|
1291
|
+
# * [BEDROCK\_POLICY][11]
|
|
1292
|
+
#
|
|
1293
|
+
# * [S3\_POLICY][12]
|
|
1294
|
+
#
|
|
1291
1295
|
#
|
|
1292
1296
|
#
|
|
1293
1297
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -1300,6 +1304,8 @@ module Aws::Organizations
|
|
|
1300
1304
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
1301
1305
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
1302
1306
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
1307
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
1308
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
1303
1309
|
# @return [String]
|
|
1304
1310
|
#
|
|
1305
1311
|
# @!attribute [rw] tags
|
|
@@ -1634,6 +1640,10 @@ module Aws::Organizations
|
|
|
1634
1640
|
#
|
|
1635
1641
|
# * [INSPECTOR\_POLICY][8]
|
|
1636
1642
|
#
|
|
1643
|
+
# * [BEDROCK\_POLICY][9]
|
|
1644
|
+
#
|
|
1645
|
+
# * [S3\_POLICY][10]
|
|
1646
|
+
#
|
|
1637
1647
|
#
|
|
1638
1648
|
#
|
|
1639
1649
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html
|
|
@@ -1644,6 +1654,8 @@ module Aws::Organizations
|
|
|
1644
1654
|
# [6]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
1645
1655
|
# [7]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
1646
1656
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
1657
|
+
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
1658
|
+
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
1647
1659
|
# @return [String]
|
|
1648
1660
|
#
|
|
1649
1661
|
# @!attribute [rw] target_id
|
|
@@ -1938,6 +1950,10 @@ module Aws::Organizations
|
|
|
1938
1950
|
#
|
|
1939
1951
|
# * [INSPECTOR\_POLICY][10]
|
|
1940
1952
|
#
|
|
1953
|
+
# * [BEDROCK\_POLICY][11]
|
|
1954
|
+
#
|
|
1955
|
+
# * [S3\_POLICY][12]
|
|
1956
|
+
#
|
|
1941
1957
|
#
|
|
1942
1958
|
#
|
|
1943
1959
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -1950,6 +1966,8 @@ module Aws::Organizations
|
|
|
1950
1966
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
1951
1967
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
1952
1968
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
1969
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
1970
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
1953
1971
|
# @return [String]
|
|
1954
1972
|
#
|
|
1955
1973
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DisablePolicyTypeRequest AWS API Documentation
|
|
@@ -2205,6 +2223,10 @@ module Aws::Organizations
|
|
|
2205
2223
|
#
|
|
2206
2224
|
# * [INSPECTOR\_POLICY][10]
|
|
2207
2225
|
#
|
|
2226
|
+
# * [BEDROCK\_POLICY][11]
|
|
2227
|
+
#
|
|
2228
|
+
# * [S3\_POLICY][12]
|
|
2229
|
+
#
|
|
2208
2230
|
#
|
|
2209
2231
|
#
|
|
2210
2232
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -2217,6 +2239,8 @@ module Aws::Organizations
|
|
|
2217
2239
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
2218
2240
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
2219
2241
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
2242
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
2243
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
2220
2244
|
# @return [String]
|
|
2221
2245
|
#
|
|
2222
2246
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/EnablePolicyTypeRequest AWS API Documentation
|
|
@@ -3094,6 +3118,10 @@ module Aws::Organizations
|
|
|
3094
3118
|
#
|
|
3095
3119
|
# * [INSPECTOR\_POLICY][8]
|
|
3096
3120
|
#
|
|
3121
|
+
# * [BEDROCK\_POLICY][9]
|
|
3122
|
+
#
|
|
3123
|
+
# * [S3\_POLICY][10]
|
|
3124
|
+
#
|
|
3097
3125
|
#
|
|
3098
3126
|
#
|
|
3099
3127
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html
|
|
@@ -3104,6 +3132,8 @@ module Aws::Organizations
|
|
|
3104
3132
|
# [6]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
3105
3133
|
# [7]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
3106
3134
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
3135
|
+
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
3136
|
+
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
3107
3137
|
# @return [String]
|
|
3108
3138
|
#
|
|
3109
3139
|
# @!attribute [rw] next_token
|
|
@@ -3155,6 +3185,10 @@ module Aws::Organizations
|
|
|
3155
3185
|
#
|
|
3156
3186
|
# * [INSPECTOR\_POLICY][8]
|
|
3157
3187
|
#
|
|
3188
|
+
# * [BEDROCK\_POLICY][9]
|
|
3189
|
+
#
|
|
3190
|
+
# * [S3\_POLICY][10]
|
|
3191
|
+
#
|
|
3158
3192
|
#
|
|
3159
3193
|
#
|
|
3160
3194
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html
|
|
@@ -3165,6 +3199,8 @@ module Aws::Organizations
|
|
|
3165
3199
|
# [6]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
3166
3200
|
# [7]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
3167
3201
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
3202
|
+
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
3203
|
+
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
3168
3204
|
# @return [String]
|
|
3169
3205
|
#
|
|
3170
3206
|
# @!attribute [rw] next_token
|
|
@@ -3442,6 +3478,10 @@ module Aws::Organizations
|
|
|
3442
3478
|
#
|
|
3443
3479
|
# * [INSPECTOR\_POLICY][8]
|
|
3444
3480
|
#
|
|
3481
|
+
# * [BEDROCK\_POLICY][9]
|
|
3482
|
+
#
|
|
3483
|
+
# * [S3\_POLICY][10]
|
|
3484
|
+
#
|
|
3445
3485
|
#
|
|
3446
3486
|
#
|
|
3447
3487
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html
|
|
@@ -3452,6 +3492,8 @@ module Aws::Organizations
|
|
|
3452
3492
|
# [6]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
3453
3493
|
# [7]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
3454
3494
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
3495
|
+
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
3496
|
+
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
3455
3497
|
# @return [String]
|
|
3456
3498
|
#
|
|
3457
3499
|
# @!attribute [rw] next_token
|
|
@@ -3503,6 +3545,10 @@ module Aws::Organizations
|
|
|
3503
3545
|
#
|
|
3504
3546
|
# * [INSPECTOR\_POLICY][8]
|
|
3505
3547
|
#
|
|
3548
|
+
# * [BEDROCK\_POLICY][9]
|
|
3549
|
+
#
|
|
3550
|
+
# * [S3\_POLICY][10]
|
|
3551
|
+
#
|
|
3506
3552
|
#
|
|
3507
3553
|
#
|
|
3508
3554
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html
|
|
@@ -3513,6 +3559,8 @@ module Aws::Organizations
|
|
|
3513
3559
|
# [6]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
3514
3560
|
# [7]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
3515
3561
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
3562
|
+
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
3563
|
+
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
3516
3564
|
# @return [String]
|
|
3517
3565
|
#
|
|
3518
3566
|
# @!attribute [rw] path
|
|
@@ -3939,6 +3987,10 @@ module Aws::Organizations
|
|
|
3939
3987
|
#
|
|
3940
3988
|
# * [INSPECTOR\_POLICY][10]
|
|
3941
3989
|
#
|
|
3990
|
+
# * [BEDROCK\_POLICY][11]
|
|
3991
|
+
#
|
|
3992
|
+
# * [S3\_POLICY][12]
|
|
3993
|
+
#
|
|
3942
3994
|
#
|
|
3943
3995
|
#
|
|
3944
3996
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -3951,6 +4003,8 @@ module Aws::Organizations
|
|
|
3951
4003
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
3952
4004
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
3953
4005
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
4006
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
4007
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
3954
4008
|
# @return [String]
|
|
3955
4009
|
#
|
|
3956
4010
|
# @!attribute [rw] next_token
|
|
@@ -4024,6 +4078,10 @@ module Aws::Organizations
|
|
|
4024
4078
|
#
|
|
4025
4079
|
# * [INSPECTOR\_POLICY][10]
|
|
4026
4080
|
#
|
|
4081
|
+
# * [BEDROCK\_POLICY][11]
|
|
4082
|
+
#
|
|
4083
|
+
# * [S3\_POLICY][12]
|
|
4084
|
+
#
|
|
4027
4085
|
#
|
|
4028
4086
|
#
|
|
4029
4087
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -4036,6 +4094,8 @@ module Aws::Organizations
|
|
|
4036
4094
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
4037
4095
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
4038
4096
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
4097
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
4098
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html
|
|
4039
4099
|
# @return [String]
|
|
4040
4100
|
#
|
|
4041
4101
|
# @!attribute [rw] next_token
|
data/sig/client.rbs
CHANGED
|
@@ -186,7 +186,7 @@ module Aws
|
|
|
186
186
|
content: ::String,
|
|
187
187
|
description: ::String,
|
|
188
188
|
name: ::String,
|
|
189
|
-
type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY"),
|
|
189
|
+
type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY"),
|
|
190
190
|
?tags: Array[
|
|
191
191
|
{
|
|
192
192
|
key: ::String,
|
|
@@ -259,7 +259,7 @@ module Aws
|
|
|
259
259
|
end
|
|
260
260
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Organizations/Client.html#describe_effective_policy-instance_method
|
|
261
261
|
def describe_effective_policy: (
|
|
262
|
-
policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY"),
|
|
262
|
+
policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY"),
|
|
263
263
|
?target_id: ::String
|
|
264
264
|
) -> _DescribeEffectivePolicyResponseSuccess
|
|
265
265
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEffectivePolicyResponseSuccess
|
|
@@ -340,7 +340,7 @@ module Aws
|
|
|
340
340
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Organizations/Client.html#disable_policy_type-instance_method
|
|
341
341
|
def disable_policy_type: (
|
|
342
342
|
root_id: ::String,
|
|
343
|
-
policy_type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
343
|
+
policy_type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
344
344
|
) -> _DisablePolicyTypeResponseSuccess
|
|
345
345
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisablePolicyTypeResponseSuccess
|
|
346
346
|
|
|
@@ -366,7 +366,7 @@ module Aws
|
|
|
366
366
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Organizations/Client.html#enable_policy_type-instance_method
|
|
367
367
|
def enable_policy_type: (
|
|
368
368
|
root_id: ::String,
|
|
369
|
-
policy_type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
369
|
+
policy_type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
370
370
|
) -> _EnablePolicyTypeResponseSuccess
|
|
371
371
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EnablePolicyTypeResponseSuccess
|
|
372
372
|
|
|
@@ -457,12 +457,12 @@ module Aws
|
|
|
457
457
|
interface _ListAccountsWithInvalidEffectivePolicyResponseSuccess
|
|
458
458
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListAccountsWithInvalidEffectivePolicyResponse]
|
|
459
459
|
def accounts: () -> ::Array[Types::Account]
|
|
460
|
-
def policy_type: () -> ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
460
|
+
def policy_type: () -> ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
461
461
|
def next_token: () -> ::String
|
|
462
462
|
end
|
|
463
463
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Organizations/Client.html#list_accounts_with_invalid_effective_policy-instance_method
|
|
464
464
|
def list_accounts_with_invalid_effective_policy: (
|
|
465
|
-
policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY"),
|
|
465
|
+
policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY"),
|
|
466
466
|
?next_token: ::String,
|
|
467
467
|
?max_results: ::Integer
|
|
468
468
|
) -> _ListAccountsWithInvalidEffectivePolicyResponseSuccess
|
|
@@ -524,7 +524,7 @@ module Aws
|
|
|
524
524
|
interface _ListEffectivePolicyValidationErrorsResponseSuccess
|
|
525
525
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListEffectivePolicyValidationErrorsResponse]
|
|
526
526
|
def account_id: () -> ::String
|
|
527
|
-
def policy_type: () -> ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
527
|
+
def policy_type: () -> ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
528
528
|
def path: () -> ::String
|
|
529
529
|
def evaluation_timestamp: () -> ::Time
|
|
530
530
|
def next_token: () -> ::String
|
|
@@ -533,7 +533,7 @@ module Aws
|
|
|
533
533
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Organizations/Client.html#list_effective_policy_validation_errors-instance_method
|
|
534
534
|
def list_effective_policy_validation_errors: (
|
|
535
535
|
account_id: ::String,
|
|
536
|
-
policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY"),
|
|
536
|
+
policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY"),
|
|
537
537
|
?next_token: ::String,
|
|
538
538
|
?max_results: ::Integer
|
|
539
539
|
) -> _ListEffectivePolicyValidationErrorsResponseSuccess
|
|
@@ -631,7 +631,7 @@ module Aws
|
|
|
631
631
|
end
|
|
632
632
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Organizations/Client.html#list_policies-instance_method
|
|
633
633
|
def list_policies: (
|
|
634
|
-
filter: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY"),
|
|
634
|
+
filter: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY"),
|
|
635
635
|
?next_token: ::String,
|
|
636
636
|
?max_results: ::Integer
|
|
637
637
|
) -> _ListPoliciesResponseSuccess
|
|
@@ -645,7 +645,7 @@ module Aws
|
|
|
645
645
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Organizations/Client.html#list_policies_for_target-instance_method
|
|
646
646
|
def list_policies_for_target: (
|
|
647
647
|
target_id: ::String,
|
|
648
|
-
filter: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY"),
|
|
648
|
+
filter: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY"),
|
|
649
649
|
?next_token: ::String,
|
|
650
650
|
?max_results: ::Integer
|
|
651
651
|
) -> _ListPoliciesForTargetResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -195,7 +195,7 @@ module Aws::Organizations
|
|
|
195
195
|
attr_accessor content: ::String
|
|
196
196
|
attr_accessor description: ::String
|
|
197
197
|
attr_accessor name: ::String
|
|
198
|
-
attr_accessor type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
198
|
+
attr_accessor type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
199
199
|
attr_accessor tags: ::Array[Types::Tag]
|
|
200
200
|
SENSITIVE: []
|
|
201
201
|
end
|
|
@@ -271,7 +271,7 @@ module Aws::Organizations
|
|
|
271
271
|
end
|
|
272
272
|
|
|
273
273
|
class DescribeEffectivePolicyRequest
|
|
274
|
-
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
274
|
+
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
275
275
|
attr_accessor target_id: ::String
|
|
276
276
|
SENSITIVE: []
|
|
277
277
|
end
|
|
@@ -349,7 +349,7 @@ module Aws::Organizations
|
|
|
349
349
|
|
|
350
350
|
class DisablePolicyTypeRequest
|
|
351
351
|
attr_accessor root_id: ::String
|
|
352
|
-
attr_accessor policy_type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
352
|
+
attr_accessor policy_type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
353
353
|
SENSITIVE: []
|
|
354
354
|
end
|
|
355
355
|
|
|
@@ -387,7 +387,7 @@ module Aws::Organizations
|
|
|
387
387
|
attr_accessor policy_content: ::String
|
|
388
388
|
attr_accessor last_updated_timestamp: ::Time
|
|
389
389
|
attr_accessor target_id: ::String
|
|
390
|
-
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
390
|
+
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
391
391
|
SENSITIVE: []
|
|
392
392
|
end
|
|
393
393
|
|
|
@@ -419,7 +419,7 @@ module Aws::Organizations
|
|
|
419
419
|
|
|
420
420
|
class EnablePolicyTypeRequest
|
|
421
421
|
attr_accessor root_id: ::String
|
|
422
|
-
attr_accessor policy_type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
422
|
+
attr_accessor policy_type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
423
423
|
SENSITIVE: []
|
|
424
424
|
end
|
|
425
425
|
|
|
@@ -567,7 +567,7 @@ module Aws::Organizations
|
|
|
567
567
|
end
|
|
568
568
|
|
|
569
569
|
class ListAccountsWithInvalidEffectivePolicyRequest
|
|
570
|
-
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
570
|
+
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
571
571
|
attr_accessor next_token: ::String
|
|
572
572
|
attr_accessor max_results: ::Integer
|
|
573
573
|
SENSITIVE: []
|
|
@@ -575,7 +575,7 @@ module Aws::Organizations
|
|
|
575
575
|
|
|
576
576
|
class ListAccountsWithInvalidEffectivePolicyResponse
|
|
577
577
|
attr_accessor accounts: ::Array[Types::Account]
|
|
578
|
-
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
578
|
+
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
579
579
|
attr_accessor next_token: ::String
|
|
580
580
|
SENSITIVE: []
|
|
581
581
|
end
|
|
@@ -635,7 +635,7 @@ module Aws::Organizations
|
|
|
635
635
|
|
|
636
636
|
class ListEffectivePolicyValidationErrorsRequest
|
|
637
637
|
attr_accessor account_id: ::String
|
|
638
|
-
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
638
|
+
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
639
639
|
attr_accessor next_token: ::String
|
|
640
640
|
attr_accessor max_results: ::Integer
|
|
641
641
|
SENSITIVE: []
|
|
@@ -643,7 +643,7 @@ module Aws::Organizations
|
|
|
643
643
|
|
|
644
644
|
class ListEffectivePolicyValidationErrorsResponse
|
|
645
645
|
attr_accessor account_id: ::String
|
|
646
|
-
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
646
|
+
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
647
647
|
attr_accessor path: ::String
|
|
648
648
|
attr_accessor evaluation_timestamp: ::Time
|
|
649
649
|
attr_accessor next_token: ::String
|
|
@@ -732,7 +732,7 @@ module Aws::Organizations
|
|
|
732
732
|
|
|
733
733
|
class ListPoliciesForTargetRequest
|
|
734
734
|
attr_accessor target_id: ::String
|
|
735
|
-
attr_accessor filter: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
735
|
+
attr_accessor filter: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
736
736
|
attr_accessor next_token: ::String
|
|
737
737
|
attr_accessor max_results: ::Integer
|
|
738
738
|
SENSITIVE: []
|
|
@@ -745,7 +745,7 @@ module Aws::Organizations
|
|
|
745
745
|
end
|
|
746
746
|
|
|
747
747
|
class ListPoliciesRequest
|
|
748
|
-
attr_accessor filter: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
748
|
+
attr_accessor filter: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
749
749
|
attr_accessor next_token: ::String
|
|
750
750
|
attr_accessor max_results: ::Integer
|
|
751
751
|
SENSITIVE: []
|
|
@@ -886,7 +886,7 @@ module Aws::Organizations
|
|
|
886
886
|
attr_accessor arn: ::String
|
|
887
887
|
attr_accessor name: ::String
|
|
888
888
|
attr_accessor description: ::String
|
|
889
|
-
attr_accessor type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
889
|
+
attr_accessor type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
890
890
|
attr_accessor aws_managed: bool
|
|
891
891
|
SENSITIVE: []
|
|
892
892
|
end
|
|
@@ -915,7 +915,7 @@ module Aws::Organizations
|
|
|
915
915
|
end
|
|
916
916
|
|
|
917
917
|
class PolicyTypeSummary
|
|
918
|
-
attr_accessor type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
918
|
+
attr_accessor type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY")
|
|
919
919
|
attr_accessor status: ("ENABLED" | "PENDING_ENABLE" | "PENDING_DISABLE")
|
|
920
920
|
SENSITIVE: []
|
|
921
921
|
end
|