pub struct DescribeQueryDefinitions { /* private fields */ }Expand description
Fluent builder constructing a request to DescribeQueryDefinitions.
This operation returns a paginated list of your saved CloudWatch Logs Insights query definitions.
You can use the queryDefinitionNamePrefix parameter to limit the results to only the query definitions that have names that start with a certain string.
Implementations§
source§impl DescribeQueryDefinitions
impl DescribeQueryDefinitions
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DescribeQueryDefinitions, AwsResponseRetryClassifier>, SdkError<DescribeQueryDefinitionsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DescribeQueryDefinitions, AwsResponseRetryClassifier>, SdkError<DescribeQueryDefinitionsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<DescribeQueryDefinitionsOutput, SdkError<DescribeQueryDefinitionsError>>
pub async fn send(
self
) -> Result<DescribeQueryDefinitionsOutput, SdkError<DescribeQueryDefinitionsError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn query_definition_name_prefix(self, input: impl Into<String>) -> Self
pub fn query_definition_name_prefix(self, input: impl Into<String>) -> Self
Use this parameter to filter your results to only the query definitions that have names that start with the prefix you specify.
sourcepub fn set_query_definition_name_prefix(self, input: Option<String>) -> Self
pub fn set_query_definition_name_prefix(self, input: Option<String>) -> Self
Use this parameter to filter your results to only the query definitions that have names that start with the prefix you specify.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
Limits the number of returned query definitions to the specified number.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
Limits the number of returned query definitions to the specified number.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token for the next set of items to return. The token expires after 24 hours.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token for the next set of items to return. The token expires after 24 hours.
Trait Implementations§
source§impl Clone for DescribeQueryDefinitions
impl Clone for DescribeQueryDefinitions
source§fn clone(&self) -> DescribeQueryDefinitions
fn clone(&self) -> DescribeQueryDefinitions
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more