aws_sdk_odb/client/get_cloud_exadata_infrastructure.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 [`GetCloudExadataInfrastructure`](crate::operation::get_cloud_exadata_infrastructure::builders::GetCloudExadataInfrastructureFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`cloud_exadata_infrastructure_id(impl Into<String>)`](crate::operation::get_cloud_exadata_infrastructure::builders::GetCloudExadataInfrastructureFluentBuilder::cloud_exadata_infrastructure_id) / [`set_cloud_exadata_infrastructure_id(Option<String>)`](crate::operation::get_cloud_exadata_infrastructure::builders::GetCloudExadataInfrastructureFluentBuilder::set_cloud_exadata_infrastructure_id):<br>required: **true**<br><p>The unique identifier of the Exadata infrastructure.</p><br>
7 /// - On success, responds with [`GetCloudExadataInfrastructureOutput`](crate::operation::get_cloud_exadata_infrastructure::GetCloudExadataInfrastructureOutput) with field(s):
8 /// - [`cloud_exadata_infrastructure(Option<CloudExadataInfrastructure>)`](crate::operation::get_cloud_exadata_infrastructure::GetCloudExadataInfrastructureOutput::cloud_exadata_infrastructure): <p>The Exadata infrastructure.</p>
9 /// - On failure, responds with [`SdkError<GetCloudExadataInfrastructureError>`](crate::operation::get_cloud_exadata_infrastructure::GetCloudExadataInfrastructureError)
10 pub fn get_cloud_exadata_infrastructure(
11 &self,
12 ) -> crate::operation::get_cloud_exadata_infrastructure::builders::GetCloudExadataInfrastructureFluentBuilder {
13 crate::operation::get_cloud_exadata_infrastructure::builders::GetCloudExadataInfrastructureFluentBuilder::new(self.handle.clone())
14 }
15}