Class: Aws::IoTSiteWise::Types::ListAccessPoliciesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::ListAccessPoliciesRequest
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
When making an API call, you may pass ListAccessPoliciesRequest data as a 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,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#iam_arn ⇒ String
The ARN of the IAM user.
-
#identity_id ⇒ String
The ID of the identity.
-
#identity_type ⇒ String
The type of identity (Amazon Web Services SSO user, Amazon Web Services SSO group, or IAM user).
-
#max_results ⇒ Integer
The maximum number of results to return for each paginated request.
-
#next_token ⇒ String
The token to be used for the next set of paginated results.
-
#resource_id ⇒ String
The ID of the resource.
-
#resource_type ⇒ String
The type of resource (portal or project).
Instance Attribute Details
#iam_arn ⇒ String
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
.
5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 5349 class ListAccessPoliciesRequest < Struct.new( :identity_type, :identity_id, :resource_type, :resource_id, :iam_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#identity_id ⇒ String
The ID of the identity. This parameter is required if you specify
USER
or GROUP
for identityType
.
5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 5349 class ListAccessPoliciesRequest < Struct.new( :identity_type, :identity_id, :resource_type, :resource_id, :iam_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#identity_type ⇒ String
The type of identity (Amazon Web Services SSO user, Amazon Web
Services SSO group, or IAM user). This parameter is required if you
specify identityId
.
5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 5349 class ListAccessPoliciesRequest < Struct.new( :identity_type, :identity_id, :resource_type, :resource_id, :iam_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return for each paginated request.
Default: 50
5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 5349 class ListAccessPoliciesRequest < Struct.new( :identity_type, :identity_id, :resource_type, :resource_id, :iam_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to be used for the next set of paginated results.
5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 5349 class ListAccessPoliciesRequest < Struct.new( :identity_type, :identity_id, :resource_type, :resource_id, :iam_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#resource_id ⇒ String
The ID of the resource. This parameter is required if you specify
resourceType
.
5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 5349 class ListAccessPoliciesRequest < Struct.new( :identity_type, :identity_id, :resource_type, :resource_id, :iam_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The type of resource (portal or project). This parameter is required
if you specify resourceId
.
5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 5349 class ListAccessPoliciesRequest < Struct.new( :identity_type, :identity_id, :resource_type, :resource_id, :iam_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |