interface IdentityProviderDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Transfer.CfnWebApp.IdentityProviderDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awstransfer#CfnWebApp_IdentityProviderDetailsProperty |
Java | software.amazon.awscdk.services.transfer.CfnWebApp.IdentityProviderDetailsProperty |
Python | aws_cdk.aws_transfer.CfnWebApp.IdentityProviderDetailsProperty |
TypeScript | aws-cdk-lib » aws_transfer » CfnWebApp » IdentityProviderDetailsProperty |
A structure that describes the values to use for the IAM Identity Center settings when you create or update a web app.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_transfer as transfer } from 'aws-cdk-lib';
const identityProviderDetailsProperty: transfer.CfnWebApp.IdentityProviderDetailsProperty = {
applicationArn: 'applicationArn',
instanceArn: 'instanceArn',
role: 'role',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The Amazon Resource Name (ARN) for the IAM Identity Center application: this value is set automatically when you create your web app. |
| instance | string | The Amazon Resource Name (ARN) for the IAM Identity Center used for the web app. |
| role? | string | The IAM role in IAM Identity Center used for the web app. |
applicationArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) for the IAM Identity Center application: this value is set automatically when you create your web app.
instanceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) for the IAM Identity Center used for the web app.
role?
Type:
string
(optional)
The IAM role in IAM Identity Center used for the web app.

.NET
Go
Java
Python
TypeScript