Class: Aws::Budgets::Types::IamActionDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Budgets::Types::IamActionDefinition
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-budgets/types.rb
Overview
The Identity and Access Management (IAM) action definition details.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#groups ⇒ Array<String>
A list of groups to be attached.
-
#policy_arn ⇒ String
The Amazon Resource Name (ARN) of the policy to be attached.
-
#roles ⇒ Array<String>
A list of roles to be attached.
-
#users ⇒ Array<String>
A list of users to be attached.
Instance Attribute Details
#groups ⇒ Array<String>
A list of groups to be attached. There must be at least one group.
1455 1456 1457 1458 1459 1460 1461 1462 |
# File 'lib/aws-sdk-budgets/types.rb', line 1455 class IamActionDefinition < Struct.new( :policy_arn, :roles, :groups, :users) SENSITIVE = [] include Aws::Structure end |
#policy_arn ⇒ String
The Amazon Resource Name (ARN) of the policy to be attached.
1455 1456 1457 1458 1459 1460 1461 1462 |
# File 'lib/aws-sdk-budgets/types.rb', line 1455 class IamActionDefinition < Struct.new( :policy_arn, :roles, :groups, :users) SENSITIVE = [] include Aws::Structure end |
#roles ⇒ Array<String>
A list of roles to be attached. There must be at least one role.
1455 1456 1457 1458 1459 1460 1461 1462 |
# File 'lib/aws-sdk-budgets/types.rb', line 1455 class IamActionDefinition < Struct.new( :policy_arn, :roles, :groups, :users) SENSITIVE = [] include Aws::Structure end |
#users ⇒ Array<String>
A list of users to be attached. There must be at least one user.
1455 1456 1457 1458 1459 1460 1461 1462 |
# File 'lib/aws-sdk-budgets/types.rb', line 1455 class IamActionDefinition < Struct.new( :policy_arn, :roles, :groups, :users) SENSITIVE = [] include Aws::Structure end |