Class: Aws::Organizations::Types::EnablePolicyTypeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Organizations::Types::EnablePolicyTypeRequest
- 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 enable.
-
#root_id ⇒ String
The unique identifier (ID) of the root in which you want to enable a policy type.
Instance Attribute Details
#policy_type ⇒ String
The policy type that you want to enable. You can specify one of the following values:
- AISERVICES_OPT_OUT_POLICY][1
- BACKUP_POLICY][2
- SERVICE_CONTROL_POLICY][3
- TAG_POLICY][4
[1]: docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_ai-opt-out.html [2]: docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_backup.html [3]: docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html [4]: docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_tag-policies.html
2012 2013 2014 2015 2016 2017 |
# File 'lib/aws-sdk-organizations/types.rb', line 2012 class EnablePolicyTypeRequest < 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 enable 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.
2012 2013 2014 2015 2016 2017 |
# File 'lib/aws-sdk-organizations/types.rb', line 2012 class EnablePolicyTypeRequest < Struct.new( :root_id, :policy_type) SENSITIVE = [] include Aws::Structure end |