interface IamIdentityCenterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MPA.Mixins.CfnIdentitySourcePropsMixin.IamIdentityCenterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmpa/mixins#CfnIdentitySourcePropsMixin_IamIdentityCenterProperty |
Java | software.amazon.awscdk.mixins.preview.services.mpa.mixins.CfnIdentitySourcePropsMixin.IamIdentityCenterProperty |
Python | aws_cdk.mixins_preview.aws_mpa.mixins.CfnIdentitySourcePropsMixin.IamIdentityCenterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mpa » mixins » CfnIdentitySourcePropsMixin » IamIdentityCenterProperty |
AWS IAM Identity Center credentials.
For more information see, AWS IAM Identity Center .
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 iamIdentityCenterProperty: mpa_mixins.CfnIdentitySourcePropsMixin.IamIdentityCenterProperty = {
approvalPortalUrl: 'approvalPortalUrl',
instanceArn: 'instanceArn',
region: 'region',
};
Properties
| Name | Type | Description |
|---|---|---|
| approval | string | URL for the approval portal associated with the IAM Identity Center instance. |
| instance | string | Amazon Resource Name (ARN) for the IAM Identity Center instance. |
| region? | string | AWS Region where the IAM Identity Center instance is located. |
approvalPortalUrl?
Type:
string
(optional)
URL for the approval portal associated with the IAM Identity Center instance.
instanceArn?
Type:
string
(optional)
Amazon Resource Name (ARN) for the IAM Identity Center instance.
region?
Type:
string
(optional)
AWS Region where the IAM Identity Center instance is located.

.NET
Go
Java
Python
TypeScript