Struct aws_sdk_applicationinsights::operation::list_problems::builders::ListProblemsInputBuilder
source · #[non_exhaustive]pub struct ListProblemsInputBuilder { /* private fields */ }
Expand description
A builder for ListProblemsInput
.
Implementations§
source§impl ListProblemsInputBuilder
impl ListProblemsInputBuilder
sourcepub fn account_id(self, input: impl Into<String>) -> Self
pub fn account_id(self, input: impl Into<String>) -> Self
The AWS account ID for the resource group owner.
sourcepub fn set_account_id(self, input: Option<String>) -> Self
pub fn set_account_id(self, input: Option<String>) -> Self
The AWS account ID for the resource group owner.
sourcepub fn get_account_id(&self) -> &Option<String>
pub fn get_account_id(&self) -> &Option<String>
The AWS account ID for the resource group owner.
sourcepub fn resource_group_name(self, input: impl Into<String>) -> Self
pub fn resource_group_name(self, input: impl Into<String>) -> Self
The name of the resource group.
sourcepub fn set_resource_group_name(self, input: Option<String>) -> Self
pub fn set_resource_group_name(self, input: Option<String>) -> Self
The name of the resource group.
sourcepub fn get_resource_group_name(&self) -> &Option<String>
pub fn get_resource_group_name(&self) -> &Option<String>
The name of the resource group.
sourcepub fn start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
The time when the problem was detected, in epoch seconds. If you don't specify a time frame for the request, problems within the past seven days are returned.
sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
The time when the problem was detected, in epoch seconds. If you don't specify a time frame for the request, problems within the past seven days are returned.
sourcepub fn get_start_time(&self) -> &Option<DateTime>
pub fn get_start_time(&self) -> &Option<DateTime>
The time when the problem was detected, in epoch seconds. If you don't specify a time frame for the request, problems within the past seven days are returned.
sourcepub fn end_time(self, input: DateTime) -> Self
pub fn end_time(self, input: DateTime) -> Self
The time when the problem ended, in epoch seconds. If not specified, problems within the past seven days are returned.
sourcepub fn set_end_time(self, input: Option<DateTime>) -> Self
pub fn set_end_time(self, input: Option<DateTime>) -> Self
The time when the problem ended, in epoch seconds. If not specified, problems within the past seven days are returned.
sourcepub fn get_end_time(&self) -> &Option<DateTime>
pub fn get_end_time(&self) -> &Option<DateTime>
The time when the problem ended, in epoch seconds. If not specified, problems within the past seven days are returned.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken
value.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken
value.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken
value.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token to request the next page of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token to request the next page of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token to request the next page of results.
sourcepub fn component_name(self, input: impl Into<String>) -> Self
pub fn component_name(self, input: impl Into<String>) -> Self
The name of the component.
sourcepub fn set_component_name(self, input: Option<String>) -> Self
pub fn set_component_name(self, input: Option<String>) -> Self
The name of the component.
sourcepub fn get_component_name(&self) -> &Option<String>
pub fn get_component_name(&self) -> &Option<String>
The name of the component.
sourcepub fn visibility(self, input: Visibility) -> Self
pub fn visibility(self, input: Visibility) -> Self
Specifies whether or not you can view the problem. If not specified, visible and ignored problems are returned.
sourcepub fn set_visibility(self, input: Option<Visibility>) -> Self
pub fn set_visibility(self, input: Option<Visibility>) -> Self
Specifies whether or not you can view the problem. If not specified, visible and ignored problems are returned.
sourcepub fn get_visibility(&self) -> &Option<Visibility>
pub fn get_visibility(&self) -> &Option<Visibility>
Specifies whether or not you can view the problem. If not specified, visible and ignored problems are returned.
sourcepub fn build(self) -> Result<ListProblemsInput, BuildError>
pub fn build(self) -> Result<ListProblemsInput, BuildError>
Consumes the builder and constructs a ListProblemsInput
.
source§impl ListProblemsInputBuilder
impl ListProblemsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListProblemsOutput, SdkError<ListProblemsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListProblemsOutput, SdkError<ListProblemsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListProblemsInputBuilder
impl Clone for ListProblemsInputBuilder
source§fn clone(&self) -> ListProblemsInputBuilder
fn clone(&self) -> ListProblemsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListProblemsInputBuilder
impl Debug for ListProblemsInputBuilder
source§impl Default for ListProblemsInputBuilder
impl Default for ListProblemsInputBuilder
source§fn default() -> ListProblemsInputBuilder
fn default() -> ListProblemsInputBuilder
source§impl PartialEq for ListProblemsInputBuilder
impl PartialEq for ListProblemsInputBuilder
source§fn eq(&self, other: &ListProblemsInputBuilder) -> bool
fn eq(&self, other: &ListProblemsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.