Interface ICfnApplicationProps
Properties for defining a CfnApplication.
Namespace: Amazon.CDK.AWS.AppIntegrations
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnApplicationProps
Syntax (vb)
Public Interface ICfnApplicationProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppIntegrations;
var cfnApplicationProps = new CfnApplicationProps {
ApplicationSourceConfig = new ApplicationSourceConfigProperty {
ExternalUrlConfig = new ExternalUrlConfigProperty {
AccessUrl = "accessUrl",
// the properties below are optional
ApprovedOrigins = new [] { "approvedOrigins" }
}
},
Description = "description",
Name = "name",
Namespace = "namespace",
// the properties below are optional
ApplicationConfig = new ApplicationConfigProperty {
ContactHandling = new ContactHandlingProperty {
Scope = "scope"
}
},
IframeConfig = new IframeConfigProperty {
Allow = new [] { "allow" },
Sandbox = new [] { "sandbox" }
},
InitializationTimeout = 123,
IsService = false,
Permissions = new [] { "permissions" },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
| ApplicationConfig | Properties for defining a |
| ApplicationSourceConfig | The configuration for where the application should be loaded from. |
| Description | The description of the application. |
| IframeConfig | Properties for defining a |
| InitializationTimeout | The initialization timeout in milliseconds. |
| IsService | Indicates whether the application is a service. |
| Name | The name of the application. |
| Namespace | The namespace of the application. |
| Permissions | The configuration of events or requests that the application has access to. |
| Tags | The tags used to organize, track, or control access for this resource. |
Properties
ApplicationConfig
Properties for defining a CfnApplication.
object? ApplicationConfig { get; }
Property Value
Remarks
ApplicationSourceConfig
The configuration for where the application should be loaded from.
object ApplicationSourceConfig { get; }
Property Value
Remarks
Description
The description of the application.
string Description { get; }
Property Value
Remarks
IframeConfig
Properties for defining a CfnApplication.
object? IframeConfig { get; }
Property Value
Remarks
InitializationTimeout
The initialization timeout in milliseconds.
double? InitializationTimeout { get; }
Property Value
Remarks
IsService
Indicates whether the application is a service.
object? IsService { get; }
Property Value
Remarks
Default: - false
Type union: either bool or IResolvable
Name
The name of the application.
string Name { get; }
Property Value
Remarks
Namespace
The namespace of the application.
string Namespace { get; }
Property Value
Remarks
Permissions
The configuration of events or requests that the application has access to.
string[]? Permissions { get; }
Property Value
string[]
Remarks
Tags
The tags used to organize, track, or control access for this resource.
ICfnTag[]? Tags { get; }
Property Value
ICfnTag[]
Remarks
For example, { "tags": {"key1":"value1", "key2":"value2"} }.