Interface CfnUserPolicyProps

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

@Generated(value="jsii-pacmak/1.92.0 (build db7f27d)", date="2023-12-01T19:06:33.296Z") @Stability(Stable) public interface CfnUserPolicyProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnUserPolicy.

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.*;
 Object policyDocument;
 CfnUserPolicyProps cfnUserPolicyProps = CfnUserPolicyProps.builder()
         .policyName("policyName")
         .userName("userName")
         // the properties below are optional
         .policyDocument(policyDocument)
         .build();
 

See Also: