libZSservicesZSamazonka-gameliftZSamazonka-gamelift
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.GameLift.Types.S3Location

Description

 
Synopsis

Documentation

data S3Location Source #

The location in Amazon S3 where build or script files are stored for access by Amazon GameLift. This location is specified in CreateBuild, CreateScript, and UpdateScript requests.

See: newS3Location smart constructor.

Constructors

S3Location' 

Fields

  • bucket :: Maybe Text

    An Amazon S3 bucket identifier. This is the name of the S3 bucket.

    GameLift currently does not support uploading from Amazon S3 buckets with names that contain a dot (.).

  • key :: Maybe Text

    The name of the zip file that contains the build files or script files.

  • objectVersion :: Maybe Text

    The version of the file, if object versioning is turned on for the bucket. Amazon GameLift 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 :: Maybe Text

    The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access the S3 bucket.

Instances

Instances details
Eq S3Location Source # 
Instance details

Defined in Amazonka.GameLift.Types.S3Location

Read S3Location Source # 
Instance details

Defined in Amazonka.GameLift.Types.S3Location

Show S3Location Source # 
Instance details

Defined in Amazonka.GameLift.Types.S3Location

Generic S3Location Source # 
Instance details

Defined in Amazonka.GameLift.Types.S3Location

Associated Types

type Rep S3Location :: Type -> Type #

NFData S3Location Source # 
Instance details

Defined in Amazonka.GameLift.Types.S3Location

Methods

rnf :: S3Location -> () #

Hashable S3Location Source # 
Instance details

Defined in Amazonka.GameLift.Types.S3Location

ToJSON S3Location Source # 
Instance details

Defined in Amazonka.GameLift.Types.S3Location

FromJSON S3Location Source # 
Instance details

Defined in Amazonka.GameLift.Types.S3Location

type Rep S3Location Source # 
Instance details

Defined in Amazonka.GameLift.Types.S3Location

type Rep S3Location = D1 ('MetaData "S3Location" "Amazonka.GameLift.Types.S3Location" "libZSservicesZSamazonka-gameliftZSamazonka-gamelift" 'False) (C1 ('MetaCons "S3Location'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "bucket") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "objectVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "roleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newS3Location :: S3Location Source #

Create a value of S3Location with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:bucket:S3Location', s3Location_bucket - An Amazon S3 bucket identifier. This is the name of the S3 bucket.

GameLift currently does not support uploading from Amazon S3 buckets with names that contain a dot (.).

$sel:key:S3Location', s3Location_key - The name of the zip file that contains the build files or script files.

$sel:objectVersion:S3Location', s3Location_objectVersion - The version of the file, if object versioning is turned on for the bucket. Amazon GameLift 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.

$sel:roleArn:S3Location', s3Location_roleArn - The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access the S3 bucket.

s3Location_bucket :: Lens' S3Location (Maybe Text) Source #

An Amazon S3 bucket identifier. This is the name of the S3 bucket.

GameLift currently does not support uploading from Amazon S3 buckets with names that contain a dot (.).

s3Location_key :: Lens' S3Location (Maybe Text) Source #

The name of the zip file that contains the build files or script files.

s3Location_objectVersion :: Lens' S3Location (Maybe Text) Source #

The version of the file, if object versioning is turned on for the bucket. Amazon GameLift 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.

s3Location_roleArn :: Lens' S3Location (Maybe Text) Source #

The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access the S3 bucket.