Class: Aws::IoTSiteWise::Types::IAMUserIdentity
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::IAMUserIdentity
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotsitewise/types.rb
Overview
Contains information about an Identity and Access Management 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*.
<note markdown=“1”> If you delete the IAM user, access policies that contain this identity include an empty ‘arn`. You can delete the access policy for the IAM user that no longer exists.
</note>
[1]: docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
6370 6371 6372 6373 6374 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 6370 class IAMUserIdentity < Struct.new( :arn) SENSITIVE = [] include Aws::Structure end |