Interface CfnAccessGrant.GranteeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAccessGrant.GranteeProperty.Jsii$Proxy
Enclosing class:
CfnAccessGrant

@Stability(Stable) public static interface CfnAccessGrant.GranteeProperty extends software.amazon.jsii.JsiiSerializable
The user, group, or role to which you are granting access.

You can grant access to an IAM user or role. If you have added your corporate directory to AWS IAM Identity Center and associated your Identity Center instance with your S3 Access Grants instance, the grantee can also be a corporate directory user or group.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.s3.*;
 GranteeProperty granteeProperty = GranteeProperty.builder()
         .granteeIdentifier("granteeIdentifier")
         .granteeType("granteeType")
         .build();
 

See Also: