aws_sdk_docdb/client/
describe_db_cluster_snapshot_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 [`DescribeDBClusterSnapshotAttributes`](crate::operation::describe_db_cluster_snapshot_attributes::builders::DescribeDBClusterSnapshotAttributesFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`db_cluster_snapshot_identifier(impl Into<String>)`](crate::operation::describe_db_cluster_snapshot_attributes::builders::DescribeDBClusterSnapshotAttributesFluentBuilder::db_cluster_snapshot_identifier) / [`set_db_cluster_snapshot_identifier(Option<String>)`](crate::operation::describe_db_cluster_snapshot_attributes::builders::DescribeDBClusterSnapshotAttributesFluentBuilder::set_db_cluster_snapshot_identifier):<br>required: **true**<br><p>The identifier for the cluster snapshot to describe the attributes for.</p><br>
7    /// - On success, responds with [`DescribeDbClusterSnapshotAttributesOutput`](crate::operation::describe_db_cluster_snapshot_attributes::DescribeDbClusterSnapshotAttributesOutput) with field(s):
8    ///   - [`db_cluster_snapshot_attributes_result(Option<DbClusterSnapshotAttributesResult>)`](crate::operation::describe_db_cluster_snapshot_attributes::DescribeDbClusterSnapshotAttributesOutput::db_cluster_snapshot_attributes_result): <p>Detailed information about the attributes that are associated with a cluster snapshot.</p>
9    /// - On failure, responds with [`SdkError<DescribeDBClusterSnapshotAttributesError>`](crate::operation::describe_db_cluster_snapshot_attributes::DescribeDBClusterSnapshotAttributesError)
10    pub fn describe_db_cluster_snapshot_attributes(
11        &self,
12    ) -> crate::operation::describe_db_cluster_snapshot_attributes::builders::DescribeDBClusterSnapshotAttributesFluentBuilder {
13        crate::operation::describe_db_cluster_snapshot_attributes::builders::DescribeDBClusterSnapshotAttributesFluentBuilder::new(
14            self.handle.clone(),
15        )
16    }
17}