aws-cdk-lib.aws_sso.CfnPermissionSet.CustomerManagedPolicyReferenceProperty

interface CustomerManagedPolicyReferenceProperty

LanguageType name
.NETAmazon.CDK.AWS.SSO.CfnPermissionSet.CustomerManagedPolicyReferenceProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssso#CfnPermissionSet_CustomerManagedPolicyReferenceProperty
Javasoftware.amazon.awscdk.services.sso.CfnPermissionSet.CustomerManagedPolicyReferenceProperty
Pythonaws_cdk.aws_sso.CfnPermissionSet.CustomerManagedPolicyReferenceProperty
TypeScript aws-cdk-lib » aws_sso » CfnPermissionSet » 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-lib';
const customerManagedPolicyReferenceProperty: sso.CfnPermissionSet.CustomerManagedPolicyReferenceProperty = {
  name: 'name',

  // the properties below are optional
  path: 'path',
};

Properties

NameTypeDescription
namestringThe name of the IAM policy that you have configured in each account where you want to deploy your permission set.
path?stringThe path to the IAM policy that you have configured in each account where you want to deploy your permission set.

name

Type: string

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 .