Interface CfnBuildPropsMixin.StorageLocationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBuildPropsMixin.StorageLocationProperty.Jsii$Proxy
- Enclosing class:
CfnBuildPropsMixin
@Stability(Stable)
public static interface CfnBuildPropsMixin.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.cfnpropertymixins.services.gamelift.*;
StorageLocationProperty storageLocationProperty = StorageLocationProperty.builder()
.bucket("bucket")
.key("key")
.objectVersion("objectVersion")
.roleArn("roleArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBuildPropsMixin.StorageLocationPropertystatic final classAn implementation forCfnBuildPropsMixin.StorageLocationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringAn Amazon S3 bucket identifier.default StringgetKey()The name of the zip file that contains the build files or script files.default StringA version of a stored file to retrieve, if the object versioning feature is turned on for the S3 bucket.default StringThe 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:
-
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 Servers retrieves the latest version of the file.
- See Also:
-
getRoleArn
The ARNfor an IAM role that allows Amazon GameLift to access the S3 bucket.- See Also:
-
builder
-