Class CfnPolicyGrant.UserPolicyGrantPrincipalProperty
The user policy grant principal.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPolicyGrant.UserPolicyGrantPrincipalProperty : CfnPolicyGrant.IUserPolicyGrantPrincipalProperty
Syntax (vb)
Public Class CfnPolicyGrant.UserPolicyGrantPrincipalProperty Implements CfnPolicyGrant.IUserPolicyGrantPrincipalProperty
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.DataZone;
var allUsersGrantFilter;
var userPolicyGrantPrincipalProperty = new UserPolicyGrantPrincipalProperty {
AllUsersGrantFilter = allUsersGrantFilter,
UserIdentifier = "userIdentifier"
};
Synopsis
Constructors
| UserPolicyGrantPrincipalProperty() | The user policy grant principal. |
Properties
| AllUsersGrantFilter | The all users grant filter of the user policy grant principal. |
| UserIdentifier | The user ID of the user policy grant principal. |
Constructors
UserPolicyGrantPrincipalProperty()
The user policy grant principal.
public UserPolicyGrantPrincipalProperty()
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.DataZone;
var allUsersGrantFilter;
var userPolicyGrantPrincipalProperty = new UserPolicyGrantPrincipalProperty {
AllUsersGrantFilter = allUsersGrantFilter,
UserIdentifier = "userIdentifier"
};
Properties
AllUsersGrantFilter
The all users grant filter of the user policy grant principal.
public object? AllUsersGrantFilter { get; set; }
Property Value
Remarks
UserIdentifier
The user ID of the user policy grant principal.
public string? UserIdentifier { get; set; }