Struct rusoto_gamelift::S3Location[][src]

pub struct S3Location {
    pub bucket: Option<String>,
    pub key: Option<String>,
    pub role_arn: Option<String>,
}

Location in Amazon Simple Storage Service (Amazon S3) where build files can be stored for access by Amazon GameLift. This location is specified in a CreateBuild request. For more details, see the Create a Build with Files in Amazon S3.

Fields

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

Name of the zip file containing your build files.

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

Trait Implementations

impl Default for S3Location
[src]

Returns the "default value" for a type. Read more

impl Debug for S3Location
[src]

Formats the value using the given formatter. Read more

impl Clone for S3Location
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for S3Location
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for S3Location

impl Sync for S3Location