Interface CfnApplicationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-27T17:01:56.794Z")
@Stability(Stable)
public interface CfnApplicationProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.appintegrations.*; CfnApplicationProps cfnApplicationProps = CfnApplicationProps.builder() .applicationSourceConfig(ApplicationSourceConfigProperty.builder() .externalUrlConfig(ExternalUrlConfigProperty.builder() .accessUrl("accessUrl") // the properties below are optional .approvedOrigins(List.of("approvedOrigins")) .build()) .build()) .description("description") .name("name") .namespace("namespace") // the properties below are optional .permissions(List.of("permissions")) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationProps
static final class
An implementation forCfnApplicationProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnApplicationProps.Builder
builder()
The configuration for where the application should be loaded from.The description of the application.getName()
The name of the application.The 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
-
getApplicationSourceConfig
The configuration for where the application should be loaded from.- See Also:
-
getDescription
The description of the application.- 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
CfnApplicationProps.Builder
ofCfnApplicationProps
-