interface ExternalUrlConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppIntegrations.CfnApplicationPropsMixin.ExternalUrlConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappintegrations#CfnApplicationPropsMixin_ExternalUrlConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appintegrations.CfnApplicationPropsMixin.ExternalUrlConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_appintegrations.CfnApplicationPropsMixin.ExternalUrlConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appintegrations » CfnApplicationPropsMixin » ExternalUrlConfigProperty |
The external URL source for the application.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appintegrations as appintegrations } from '@aws-cdk/cfn-property-mixins';
const externalUrlConfigProperty: appintegrations.CfnApplicationPropsMixin.ExternalUrlConfigProperty = {
accessUrl: 'accessUrl',
approvedOrigins: ['approvedOrigins'],
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The URL to access the application. |
| approved | string[] | Additional URLs to allow list if different than the access URL. |
accessUrl?
Type:
string
(optional)
The URL to access the application.
approvedOrigins?
Type:
string[]
(optional)
Additional URLs to allow list if different than the access URL.

.NET
Go
Java
Python
TypeScript