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
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. |
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.
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"} }.