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

Class: Aws::IoTSiteWise::Types::ListAccessPoliciesRequest

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

Overview

Note:

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

{
  identity_type: "USER", # accepts USER, GROUP, IAM
  identity_id: "IdentityId",
  resource_type: "PORTAL", # accepts PORTAL, PROJECT
  resource_id: "ID",
  iam_arn: "ARN",
  next_token: "NextToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#iam_arnString

The ARN of the IAM user. For more information, see IAM ARNs in the IAM User Guide. This parameter is required if you specify IAM for identityType.

Returns:

  • (String)

    The ARN of the IAM user.

#identity_idString

The ID of the identity. This parameter is required if you specify USER or GROUP for identityType.

Returns:

  • (String)

    The ID of the identity.

#identity_typeString

The type of identity (AWS SSO user, AWS SSO group, or IAM user). This parameter is required if you specify identityId.

Possible values:

  • USER
  • GROUP
  • IAM

Returns:

  • (String)

    The type of identity (AWS SSO user, AWS SSO group, or IAM user).

#max_resultsInteger

The maximum number of results to be returned per paginated request.

Default: 50

Returns:

  • (Integer)

    The maximum number of results to be returned per paginated request.

#next_tokenString

The token to be used for the next set of paginated results.

Returns:

  • (String)

    The token to be used for the next set of paginated results.

#resource_idString

The ID of the resource. This parameter is required if you specify resourceType.

Returns:

  • (String)

    The ID of the resource.

#resource_typeString

The type of resource (portal or project). This parameter is required if you specify resourceId.

Possible values:

  • PORTAL
  • PROJECT

Returns:

  • (String)

    The type of resource (portal or project).