Class: Aws::QuickSight::Types::ApplicableTo

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#group_arnsArray<String>

The list of group ARNs that the policy applies to. Required when type is GROUP.

Returns:

  • (Array<String>)


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

#typeString

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 by GroupArns. When you use GROUP, you must also provide a value for GroupArns.

^

Returns:

  • (String)


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