interface StorageLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GameLift.Mixins.CfnBuildPropsMixin.StorageLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgamelift/mixins#CfnBuildPropsMixin_StorageLocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.gamelift.mixins.CfnBuildPropsMixin.StorageLocationProperty |
Python | aws_cdk.mixins_preview.aws_gamelift.mixins.CfnBuildPropsMixin.StorageLocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_gamelift » mixins » CfnBuildPropsMixin » StorageLocationProperty |
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 { mixins as gamelift_mixins } from '@aws-cdk/mixins-preview/aws-gamelift';
const storageLocationProperty: gamelift_mixins.CfnBuildPropsMixin.StorageLocationProperty = {
bucket: 'bucket',
key: 'key',
objectVersion: 'objectVersion',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | An Amazon S3 bucket identifier. The name of the S3 bucket. |
| key? | string | The name of the zip file that contains the build files or script files. |
| object | string | A version of a stored file to retrieve, if the object versioning feature is turned on for the S3 bucket. |
| role | string | The ARNfor an IAM role that allows Amazon GameLift to access the S3 bucket. |
bucket?
Type:
string
(optional)
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 (.).
key?
Type:
string
(optional)
The name of the zip file that contains the build files or script files.
objectVersion?
Type:
string
(optional)
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.
roleArn?
Type:
string
(optional)
The ARNfor an IAM role that allows Amazon GameLift to access the S3 bucket.

.NET
Go
Java
Python
TypeScript