#[non_exhaustive]pub struct GetBlueprintInputBuilder { /* private fields */ }Expand description
A builder for GetBlueprintInput.
Implementations§
Source§impl GetBlueprintInputBuilder
impl GetBlueprintInputBuilder
Sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the blueprint.
This field is required.Sourcepub fn include_blueprint(self, input: bool) -> Self
pub fn include_blueprint(self, input: bool) -> Self
Specifies whether or not to include the blueprint in the response.
Sourcepub fn set_include_blueprint(self, input: Option<bool>) -> Self
pub fn set_include_blueprint(self, input: Option<bool>) -> Self
Specifies whether or not to include the blueprint in the response.
Sourcepub fn get_include_blueprint(&self) -> &Option<bool>
pub fn get_include_blueprint(&self) -> &Option<bool>
Specifies whether or not to include the blueprint in the response.
Sourcepub fn include_parameter_spec(self, input: bool) -> Self
pub fn include_parameter_spec(self, input: bool) -> Self
Specifies whether or not to include the parameter specification.
Sourcepub fn set_include_parameter_spec(self, input: Option<bool>) -> Self
pub fn set_include_parameter_spec(self, input: Option<bool>) -> Self
Specifies whether or not to include the parameter specification.
Sourcepub fn get_include_parameter_spec(&self) -> &Option<bool>
pub fn get_include_parameter_spec(&self) -> &Option<bool>
Specifies whether or not to include the parameter specification.
Sourcepub fn build(self) -> Result<GetBlueprintInput, BuildError>
pub fn build(self) -> Result<GetBlueprintInput, BuildError>
Consumes the builder and constructs a GetBlueprintInput.
Source§impl GetBlueprintInputBuilder
impl GetBlueprintInputBuilder
Sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetBlueprintOutput, SdkError<GetBlueprintError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetBlueprintOutput, SdkError<GetBlueprintError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
Source§impl Clone for GetBlueprintInputBuilder
impl Clone for GetBlueprintInputBuilder
Source§fn clone(&self) -> GetBlueprintInputBuilder
fn clone(&self) -> GetBlueprintInputBuilder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetBlueprintInputBuilder
impl Debug for GetBlueprintInputBuilder
Source§impl Default for GetBlueprintInputBuilder
impl Default for GetBlueprintInputBuilder
Source§fn default() -> GetBlueprintInputBuilder
fn default() -> GetBlueprintInputBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetBlueprintInputBuilder
impl PartialEq for GetBlueprintInputBuilder
Source§fn eq(&self, other: &GetBlueprintInputBuilder) -> bool
fn eq(&self, other: &GetBlueprintInputBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetBlueprintInputBuilder
Auto Trait Implementations§
impl Freeze for GetBlueprintInputBuilder
impl RefUnwindSafe for GetBlueprintInputBuilder
impl Send for GetBlueprintInputBuilder
impl Sync for GetBlueprintInputBuilder
impl Unpin for GetBlueprintInputBuilder
impl UnsafeUnpin for GetBlueprintInputBuilder
impl UnwindSafe for GetBlueprintInputBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.