Interface CfnUserPolicyProps

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

@Generated(value="jsii-pacmak/1.109.0 (build c221850)", date="2025-03-26T23:01:06.972Z") @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: