Show / Hide Table of Contents

Class CfnApplication.ExternalUrlConfigProperty

The external URL source for the application.

Inheritance
object
CfnApplication.ExternalUrlConfigProperty
Implements
CfnApplication.IExternalUrlConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-application-externalurlconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-application-externalurlconfig.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-application-externalurlconfig.html#cfn-appintegrations-application-externalurlconfig-accessurl

ApprovedOrigins

Additional URLs to allow list if different than the access URL.

public string[]? ApprovedOrigins { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-application-externalurlconfig.html#cfn-appintegrations-application-externalurlconfig-approvedorigins

Implements

CfnApplication.IExternalUrlConfigProperty
Back to top Generated by DocFX