interface CfnApplicationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppIntegrations.Mixins.CfnApplicationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappintegrations/mixins#CfnApplicationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.appintegrations.mixins.CfnApplicationMixinProps |
Python | aws_cdk.mixins_preview.aws_appintegrations.mixins.CfnApplicationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_appintegrations » mixins » CfnApplicationMixinProps |
Properties for CfnApplicationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appintegrations_mixins } from '@aws-cdk/mixins-preview/aws-appintegrations';
const cfnApplicationMixinProps: appintegrations_mixins.CfnApplicationMixinProps = {
applicationConfig: {
contactHandling: {
scope: 'scope',
},
},
applicationSourceConfig: {
externalUrlConfig: {
accessUrl: 'accessUrl',
approvedOrigins: ['approvedOrigins'],
},
},
description: 'description',
iframeConfig: {
allow: ['allow'],
sandbox: ['sandbox'],
},
initializationTimeout: 123,
isService: false,
name: 'name',
namespace: 'namespace',
permissions: ['permissions'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| application | IResolvable | Application | |
| application | IResolvable | Application | The configuration for where the application should be loaded from. |
| description? | string | The description of the application. |
| iframe | IResolvable | Iframe | |
| initialization | number | The initialization timeout in milliseconds. |
| is | boolean | IResolvable | Indicates whether the application is a service. |
| 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. |
applicationConfig?
Type:
IResolvable | Application
(optional)
applicationSourceConfig?
Type:
IResolvable | Application
(optional)
The configuration for where the application should be loaded from.
description?
Type:
string
(optional)
The description of the application.
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.
name?
Type:
string
(optional)
The name of the application.
namespace?
Type:
string
(optional)
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"} }.

.NET
Go
Java
Python
TypeScript