Interface CfnAsset.AssetFileProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAsset.AssetFileProperty.Jsii$Proxy
Enclosing class:
CfnAsset

@Stability(Stable) public static interface CfnAsset.AssetFileProperty extends software.amazon.jsii.JsiiSerializable
A single file inside an Asset's bundle.

Path is the diff key on update; Content is write-only and not repopulated by Read.

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.devopsagent.*;
 Object metadata;
 AssetFileProperty assetFileProperty = AssetFileProperty.builder()
         .path("path")
         // the properties below are optional
         .contentBytes("contentBytes")
         .contentText("contentText")
         .metadata(metadata)
         .build();
 

See Also: