Class: Aws::Budgets::Types::IamActionDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Budgets::Types::IamActionDefinition
- Defined in:
- gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb
Overview
Note:
When making an API call, you may pass IamActionDefinition data as a hash:
{
policy_arn: "PolicyArn", # required
roles: ["Role"],
groups: ["Group"],
users: ["User"],
}
The AWS 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.
1743 1744 1745 1746 1747 1748 1749 1750 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1743 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.
1743 1744 1745 1746 1747 1748 1749 1750 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1743 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.
1743 1744 1745 1746 1747 1748 1749 1750 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1743 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.
1743 1744 1745 1746 1747 1748 1749 1750 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1743 class IamActionDefinition < Struct.new( :policy_arn, :roles, :groups, :users) SENSITIVE = [] include Aws::Structure end |