aws_sdk_timestreaminfluxdb/client/get_db_parameter_group.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 [`GetDbParameterGroup`](crate::operation::get_db_parameter_group::builders::GetDbParameterGroupFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`identifier(impl Into<String>)`](crate::operation::get_db_parameter_group::builders::GetDbParameterGroupFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::get_db_parameter_group::builders::GetDbParameterGroupFluentBuilder::set_identifier):<br>required: **true**<br><p>The id of the DB parameter group.</p><br>
7 /// - On success, responds with [`GetDbParameterGroupOutput`](crate::operation::get_db_parameter_group::GetDbParameterGroupOutput) with field(s):
8 /// - [`id(String)`](crate::operation::get_db_parameter_group::GetDbParameterGroupOutput::id): <p>A service-generated unique identifier.</p>
9 /// - [`name(String)`](crate::operation::get_db_parameter_group::GetDbParameterGroupOutput::name): <p>The customer-supplied name that uniquely identifies the DB parameter group when interacting with the Amazon Timestream for InfluxDB API and CLI commands.</p>
10 /// - [`arn(String)`](crate::operation::get_db_parameter_group::GetDbParameterGroupOutput::arn): <p>The Amazon Resource Name (ARN) of the DB parameter group.</p>
11 /// - [`description(Option<String>)`](crate::operation::get_db_parameter_group::GetDbParameterGroupOutput::description): <p>A description of the DB parameter group.</p>
12 /// - [`parameters(Option<Parameters>)`](crate::operation::get_db_parameter_group::GetDbParameterGroupOutput::parameters): <p>The parameters that comprise the DB parameter group.</p>
13 /// - On failure, responds with [`SdkError<GetDbParameterGroupError>`](crate::operation::get_db_parameter_group::GetDbParameterGroupError)
14 pub fn get_db_parameter_group(&self) -> crate::operation::get_db_parameter_group::builders::GetDbParameterGroupFluentBuilder {
15 crate::operation::get_db_parameter_group::builders::GetDbParameterGroupFluentBuilder::new(self.handle.clone())
16 }
17}