Interface GrantOnPrincipalOptions

All Superinterfaces:
CommonGrantOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
GrantOnPrincipalOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:08.141Z") @Stability(Stable) public interface GrantOnPrincipalOptions extends software.amazon.jsii.JsiiSerializable, CommonGrantOptions
Options for a grant operation that only applies to principals.

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.iam.*;
 import software.constructs.*;
 Object conditions;
 Construct construct;
 IGrantable grantable;
 GrantOnPrincipalOptions grantOnPrincipalOptions = GrantOnPrincipalOptions.builder()
         .actions(List.of("actions"))
         .grantee(grantable)
         .resourceArns(List.of("resourceArns"))
         // the properties below are optional
         .conditions(Map.of(
                 "conditionsKey", Map.of(
                         "conditionsKey", conditions)))
         .scope(construct)
         .build();