interface IdentityProviderDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Mixins.CfnWebAppPropsMixin.IdentityProviderDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/mixins#CfnWebAppPropsMixin_IdentityProviderDetailsProperty |
Java | software.amazon.awscdk.mixins.preview.services.transfer.mixins.CfnWebAppPropsMixin.IdentityProviderDetailsProperty |
Python | aws_cdk.mixins_preview.aws_transfer.mixins.CfnWebAppPropsMixin.IdentityProviderDetailsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_transfer » mixins » CfnWebAppPropsMixin » IdentityProviderDetailsProperty |
A structure that describes the values to use for the SSO 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 { mixins as transfer_mixins } from '@aws-cdk/mixins-preview/aws-transfer';
const identityProviderDetailsProperty: transfer_mixins.CfnWebAppPropsMixin.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