interface CfnApplicationProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppIntegrations.CfnApplicationProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappintegrations#CfnApplicationProps |
![]() | software.amazon.awscdk.services.appintegrations.CfnApplicationProps |
![]() | aws_cdk.aws_appintegrations.CfnApplicationProps |
![]() | aws-cdk-lib » aws_appintegrations » CfnApplicationProps |
Properties for defining a CfnApplication
.
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 cfnApplicationProps: appintegrations.CfnApplicationProps = {
applicationSourceConfig: {
externalUrlConfig: {
accessUrl: 'accessUrl',
// the properties below are optional
approvedOrigins: ['approvedOrigins'],
},
},
description: 'description',
name: 'name',
namespace: 'namespace',
// the properties below are optional
applicationConfig: {
contactHandling: {
scope: 'scope',
},
},
iframeConfig: {
allow: ['allow'],
sandbox: ['sandbox'],
},
initializationTimeout: 123,
isService: false,
permissions: ['permissions'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
application | IResolvable | Application | The configuration for where the application should be loaded from. |
description | string | The description of the application. |
name | string | The name of the application. |
namespace | string | The namespace of the application. |
application | IResolvable | Application | |
iframe | IResolvable | Iframe | |
initialization | number | The initialization timeout in milliseconds. |
is | boolean | IResolvable | Indicates whether the application is a service. |
permissions? | string[] | The configuration of events or requests that the application has access to. |
tags? | Cfn [] | The tags used to organize, track, or control access for this resource. |
applicationSourceConfig
Type:
IResolvable
|
Application
The configuration for where the application should be loaded from.
description
Type:
string
The description of the application.
name
Type:
string
The name of the application.
namespace
Type:
string
The namespace of the application.
applicationConfig?
Type:
IResolvable
|
Application
(optional)
iframeConfig?
Type:
IResolvable
|
Iframe
(optional)
initializationTimeout?
Type:
number
(optional)
The initialization timeout in milliseconds.
Required when IsService is true.
isService?
Type:
boolean |
IResolvable
(optional, default: false)
Indicates whether the application is a service.
permissions?
Type:
string[]
(optional)
The configuration of events or requests that the application has access to.
tags?
Type:
Cfn
[]
(optional)
The tags used to organize, track, or control access for this resource.
For example, { "tags": {"key1":"value1", "key2":"value2"} }.