interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GameLift.Mixins.CfnScriptPropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgamelift/mixins#CfnScriptPropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.gamelift.mixins.CfnScriptPropsMixin.S3LocationProperty |
Python | aws_cdk.mixins_preview.aws_gamelift.mixins.CfnScriptPropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_gamelift » mixins » CfnScriptPropsMixin » S3LocationProperty |
The location in Amazon S3 where build or script files can be 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 s3LocationProperty: gamelift_mixins.CfnScriptPropsMixin.S3LocationProperty = {
bucket: 'bucket',
key: 'key',
objectVersion: 'objectVersion',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | An Amazon S3 bucket identifier. Thename of the S3 bucket. |
| key? | string | The name of the zip file that contains the build files or script files. |
| object | string | The version of the file, if object versioning is turned on for the bucket. |
| role | string | The Amazon Resource Name ( ARN ) for an IAM role that allows Amazon GameLift Servers to access the S3 bucket. |
bucket?
Type:
string
(optional)
An Amazon S3 bucket identifier. Thename of the S3 bucket.
Amazon GameLift Servers 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)
The version of the file, if object versioning is turned on for the bucket.
Amazon GameLift Servers uses this information when retrieving files from an S3 bucket that you own. Use this parameter to specify a specific version of the file. If not set, the latest version of the file is retrieved.
roleArn?
Type:
string
(optional)
The Amazon Resource Name ( ARN ) for an IAM role that allows Amazon GameLift Servers to access the S3 bucket.

.NET
Go
Java
Python
TypeScript