interface IamUserProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTSiteWise.CfnAccessPolicy.IamUserProperty |
Java | software.amazon.awscdk.services.iotsitewise.CfnAccessPolicy.IamUserProperty |
Python | aws_cdk.aws_iotsitewise.CfnAccessPolicy.IamUserProperty |
TypeScript | @aws-cdk/aws-iotsitewise » CfnAccessPolicy » IamUserProperty |
Contains information about an AWS Identity and Access Management user.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotsitewise from '@aws-cdk/aws-iotsitewise';
const iamUserProperty: iotsitewise.CfnAccessPolicy.IamUserProperty = {
arn: 'arn',
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | The ARN of the IAM user. For more information, see IAM ARNs in the IAM User Guide . |
arn?
Type:
string
(optional)
The ARN of the IAM user. For more information, see IAM ARNs in the IAM User Guide .
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.

.NET
Java
Python
TypeScript