#[non_exhaustive]pub struct GetServiceGraphInputBuilder { /* private fields */ }
Expand description
A builder for GetServiceGraphInput
.
Implementations§
source§impl GetServiceGraphInputBuilder
impl GetServiceGraphInputBuilder
sourcepub fn start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
The start of the time frame for which to generate a graph.
This field is required.sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
The start of the time frame for which to generate a graph.
sourcepub fn get_start_time(&self) -> &Option<DateTime>
pub fn get_start_time(&self) -> &Option<DateTime>
The start of the time frame for which to generate a graph.
sourcepub fn end_time(self, input: DateTime) -> Self
pub fn end_time(self, input: DateTime) -> Self
The end of the timeframe for which to generate a graph.
This field is required.sourcepub fn set_end_time(self, input: Option<DateTime>) -> Self
pub fn set_end_time(self, input: Option<DateTime>) -> Self
The end of the timeframe for which to generate a graph.
sourcepub fn get_end_time(&self) -> &Option<DateTime>
pub fn get_end_time(&self) -> &Option<DateTime>
The end of the timeframe for which to generate a graph.
sourcepub fn group_name(self, input: impl Into<String>) -> Self
pub fn group_name(self, input: impl Into<String>) -> Self
The name of a group based on which you want to generate a graph.
sourcepub fn set_group_name(self, input: Option<String>) -> Self
pub fn set_group_name(self, input: Option<String>) -> Self
The name of a group based on which you want to generate a graph.
sourcepub fn get_group_name(&self) -> &Option<String>
pub fn get_group_name(&self) -> &Option<String>
The name of a group based on which you want to generate a graph.
sourcepub fn group_arn(self, input: impl Into<String>) -> Self
pub fn group_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of a group based on which you want to generate a graph.
sourcepub fn set_group_arn(self, input: Option<String>) -> Self
pub fn set_group_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of a group based on which you want to generate a graph.
sourcepub fn get_group_arn(&self) -> &Option<String>
pub fn get_group_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of a group based on which you want to generate a graph.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
Pagination token.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
Pagination token.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
Pagination token.
sourcepub fn build(self) -> Result<GetServiceGraphInput, BuildError>
pub fn build(self) -> Result<GetServiceGraphInput, BuildError>
Consumes the builder and constructs a GetServiceGraphInput
.
source§impl GetServiceGraphInputBuilder
impl GetServiceGraphInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetServiceGraphOutput, SdkError<GetServiceGraphError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetServiceGraphOutput, SdkError<GetServiceGraphError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetServiceGraphInputBuilder
impl Clone for GetServiceGraphInputBuilder
source§fn clone(&self) -> GetServiceGraphInputBuilder
fn clone(&self) -> GetServiceGraphInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetServiceGraphInputBuilder
impl Debug for GetServiceGraphInputBuilder
source§impl Default for GetServiceGraphInputBuilder
impl Default for GetServiceGraphInputBuilder
source§fn default() -> GetServiceGraphInputBuilder
fn default() -> GetServiceGraphInputBuilder
impl StructuralPartialEq for GetServiceGraphInputBuilder
Auto Trait Implementations§
impl Freeze for GetServiceGraphInputBuilder
impl RefUnwindSafe for GetServiceGraphInputBuilder
impl Send for GetServiceGraphInputBuilder
impl Sync for GetServiceGraphInputBuilder
impl Unpin for GetServiceGraphInputBuilder
impl UnwindSafe for GetServiceGraphInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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