Interface CfnApplicationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.659Z")
@Stability(Stable)
public interface CfnApplicationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnApplicationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.appintegrations.*;
CfnApplicationMixinProps cfnApplicationMixinProps = CfnApplicationMixinProps.builder()
.applicationConfig(ApplicationConfigProperty.builder()
.contactHandling(ContactHandlingProperty.builder()
.scope("scope")
.build())
.build())
.applicationSourceConfig(ApplicationSourceConfigProperty.builder()
.externalUrlConfig(ExternalUrlConfigProperty.builder()
.accessUrl("accessUrl")
.approvedOrigins(List.of("approvedOrigins"))
.build())
.build())
.description("description")
.iframeConfig(IframeConfigProperty.builder()
.allow(List.of("allow"))
.sandbox(List.of("sandbox"))
.build())
.initializationTimeout(123)
.isService(false)
.name("name")
.namespace("namespace")
.permissions(List.of("permissions"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationMixinPropsstatic final classAn implementation forCfnApplicationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnApplicationPropsMixin.ApplicationConfigPropertydefault ObjectThe configuration for where the application should be loaded from.default StringThe description of the application.default ObjectReturns union: eitherIResolvableorCfnApplicationPropsMixin.IframeConfigPropertydefault NumberThe initialization timeout in milliseconds.default ObjectIndicates whether the application is a service.default StringgetName()The name of the application.default StringThe namespace of the application.The configuration of events or requests that the application has access to.getTags()The tags used to organize, track, or control access for this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationConfig
Returns union: eitherIResolvableorCfnApplicationPropsMixin.ApplicationConfigProperty- See Also:
-
getApplicationSourceConfig
The configuration for where the application should be loaded from.Returns union: either
IResolvableorCfnApplicationPropsMixin.ApplicationSourceConfigProperty- See Also:
-
getDescription
The description of the application.- See Also:
-
getIframeConfig
Returns union: eitherIResolvableorCfnApplicationPropsMixin.IframeConfigProperty- See Also:
-
getInitializationTimeout
The initialization timeout in milliseconds.Required when IsService is true.
- See Also:
-
getIsService
Indicates whether the application is a service.Returns union: either
BooleanorIResolvableDefault: - false
- See Also:
-
getName
The name of the application.- See Also:
-
getNamespace
The namespace of the application.- See Also:
-
getPermissions
The configuration of events or requests that the application has access to.- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.For example, { "tags": {"key1":"value1", "key2":"value2"} }.
- See Also:
-
builder
- Returns:
- a
CfnApplicationMixinProps.BuilderofCfnApplicationMixinProps
-