Struct aws_sdk_elasticbeanstalk::operation::create_storage_location::CreateStorageLocationOutput
source · #[non_exhaustive]pub struct CreateStorageLocationOutput {
pub s3_bucket: Option<String>,
/* private fields */
}
Expand description
Results of a CreateStorageLocationResult
call.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.s3_bucket: Option<String>
The name of the Amazon S3 bucket created.
Implementations§
source§impl CreateStorageLocationOutput
impl CreateStorageLocationOutput
sourcepub fn builder() -> CreateStorageLocationOutputBuilder
pub fn builder() -> CreateStorageLocationOutputBuilder
Creates a new builder-style object to manufacture CreateStorageLocationOutput
.
Trait Implementations§
source§impl Clone for CreateStorageLocationOutput
impl Clone for CreateStorageLocationOutput
source§fn clone(&self) -> CreateStorageLocationOutput
fn clone(&self) -> CreateStorageLocationOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CreateStorageLocationOutput
impl Debug for CreateStorageLocationOutput
source§impl PartialEq<CreateStorageLocationOutput> for CreateStorageLocationOutput
impl PartialEq<CreateStorageLocationOutput> for CreateStorageLocationOutput
source§fn eq(&self, other: &CreateStorageLocationOutput) -> bool
fn eq(&self, other: &CreateStorageLocationOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateStorageLocationOutput
impl RequestId for CreateStorageLocationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for CreateStorageLocationOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateStorageLocationOutput
impl Send for CreateStorageLocationOutput
impl Sync for CreateStorageLocationOutput
impl Unpin for CreateStorageLocationOutput
impl UnwindSafe for CreateStorageLocationOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more