Interface AssetManifestFileDestination

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AssetManifestFileDestination.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-15T10:24:53.368Z") @Stability(Stable) public interface AssetManifestFileDestination extends software.amazon.jsii.JsiiSerializable
The destination for a file asset, when it is given to the AssetManifestBuilder.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 Object assumeRoleAdditionalOptions;
 AssetManifestFileDestination assetManifestFileDestination = AssetManifestFileDestination.builder()
         .bucketName("bucketName")
         // the properties below are optional
         .bucketPrefix("bucketPrefix")
         .role(RoleOptions.builder()
                 .assumeRoleArn("assumeRoleArn")
                 // the properties below are optional
                 .assumeRoleAdditionalOptions(Map.of(
                         "assumeRoleAdditionalOptionsKey", assumeRoleAdditionalOptions))
                 .assumeRoleExternalId("assumeRoleExternalId")
                 .build())
         .build();