All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGrantMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-14T18:32:14.441Z") @Stability(Stable) public interface CfnGrantMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnGrantPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.licensemanager.*;
 CfnGrantMixinProps cfnGrantMixinProps = CfnGrantMixinProps.builder()
         .allowedOperations(List.of("allowedOperations"))
         .grantName("grantName")
         .homeRegion("homeRegion")
         .licenseArn("licenseArn")
         .principals(List.of("principals"))
         .status("status")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: