pub struct DescribeTargetGroups { /* private fields */ }
Expand description
Fluent builder constructing a request to DescribeTargetGroups
.
Describes the specified target groups or all of your target groups. By default, all target groups are described. Alternatively, you can specify one of the following to filter the results: the ARN of the load balancer, the names of one or more target groups, or the ARNs of one or more target groups.
Implementations
sourceimpl DescribeTargetGroups
impl DescribeTargetGroups
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DescribeTargetGroups, AwsResponseRetryClassifier>, SdkError<DescribeTargetGroupsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DescribeTargetGroups, AwsResponseRetryClassifier>, SdkError<DescribeTargetGroupsError>>
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<DescribeTargetGroupsOutput, SdkError<DescribeTargetGroupsError>>
pub async fn send(
self
) -> Result<DescribeTargetGroupsOutput, SdkError<DescribeTargetGroupsError>>
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 into_paginator(self) -> DescribeTargetGroupsPaginator
pub fn into_paginator(self) -> DescribeTargetGroupsPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a Stream
.
sourcepub fn load_balancer_arn(self, input: impl Into<String>) -> Self
pub fn load_balancer_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the load balancer.
sourcepub fn set_load_balancer_arn(self, input: Option<String>) -> Self
pub fn set_load_balancer_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the load balancer.
sourcepub fn target_group_arns(self, input: impl Into<String>) -> Self
pub fn target_group_arns(self, input: impl Into<String>) -> Self
Appends an item to TargetGroupArns
.
To override the contents of this collection use set_target_group_arns
.
The Amazon Resource Names (ARN) of the target groups.
sourcepub fn set_target_group_arns(self, input: Option<Vec<String>>) -> Self
pub fn set_target_group_arns(self, input: Option<Vec<String>>) -> Self
The Amazon Resource Names (ARN) of the target groups.
sourcepub fn names(self, input: impl Into<String>) -> Self
pub fn names(self, input: impl Into<String>) -> Self
Appends an item to Names
.
To override the contents of this collection use set_names
.
The names of the target groups.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
The marker for the next set of results. (You received this marker from a previous call.)
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
The marker for the next set of results. (You received this marker from a previous call.)
sourcepub fn page_size(self, input: i32) -> Self
pub fn page_size(self, input: i32) -> Self
The maximum number of results to return with this call.
sourcepub fn set_page_size(self, input: Option<i32>) -> Self
pub fn set_page_size(self, input: Option<i32>) -> Self
The maximum number of results to return with this call.
Trait Implementations
sourceimpl Clone for DescribeTargetGroups
impl Clone for DescribeTargetGroups
sourcefn clone(&self) -> DescribeTargetGroups
fn clone(&self) -> DescribeTargetGroups
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more