Class CfnApplicationProviderPropsMixin.DisplayDataProperty
A structure that describes how IAM Identity Center represents the application provider in the portal.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SSO
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnApplicationProviderPropsMixin.DisplayDataProperty : CfnApplicationProviderPropsMixin.IDisplayDataProperty
Syntax (vb)
Public Class CfnApplicationProviderPropsMixin.DisplayDataProperty Implements CfnApplicationProviderPropsMixin.IDisplayDataProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.SSO;
var displayDataProperty = new DisplayDataProperty {
Description = "description",
DisplayName = "displayName",
IconUrl = "iconUrl"
};
Synopsis
Constructors
| DisplayDataProperty() | A structure that describes how IAM Identity Center represents the application provider in the portal. |
Properties
| Description | The description of the application provider that appears in the portal. |
| DisplayName | The name of the application provider that appears in the portal. |
| IconUrl | A URL that points to an icon that represents the application provider. |
Constructors
DisplayDataProperty()
A structure that describes how IAM Identity Center represents the application provider in the portal.
public DisplayDataProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.SSO;
var displayDataProperty = new DisplayDataProperty {
Description = "description",
DisplayName = "displayName",
IconUrl = "iconUrl"
};
Properties
Description
The description of the application provider that appears in the portal.
public string? Description { get; set; }
Property Value
Remarks
DisplayName
The name of the application provider that appears in the portal.
public string? DisplayName { get; set; }
Property Value
Remarks
IconUrl
A URL that points to an icon that represents the application provider.
public string? IconUrl { get; set; }