interface IamUserProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTSiteWise.CfnAccessPolicy.IamUserProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotsitewise#CfnAccessPolicy_IamUserProperty |
Java | software.amazon.awscdk.services.iotsitewise.CfnAccessPolicy.IamUserProperty |
Python | aws_cdk.aws_iotsitewise.CfnAccessPolicy.IamUserProperty |
TypeScript | aws-cdk-lib » 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 { aws_iotsitewise as iotsitewise } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript