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
The location in Amazon S3 where build or script files are 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.*; StorageLocationProperty storageLocationProperty = StorageLocationProperty.builder() .bucket("bucket") .key("key") .roleArn("roleArn") // the properties below are optional .objectVersion("objectVersion") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBuild.StorageLocationProperty
static final class
An implementation forCfnBuild.StorageLocationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
An Amazon S3 bucket identifier.getKey()
The name of the zip file that contains the build files or script files.default String
A version of a stored file to retrieve, if the object versioning feature is turned on for the S3 bucket.The ARNfor an IAM role that allows Amazon GameLift to access the S3 bucket.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
An Amazon S3 bucket identifier. The name of the S3 bucket.Amazon GameLift doesn't support uploading from Amazon S3 buckets with names that contain a dot (.).
- See Also:
-
getKey
The name of the zip file that contains the build files or script files.- See Also:
-
getRoleArn
The ARNfor an IAM role that allows Amazon GameLift to access the S3 bucket.- See Also:
-
getObjectVersion
A version of a stored file to retrieve, if the object versioning feature is turned on for the S3 bucket.Use this parameter to specify a specific version. If this parameter isn't set, Amazon GameLift retrieves the latest version of the file.
- See Also:
-
builder
-