Class CfnApplication.ExternalUrlConfigProperty
The external URL source for the application.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppIntegrations
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplication.ExternalUrlConfigProperty : CfnApplication.IExternalUrlConfigProperty
Syntax (vb)
Public Class CfnApplication.ExternalUrlConfigProperty Implements CfnApplication.IExternalUrlConfigProperty
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.AWS.AppIntegrations;
var externalUrlConfigProperty = new ExternalUrlConfigProperty {
AccessUrl = "accessUrl",
// the properties below are optional
ApprovedOrigins = new [] { "approvedOrigins" }
};
Synopsis
Constructors
ExternalUrlConfigProperty() | The external URL source for the application. |
Properties
AccessUrl | The URL to access the application. |
ApprovedOrigins | Additional URLs to allow list if different than the access URL. |
Constructors
ExternalUrlConfigProperty()
The external URL source for the application.
public ExternalUrlConfigProperty()
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.AWS.AppIntegrations;
var externalUrlConfigProperty = new ExternalUrlConfigProperty {
AccessUrl = "accessUrl",
// the properties below are optional
ApprovedOrigins = new [] { "approvedOrigins" }
};
Properties
AccessUrl
The URL to access the application.
public string AccessUrl { get; set; }
Property Value
Remarks
ApprovedOrigins
Additional URLs to allow list if different than the access URL.
public string[]? ApprovedOrigins { get; set; }
Property Value
string[]