Class CfnEntitlement.EntitlementProperty
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AccountAccess
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEntitlement.EntitlementProperty : CfnEntitlement.IEntitlementProperty
Syntax (vb)
Public Class CfnEntitlement.EntitlementProperty Implements CfnEntitlement.IEntitlementProperty
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.AccountAccess;
var entitlementProperty = new EntitlementProperty {
PrincipalRole = new PrincipalRoleEntitlementProperty {
Principal = new PrincipalProperty {
IdentityCenter = new IdentityCenterPrincipalProperty {
GroupId = "groupId",
UserId = "userId"
}
},
RoleArn = "roleArn",
// the properties below are optional
Account = "account"
}
};
Synopsis
Constructors
| EntitlementProperty() |
Properties
| PrincipalRole |
Constructors
EntitlementProperty()
public EntitlementProperty()
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.AccountAccess;
var entitlementProperty = new EntitlementProperty {
PrincipalRole = new PrincipalRoleEntitlementProperty {
Principal = new PrincipalProperty {
IdentityCenter = new IdentityCenterPrincipalProperty {
GroupId = "groupId",
UserId = "userId"
}
},
RoleArn = "roleArn",
// the properties below are optional
Account = "account"
}
};
Properties
PrincipalRole
public object PrincipalRole { get; set; }