aws_sdk_datasync/client/describe_location_fsx_open_zfs.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 [`DescribeLocationFsxOpenZfs`](crate::operation::describe_location_fsx_open_zfs::builders::DescribeLocationFsxOpenZfsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`location_arn(impl Into<String>)`](crate::operation::describe_location_fsx_open_zfs::builders::DescribeLocationFsxOpenZfsFluentBuilder::location_arn) / [`set_location_arn(Option<String>)`](crate::operation::describe_location_fsx_open_zfs::builders::DescribeLocationFsxOpenZfsFluentBuilder::set_location_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the FSx for OpenZFS location to describe.</p><br>
7 /// - On success, responds with [`DescribeLocationFsxOpenZfsOutput`](crate::operation::describe_location_fsx_open_zfs::DescribeLocationFsxOpenZfsOutput) with field(s):
8 /// - [`location_arn(Option<String>)`](crate::operation::describe_location_fsx_open_zfs::DescribeLocationFsxOpenZfsOutput::location_arn): <p>The ARN of the FSx for OpenZFS location that was described.</p>
9 /// - [`location_uri(Option<String>)`](crate::operation::describe_location_fsx_open_zfs::DescribeLocationFsxOpenZfsOutput::location_uri): <p>The uniform resource identifier (URI) of the FSx for OpenZFS location that was described.</p> <p>Example: <code>fsxz://us-west-2.fs-1234567890abcdef02/fsx/folderA/folder</code></p>
10 /// - [`security_group_arns(Option<Vec::<String>>)`](crate::operation::describe_location_fsx_open_zfs::DescribeLocationFsxOpenZfsOutput::security_group_arns): <p>The ARNs of the security groups that are configured for the FSx for OpenZFS file system.</p>
11 /// - [`protocol(Option<FsxProtocol>)`](crate::operation::describe_location_fsx_open_zfs::DescribeLocationFsxOpenZfsOutput::protocol): <p>The type of protocol that DataSync uses to access your file system.</p>
12 /// - [`creation_time(Option<DateTime>)`](crate::operation::describe_location_fsx_open_zfs::DescribeLocationFsxOpenZfsOutput::creation_time): <p>The time that the FSx for OpenZFS location was created.</p>
13 /// - On failure, responds with [`SdkError<DescribeLocationFsxOpenZfsError>`](crate::operation::describe_location_fsx_open_zfs::DescribeLocationFsxOpenZfsError)
14 pub fn describe_location_fsx_open_zfs(
15 &self,
16 ) -> crate::operation::describe_location_fsx_open_zfs::builders::DescribeLocationFsxOpenZfsFluentBuilder {
17 crate::operation::describe_location_fsx_open_zfs::builders::DescribeLocationFsxOpenZfsFluentBuilder::new(self.handle.clone())
18 }
19}