You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Budgets::Types::IamActionDefinition

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing IamActionDefinition as input to an Aws::Client method, you can use a vanilla Hash:

{
  policy_arn: "PolicyArn", # required
  roles: ["Role"],
  groups: ["Group"],
  users: ["User"],
}

The AWS Identity and Access Management (IAM) action definition details.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#groupsArray<String>

A list of groups to be attached. There must be at least one group.

Returns:

  • (Array<String>)

    A list of groups to be attached.

#policy_arnString

The Amazon Resource Name (ARN) of the policy to be attached.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the policy to be attached.

#rolesArray<String>

A list of roles to be attached. There must be at least one role.

Returns:

  • (Array<String>)

    A list of roles to be attached.

#usersArray<String>

A list of users to be attached. There must be at least one user.

Returns:

  • (Array<String>)

    A list of users to be attached.