#[non_exhaustive]pub struct CreateCapacityProviderOutput {
pub capacity_provider: Option<CapacityProvider>,
/* private fields */
}
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.capacity_provider: Option<CapacityProvider>
The full description of the new capacity provider.
Implementations§
source§impl CreateCapacityProviderOutput
impl CreateCapacityProviderOutput
sourcepub fn capacity_provider(&self) -> Option<&CapacityProvider>
pub fn capacity_provider(&self) -> Option<&CapacityProvider>
The full description of the new capacity provider.
source§impl CreateCapacityProviderOutput
impl CreateCapacityProviderOutput
sourcepub fn builder() -> CreateCapacityProviderOutputBuilder
pub fn builder() -> CreateCapacityProviderOutputBuilder
Creates a new builder-style object to manufacture CreateCapacityProviderOutput
.
Trait Implementations§
source§impl Clone for CreateCapacityProviderOutput
impl Clone for CreateCapacityProviderOutput
source§fn clone(&self) -> CreateCapacityProviderOutput
fn clone(&self) -> CreateCapacityProviderOutput
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 CreateCapacityProviderOutput
impl Debug for CreateCapacityProviderOutput
source§impl PartialEq<CreateCapacityProviderOutput> for CreateCapacityProviderOutput
impl PartialEq<CreateCapacityProviderOutput> for CreateCapacityProviderOutput
source§fn eq(&self, other: &CreateCapacityProviderOutput) -> bool
fn eq(&self, other: &CreateCapacityProviderOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateCapacityProviderOutput
impl RequestId for CreateCapacityProviderOutput
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 CreateCapacityProviderOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateCapacityProviderOutput
impl Send for CreateCapacityProviderOutput
impl Sync for CreateCapacityProviderOutput
impl Unpin for CreateCapacityProviderOutput
impl UnwindSafe for CreateCapacityProviderOutput
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