Interface CfnBuild.StorageLocationProperty

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

@Stability(Stable) public static interface CfnBuild.StorageLocationProperty extends software.amazon.jsii.JsiiSerializable
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.gamelift.*;
 StorageLocationProperty storageLocationProperty = StorageLocationProperty.builder()
         .bucket("bucket")
         .key("key")
         .roleArn("roleArn")
         // the properties below are optional
         .objectVersion("objectVersion")
         .build();