interface CfnIdentitySourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MPA.Mixins.CfnIdentitySourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmpa/mixins#CfnIdentitySourceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mpa.mixins.CfnIdentitySourceMixinProps |
Python | aws_cdk.mixins_preview.aws_mpa.mixins.CfnIdentitySourceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mpa » mixins » 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 { mixins as mpa_mixins } from '@aws-cdk/mixins-preview/aws-mpa';
const cfnIdentitySourceMixinProps: mpa_mixins.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