Interface CfnApplication.DefinitionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.DefinitionProperty.Jsii$Proxy
- Enclosing class:
- CfnApplication
@Stability(Stable)
public static interface CfnApplication.DefinitionProperty
extends software.amazon.jsii.JsiiSerializable
The application definition for a particular application.
You can specify either inline JSON or an Amazon S3 bucket location.
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.m2.*;
DefinitionProperty definitionProperty = DefinitionProperty.builder()
.content("content")
.s3Location("s3Location")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplication.DefinitionPropertystatic final classAn implementation forCfnApplication.DefinitionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContent
The content of the application definition.This is a JSON object that contains the resource configuration/definitions that identify an application.
-
getS3Location
The S3 bucket that contains the application definition. -
builder
-