interface ApplicationSourceConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppIntegrations.CfnApplication.ApplicationSourceConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappintegrations#CfnApplication_ApplicationSourceConfigProperty |
Java | software.amazon.awscdk.services.appintegrations.CfnApplication.ApplicationSourceConfigProperty |
Python | aws_cdk.aws_appintegrations.CfnApplication.ApplicationSourceConfigProperty |
TypeScript | aws-cdk-lib » aws_appintegrations » CfnApplication » ApplicationSourceConfigProperty |
The configuration for where the application should be loaded from.
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-lib';
const applicationSourceConfigProperty: appintegrations.CfnApplication.ApplicationSourceConfigProperty = {
externalUrlConfig: {
accessUrl: 'accessUrl',
// the properties below are optional
approvedOrigins: ['approvedOrigins'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| external | IResolvable | External | The external URL source for the application. |
externalUrlConfig
Type:
IResolvable | External
The external URL source for the application.

.NET
Go
Java
Python
TypeScript