interface CfnIdentitySourceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_mpa.CfnIdentitySourceProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmpa#CfnIdentitySourceProps |
Java | software.amazon.awscdk.services.mpa.CfnIdentitySourceProps |
Python | aws_cdk.aws_mpa.CfnIdentitySourceProps |
TypeScript | aws-cdk-lib » aws_mpa » CfnIdentitySourceProps |
Properties for defining a CfnIdentitySource.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-identitysource.html
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 cfnIdentitySourceProps: mpa.CfnIdentitySourceProps = {
identitySourceParameters: {
iamIdentityCenter: {
instanceArn: 'instanceArn',
region: 'region',
// the properties below are optional
approvalPortalUrl: 'approvalPortalUrl',
},
},
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| identity | IResolvable | Identity | A IdentitySourceParameters object. |
| tags? | Cfn[] | Tags that you have added to the specified resource. |
identitySourceParameters
Type:
IResolvable | Identity
A IdentitySourceParameters object.
Contains details for the resource that provides identities to the identity source. For example, an IAM Identity Center instance.
tags?
Type:
Cfn[]
(optional)
Tags that you have added to the specified resource.

.NET
Go
Java
Python
TypeScript