interface CfnIdentitySourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MPA.CfnIdentitySourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmpa#CfnIdentitySourceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.mpa.CfnIdentitySourceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_mpa.CfnIdentitySourceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mpa » CfnIdentitySourceMixinProps |
Properties for CfnIdentitySourcePropsMixin.
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/cfn-property-mixins';
const cfnIdentitySourceMixinProps: mpa.CfnIdentitySourceMixinProps = {
identitySourceParameters: {
iamIdentityCenter: {
approvalPortalUrl: 'approvalPortalUrl',
instanceArn: 'instanceArn',
region: 'region',
},
},
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
(optional)
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