Class: Aws::IoTSiteWise::Types::IAMUserIdentity
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::IAMUserIdentity
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
Note:
When making an API call, you may pass IAMUserIdentity data as a hash:
{
arn: "ARN", # required
}
Contains information about an AWS Identity and Access Management (IAM) user.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN of the IAM user.
Instance Attribute Details
#arn ⇒ String
The ARN of the IAM user. For more information, see IAM ARNs in the IAM User Guide.
arn
. You can delete the access policy
for the IAM user that no longer exists.
3528 3529 3530 3531 3532 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 3528 class IAMUserIdentity < Struct.new( :arn) SENSITIVE = [] include Aws::Structure end |