interface CustomerManagedPolicyReferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSO.CfnPermissionSetPropsMixin.CustomerManagedPolicyReferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssso#CfnPermissionSetPropsMixin_CustomerManagedPolicyReferenceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sso.CfnPermissionSetPropsMixin.CustomerManagedPolicyReferenceProperty |
Python | aws_cdk.cfn_property_mixins.aws_sso.CfnPermissionSetPropsMixin.CustomerManagedPolicyReferenceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sso » CfnPermissionSetPropsMixin » CustomerManagedPolicyReferenceProperty |
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 { aws_sso as sso } from '@aws-cdk/cfn-property-mixins';
const customerManagedPolicyReferenceProperty: sso.CfnPermissionSetPropsMixin.CustomerManagedPolicyReferenceProperty = {
name: 'name',
path: 'path',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the IAM policy that you have configured in each account where you want to deploy your permission set. |
| path? | string | The path to the IAM policy that you have configured in each account where you want to deploy your permission set. |
name?
Type:
string
(optional)
The name of the IAM policy that you have configured in each account where you want to deploy your permission set.
path?
Type:
string
(optional)
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 .

.NET
Go
Java
Python
TypeScript