aws_sdk_elasticloadbalancingv2/client/
describe_target_group_attributes.rs

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