aws_sdk_elasticloadbalancingv2/client/describe_target_group_attributes.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DescribeTargetGroupAttributes`](crate::operation::describe_target_group_attributes::builders::DescribeTargetGroupAttributesFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`target_group_arn(impl Into<String>)`](crate::operation::describe_target_group_attributes::builders::DescribeTargetGroupAttributesFluentBuilder::target_group_arn) / [`set_target_group_arn(Option<String>)`](crate::operation::describe_target_group_attributes::builders::DescribeTargetGroupAttributesFluentBuilder::set_target_group_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the target group.</p><br>
7 /// - On success, responds with [`DescribeTargetGroupAttributesOutput`](crate::operation::describe_target_group_attributes::DescribeTargetGroupAttributesOutput) with field(s):
8 /// - [`attributes(Option<Vec::<TargetGroupAttribute>>)`](crate::operation::describe_target_group_attributes::DescribeTargetGroupAttributesOutput::attributes): <p>Information about the target group attributes</p>
9 /// - On failure, responds with [`SdkError<DescribeTargetGroupAttributesError>`](crate::operation::describe_target_group_attributes::DescribeTargetGroupAttributesError)
10 pub fn describe_target_group_attributes(
11 &self,
12 ) -> crate::operation::describe_target_group_attributes::builders::DescribeTargetGroupAttributesFluentBuilder {
13 crate::operation::describe_target_group_attributes::builders::DescribeTargetGroupAttributesFluentBuilder::new(self.handle.clone())
14 }
15}