interface IdentitySourceParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MPA.CfnIdentitySource.IdentitySourceParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmpa#CfnIdentitySource_IdentitySourceParametersProperty |
Java | software.amazon.awscdk.services.mpa.CfnIdentitySource.IdentitySourceParametersProperty |
Python | aws_cdk.aws_mpa.CfnIdentitySource.IdentitySourceParametersProperty |
TypeScript | aws-cdk-lib » aws_mpa » CfnIdentitySource » IdentitySourceParametersProperty |
Contains details for the resource that provides identities to the identity source.
For example, an IAM Identity Center instance.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mpa as mpa } from 'aws-cdk-lib';
const identitySourceParametersProperty: mpa.CfnIdentitySource.IdentitySourceParametersProperty = {
iamIdentityCenter: {
instanceArn: 'instanceArn',
region: 'region',
// the properties below are optional
approvalPortalUrl: 'approvalPortalUrl',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| iam | IResolvable | Iam | AWS IAM Identity Center credentials. |
iamIdentityCenter
Type:
IResolvable | Iam
AWS IAM Identity Center credentials.

.NET
Go
Java
Python
TypeScript