@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:09.370Z") @Stability(value=Stable) public interface CfnScriptProps 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.*;
CfnScriptProps cfnScriptProps = CfnScriptProps.builder()
.storageLocation(S3LocationProperty.builder()
.bucket("bucket")
.key("key")
.roleArn("roleArn")
// the properties below are optional
.objectVersion("objectVersion")
.build())
// the properties below are optional
.name("name")
.version("version")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnScriptProps.Builder
A builder for
CfnScriptProps |
static class |
CfnScriptProps.Jsii$Proxy
An implementation for
CfnScriptProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnScriptProps.Builder |
builder() |
default String |
getName()
A descriptive label that is associated with a script.
|
Object |
getStorageLocation()
The location in Amazon S3 where build or script files are stored for access by Amazon GameLift.
|
default String |
getVersion()
The version that is associated with a build or script.
|
@Stability(value=Stable) @NotNull Object getStorageLocation()
@Stability(value=Stable) @Nullable default String getName()
Script names do not need to be unique.
@Stability(value=Stable) @Nullable default String getVersion()
Version strings do not need to be unique.
@Stability(value=Stable) static CfnScriptProps.Builder builder()
CfnScriptProps.Builder of CfnScriptPropsCopyright © 2022. All rights reserved.