interface DisplayDataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSO.CfnApplicationProviderPropsMixin.DisplayDataProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssso#CfnApplicationProviderPropsMixin_DisplayDataProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sso.CfnApplicationProviderPropsMixin.DisplayDataProperty |
Python | aws_cdk.cfn_property_mixins.aws_sso.CfnApplicationProviderPropsMixin.DisplayDataProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sso » CfnApplicationProviderPropsMixin » 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/cfn-property-mixins';
const displayDataProperty: sso.CfnApplicationProviderPropsMixin.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