Interface ContentConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ContentConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:07.795Z")
@Stability(Experimental)
public interface ContentConfig
extends software.amazon.jsii.JsiiSerializable
(experimental) Result of binding
Content
into a Build
.
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.alpha.*; ContentConfig contentConfig = ContentConfig.builder() .s3Location(Location.builder() .bucketName("bucketName") .objectKey("objectKey") // the properties below are optional .objectVersion("objectVersion") .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forContentConfig
static final class
An implementation forContentConfig
-
Method Summary
Modifier and TypeMethodDescriptionstatic ContentConfig.Builder
builder()
(experimental) The location of the content in S3.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Location
(experimental) The location of the content in S3. -
builder
- Returns:
- a
ContentConfig.Builder
ofContentConfig
-