Interface CfnAccessPolicy.IAccessPolicyIdentityProperty
The identity (IAM Identity Center user, IAM Identity Center group, or IAM user) to which this access policy applies.
Namespace: Amazon.CDK.AWS.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IAccessPolicyIdentityProperty
Syntax (vb)
Public Interface IAccessPolicyIdentityProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTSiteWise;
var accessPolicyIdentityProperty = new AccessPolicyIdentityProperty {
IamRole = new IamRoleProperty {
Arn = "arn"
},
IamUser = new IamUserProperty {
Arn = "arn"
},
User = new UserProperty {
Id = "id"
}
};
Synopsis
Properties
IamRole | An IAM role identity. |
IamUser | An IAM user identity. |
User | An IAM Identity Center user identity. |
Properties
IamRole
An IAM role identity.
virtual object IamRole { get; }
Property Value
System.Object
Remarks
IamUser
An IAM user identity.
virtual object IamUser { get; }
Property Value
System.Object
Remarks
User
An IAM Identity Center user identity.
virtual object User { get; }
Property Value
System.Object