interface StorageLocationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.GameLift.CfnBuild.StorageLocationProperty | 
  Java | software.amazon.awscdk.services.gamelift.CfnBuild.StorageLocationProperty | 
  Python | aws_cdk.aws_gamelift.CfnBuild.StorageLocationProperty | 
  TypeScript  | @aws-cdk/aws-gamelift » CfnBuild » StorageLocationProperty | 
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as gamelift from '@aws-cdk/aws-gamelift';
const storageLocationProperty: gamelift.CfnBuild.StorageLocationProperty = {
  bucket: 'bucket',
  key: 'key',
  roleArn: 'roleArn',
  // the properties below are optional
  objectVersion: 'objectVersion',
};
Properties
| Name | Type | Description | 
|---|---|---|
| bucket | string | CfnBuild.StorageLocationProperty.Bucket. | 
| key | string | CfnBuild.StorageLocationProperty.Key. | 
| role | string | CfnBuild.StorageLocationProperty.RoleArn. | 
| object | string | CfnBuild.StorageLocationProperty.ObjectVersion. | 
bucket
Type:
string
CfnBuild.StorageLocationProperty.Bucket.
key
Type:
string
CfnBuild.StorageLocationProperty.Key.
roleArn
Type:
string
CfnBuild.StorageLocationProperty.RoleArn.
objectVersion?
Type:
string
(optional)
CfnBuild.StorageLocationProperty.ObjectVersion.

 .NET
 Java
 Python
 TypeScript