Interface CfnPermissionSet.CustomerManagedPolicyReferenceProperty

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

@Stability(Stable) public static interface CfnPermissionSet.CustomerManagedPolicyReferenceProperty extends software.amazon.jsii.JsiiSerializable
Specifies the name and path of a customer managed policy.

You must have an IAM policy that matches the name and path in each AWS account where you want to deploy your permission set.

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.sso.*;
 CustomerManagedPolicyReferenceProperty customerManagedPolicyReferenceProperty = CustomerManagedPolicyReferenceProperty.builder()
         .name("name")
         // the properties below are optional
         .path("path")
         .build();