Class: Aws::Organizations::Types::DisablePolicyTypeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Organizations::Types::DisablePolicyTypeRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-organizations/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#policy_type ⇒ String
The policy type that you want to disable in this root.
-
#root_id ⇒ String
The unique identifier (ID) of the root in which you want to disable a policy type.
Instance Attribute Details
#policy_type ⇒ String
The policy type that you want to disable in this root. You can specify one of the following values:
- SERVICE_CONTROL_POLICY][1
- RESOURCE_CONTROL_POLICY][2
- DECLARATIVE_POLICY_EC2][3
- BACKUP_POLICY][4
- TAG_POLICY][5
- CHATBOT_POLICY][6
- AISERVICES_OPT_OUT_POLICY][7
- SECURITYHUB_POLICY][8
[1]: docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html [2]: docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_rcps.html [3]: docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html [4]: docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_backup.html [5]: docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_tag-policies.html [6]: docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_chatbot.html [7]: docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_ai-opt-out.html [8]: docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
1900 1901 1902 1903 1904 1905 |
# File 'lib/aws-sdk-organizations/types.rb', line 1900 class DisablePolicyTypeRequest < Struct.new( :root_id, :policy_type) SENSITIVE = [] include Aws::Structure end |
#root_id ⇒ String
The unique identifier (ID) of the root in which you want to disable a policy type. You can get the ID from the ListRoots operation.
The [regex pattern] for a root ID string requires “r-” followed by from 4 to 32 lowercase letters or digits.
1900 1901 1902 1903 1904 1905 |
# File 'lib/aws-sdk-organizations/types.rb', line 1900 class DisablePolicyTypeRequest < Struct.new( :root_id, :policy_type) SENSITIVE = [] include Aws::Structure end |