#[non_exhaustive]pub struct CreateGraphInputBuilder { /* private fields */ }Expand description
A builder for CreateGraphInput.
Implementations§
source§impl CreateGraphInputBuilder
impl CreateGraphInputBuilder
Adds a key-value pair to tags.
To override the contents of this collection use set_tags.
The tags to assign to the new behavior graph. You can add up to 50 tags. For each tag, you provide the tag key and the tag value. Each tag key can contain up to 128 characters. Each tag value can contain up to 256 characters.
The tags to assign to the new behavior graph. You can add up to 50 tags. For each tag, you provide the tag key and the tag value. Each tag key can contain up to 128 characters. Each tag value can contain up to 256 characters.
The tags to assign to the new behavior graph. You can add up to 50 tags. For each tag, you provide the tag key and the tag value. Each tag key can contain up to 128 characters. Each tag value can contain up to 256 characters.
sourcepub fn build(self) -> Result<CreateGraphInput, BuildError>
pub fn build(self) -> Result<CreateGraphInput, BuildError>
Consumes the builder and constructs a CreateGraphInput.
source§impl CreateGraphInputBuilder
impl CreateGraphInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateGraphOutput, SdkError<CreateGraphError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateGraphOutput, SdkError<CreateGraphError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateGraphInputBuilder
impl Clone for CreateGraphInputBuilder
source§fn clone(&self) -> CreateGraphInputBuilder
fn clone(&self) -> CreateGraphInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateGraphInputBuilder
impl Debug for CreateGraphInputBuilder
source§impl Default for CreateGraphInputBuilder
impl Default for CreateGraphInputBuilder
source§fn default() -> CreateGraphInputBuilder
fn default() -> CreateGraphInputBuilder
source§impl PartialEq for CreateGraphInputBuilder
impl PartialEq for CreateGraphInputBuilder
source§fn eq(&self, other: &CreateGraphInputBuilder) -> bool
fn eq(&self, other: &CreateGraphInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateGraphInputBuilder
Auto Trait Implementations§
impl Freeze for CreateGraphInputBuilder
impl RefUnwindSafe for CreateGraphInputBuilder
impl Send for CreateGraphInputBuilder
impl Sync for CreateGraphInputBuilder
impl Unpin for CreateGraphInputBuilder
impl UnwindSafe for CreateGraphInputBuilder
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
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>
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>
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 more