Interface CfnPermissionSetPropsMixin.CustomerManagedPolicyReferenceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPermissionSetPropsMixin.CustomerManagedPolicyReferenceProperty.Jsii$Proxy
- Enclosing class:
CfnPermissionSetPropsMixin
@Stability(Stable)
public static interface CfnPermissionSetPropsMixin.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.cfnpropertymixins.services.sso.*;
CustomerManagedPolicyReferenceProperty customerManagedPolicyReferenceProperty = CustomerManagedPolicyReferenceProperty.builder()
.name("name")
.path("path")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnPermissionSetPropsMixin.CustomerManagedPolicyReferenceProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetName()The name of the IAM policy that you have configured in each account where you want to deploy your permission set.default StringgetPath()The path to the IAM policy that you have configured in each account where you want to deploy your permission set.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the IAM policy that you have configured in each account where you want to deploy your permission set.- See Also:
-
getPath
The path to the IAM policy that you have configured in each account where you want to deploy your permission set.The default is
/. For more information, see Friendly names and paths in the IAM User Guide .- See Also:
-
builder
@Stability(Stable) static CfnPermissionSetPropsMixin.CustomerManagedPolicyReferenceProperty.Builder builder()
-