Interface CfnPackage.StorageLocationProperty

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

@Stability(Stable) public static interface CfnPackage.StorageLocationProperty extends software.amazon.jsii.JsiiSerializable
A storage 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.panorama.*;
 StorageLocationProperty storageLocationProperty = StorageLocationProperty.builder()
         .binaryPrefixLocation("binaryPrefixLocation")
         .bucket("bucket")
         .generatedPrefixLocation("generatedPrefixLocation")
         .manifestPrefixLocation("manifestPrefixLocation")
         .repoPrefixLocation("repoPrefixLocation")
         .build();
 

See Also: