Interface CfnScript.S3LocationProperty

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

@Stability(Stable) public static interface CfnScript.S3LocationProperty extends software.amazon.jsii.JsiiSerializable
The location in Amazon S3 where build or script files can be stored for access by Amazon GameLift.

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.*;
 S3LocationProperty s3LocationProperty = S3LocationProperty.builder()
         .bucket("bucket")
         .key("key")
         .roleArn("roleArn")
         // the properties below are optional
         .objectVersion("objectVersion")
         .build();
 

See Also: