Class CfnApplicationMixinProps
Properties for CfnApplicationPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppIntegrations
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnApplicationMixinProps : ICfnApplicationMixinProps
Syntax (vb)
Public Class CfnApplicationMixinProps Implements ICfnApplicationMixinProps
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.CfnPropertyMixins.AWS.AppIntegrations;
var cfnApplicationMixinProps = new CfnApplicationMixinProps {
ApplicationConfig = new ApplicationConfigProperty {
ContactHandling = new ContactHandlingProperty {
Scope = "scope"
}
},
ApplicationSourceConfig = new ApplicationSourceConfigProperty {
ExternalUrlConfig = new ExternalUrlConfigProperty {
AccessUrl = "accessUrl",
ApprovedOrigins = new [] { "approvedOrigins" }
}
},
Description = "description",
IframeConfig = new IframeConfigProperty {
Allow = new [] { "allow" },
Sandbox = new [] { "sandbox" }
},
InitializationTimeout = 123,
IsService = false,
Name = "name",
Namespace = "namespace",
Permissions = new [] { "permissions" },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnApplicationMixinProps() | Properties for CfnApplicationPropsMixin. |
Properties
| ApplicationConfig | Properties for CfnApplicationPropsMixin. |
| ApplicationSourceConfig | The configuration for where the application should be loaded from. |
| Description | The description of the application. |
| IframeConfig | Properties for CfnApplicationPropsMixin. |
| 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. |
Constructors
CfnApplicationMixinProps()
Properties for CfnApplicationPropsMixin.
public CfnApplicationMixinProps()
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.CfnPropertyMixins.AWS.AppIntegrations;
var cfnApplicationMixinProps = new CfnApplicationMixinProps {
ApplicationConfig = new ApplicationConfigProperty {
ContactHandling = new ContactHandlingProperty {
Scope = "scope"
}
},
ApplicationSourceConfig = new ApplicationSourceConfigProperty {
ExternalUrlConfig = new ExternalUrlConfigProperty {
AccessUrl = "accessUrl",
ApprovedOrigins = new [] { "approvedOrigins" }
}
},
Description = "description",
IframeConfig = new IframeConfigProperty {
Allow = new [] { "allow" },
Sandbox = new [] { "sandbox" }
},
InitializationTimeout = 123,
IsService = false,
Name = "name",
Namespace = "namespace",
Permissions = new [] { "permissions" },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
ApplicationConfig
Properties for CfnApplicationPropsMixin.
public object? ApplicationConfig { get; set; }
Property Value
Remarks
ApplicationSourceConfig
The configuration for where the application should be loaded from.
public object? ApplicationSourceConfig { get; set; }
Property Value
Remarks
Description
The description of the application.
public string? Description { get; set; }
Property Value
Remarks
IframeConfig
Properties for CfnApplicationPropsMixin.
public object? IframeConfig { get; set; }
Property Value
Remarks
InitializationTimeout
The initialization timeout in milliseconds.
public double? InitializationTimeout { get; set; }
Property Value
Remarks
IsService
Indicates whether the application is a service.
public object? IsService { get; set; }
Property Value
Remarks
Default: - false
Type union: either bool or IResolvable
Name
The name of the application.
public string? Name { get; set; }
Property Value
Remarks
Namespace
The namespace of the application.
public string? Namespace { get; set; }
Property Value
Remarks
Permissions
The configuration of events or requests that the application has access to.
public string[]? Permissions { get; set; }
Property Value
string[]
Remarks
Tags
The tags used to organize, track, or control access for this resource.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
For example, { "tags": {"key1":"value1", "key2":"value2"} }.