aws_sdk_eks/client/describe_fargate_profile.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 [`DescribeFargateProfile`](crate::operation::describe_fargate_profile::builders::DescribeFargateProfileFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`cluster_name(impl Into<String>)`](crate::operation::describe_fargate_profile::builders::DescribeFargateProfileFluentBuilder::cluster_name) / [`set_cluster_name(Option<String>)`](crate::operation::describe_fargate_profile::builders::DescribeFargateProfileFluentBuilder::set_cluster_name):<br>required: **true**<br><p>The name of your cluster.</p><br>
7 /// - [`fargate_profile_name(impl Into<String>)`](crate::operation::describe_fargate_profile::builders::DescribeFargateProfileFluentBuilder::fargate_profile_name) / [`set_fargate_profile_name(Option<String>)`](crate::operation::describe_fargate_profile::builders::DescribeFargateProfileFluentBuilder::set_fargate_profile_name):<br>required: **true**<br><p>The name of the Fargate profile to describe.</p><br>
8 /// - On success, responds with [`DescribeFargateProfileOutput`](crate::operation::describe_fargate_profile::DescribeFargateProfileOutput) with field(s):
9 /// - [`fargate_profile(Option<FargateProfile>)`](crate::operation::describe_fargate_profile::DescribeFargateProfileOutput::fargate_profile): <p>The full description of your Fargate profile.</p>
10 /// - On failure, responds with [`SdkError<DescribeFargateProfileError>`](crate::operation::describe_fargate_profile::DescribeFargateProfileError)
11 pub fn describe_fargate_profile(&self) -> crate::operation::describe_fargate_profile::builders::DescribeFargateProfileFluentBuilder {
12 crate::operation::describe_fargate_profile::builders::DescribeFargateProfileFluentBuilder::new(self.handle.clone())
13 }
14}