Class: Aws::QuickSight::Types::ApplicableTo
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::ApplicableTo
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
The scoping configuration that determines which principals an approval policy applies to.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group_arns ⇒ Array<String>
The list of group ARNs that the policy applies to.
-
#type ⇒ String
The type of scoping that determines which principals the approval policy applies to.
Instance Attribute Details
#group_arns ⇒ Array<String>
The list of group ARNs that the policy applies to. Required when type is GROUP.
1503 1504 1505 1506 1507 1508 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 1503 class ApplicableTo < Struct.new( :type, :group_arns) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of scoping that determines which principals the approval policy applies to. Valid values are defined as follows:
GROUP: The policy applies only to principals in the groups specified byGroupArns. When you useGROUP, you must also provide a value forGroupArns.
^
1503 1504 1505 1506 1507 1508 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 1503 class ApplicableTo < Struct.new( :type, :group_arns) SENSITIVE = [] include Aws::Structure end |