#[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
source§impl PartialEq for GetServiceGraphInputBuilder
impl PartialEq for GetServiceGraphInputBuilder
source§fn eq(&self, other: &GetServiceGraphInputBuilder) -> bool
fn eq(&self, other: &GetServiceGraphInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.