interface DisplayDataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSO.CfnApplicationProvider.DisplayDataProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssso#CfnApplicationProvider_DisplayDataProperty |
Java | software.amazon.awscdk.services.sso.CfnApplicationProvider.DisplayDataProperty |
Python | aws_cdk.aws_sso.CfnApplicationProvider.DisplayDataProperty |
TypeScript | aws-cdk-lib » aws_sso » CfnApplicationProvider » DisplayDataProperty |
A structure that describes how IAM Identity Center represents the application provider in the portal.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sso as sso } from 'aws-cdk-lib';
const displayDataProperty: sso.CfnApplicationProvider.DisplayDataProperty = {
description: 'description',
displayName: 'displayName',
iconUrl: 'iconUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the application provider that appears in the portal. |
| display | string | The name of the application provider that appears in the portal. |
| icon | string | A URL that points to an icon that represents the application provider. |
description?
Type:
string
(optional)
The description of the application provider that appears in the portal.
displayName?
Type:
string
(optional)
The name of the application provider that appears in the portal.
iconUrl?
Type:
string
(optional)
A URL that points to an icon that represents the application provider.

.NET
Go
Java
Python
TypeScript