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();