Struct aws_sdk_gamelift::output::CreateBuildOutput
source · [−]#[non_exhaustive]pub struct CreateBuildOutput {
pub build_value: Option<Build>,
pub upload_credentials: Option<AwsCredentials>,
pub storage_location: Option<S3Location>,
}
Expand description
Represents the returned data in response to a request operation.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.build_value: Option<Build>
The newly created build resource, including a unique build IDs and status.
Note: This member has been renamed from build
.
upload_credentials: Option<AwsCredentials>
This element is returned only when the operation is called without a storage location. It contains credentials to use when you are uploading a build file to an Amazon S3 bucket that is owned by Amazon GameLift. Credentials have a limited life span. To refresh these credentials, call RequestUploadCredentials
.
storage_location: Option<S3Location>
Amazon S3 location for your game build file, including bucket name and key.
Implementations
sourceimpl CreateBuildOutput
impl CreateBuildOutput
sourcepub fn build_value(&self) -> Option<&Build>
pub fn build_value(&self) -> Option<&Build>
The newly created build resource, including a unique build IDs and status.
Note: This member has been renamed from build
.
sourcepub fn upload_credentials(&self) -> Option<&AwsCredentials>
pub fn upload_credentials(&self) -> Option<&AwsCredentials>
This element is returned only when the operation is called without a storage location. It contains credentials to use when you are uploading a build file to an Amazon S3 bucket that is owned by Amazon GameLift. Credentials have a limited life span. To refresh these credentials, call RequestUploadCredentials
.
sourcepub fn storage_location(&self) -> Option<&S3Location>
pub fn storage_location(&self) -> Option<&S3Location>
Amazon S3 location for your game build file, including bucket name and key.
sourceimpl CreateBuildOutput
impl CreateBuildOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateBuildOutput
Trait Implementations
sourceimpl Clone for CreateBuildOutput
impl Clone for CreateBuildOutput
sourcefn clone(&self) -> CreateBuildOutput
fn clone(&self) -> CreateBuildOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CreateBuildOutput
impl Debug for CreateBuildOutput
sourceimpl PartialEq<CreateBuildOutput> for CreateBuildOutput
impl PartialEq<CreateBuildOutput> for CreateBuildOutput
sourcefn eq(&self, other: &CreateBuildOutput) -> bool
fn eq(&self, other: &CreateBuildOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateBuildOutput) -> bool
fn ne(&self, other: &CreateBuildOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreateBuildOutput
Auto Trait Implementations
impl RefUnwindSafe for CreateBuildOutput
impl Send for CreateBuildOutput
impl Sync for CreateBuildOutput
impl Unpin for CreateBuildOutput
impl UnwindSafe for CreateBuildOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more