1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
/// <p>DescribeLocationEfsResponse</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct DescribeLocationEfsOutput {
/// <p>The ARN of the Amazon EFS file system location.</p>
pub location_arn: ::std::option::Option<::std::string::String>,
/// <p>The URL of the Amazon EFS file system location.</p>
pub location_uri: ::std::option::Option<::std::string::String>,
/// <p>The subnet and security groups that DataSync uses to connect to one of your Amazon EFS file system's <a href="https://docs.aws.amazon.com/efs/latest/ug/accessing-fs.html">mount targets</a>.</p>
pub ec2_config: ::std::option::Option<crate::types::Ec2Config>,
/// <p>The time that the location was created.</p>
pub creation_time: ::std::option::Option<::aws_smithy_types::DateTime>,
/// <p>The ARN of the access point that DataSync uses to access the Amazon EFS file system.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam">Accessing restricted file systems</a>.</p>
pub access_point_arn: ::std::option::Option<::std::string::String>,
/// <p>The Identity and Access Management (IAM) role that allows DataSync to access your Amazon EFS file system.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam-role">Creating a DataSync IAM role for file system access</a>.</p>
pub file_system_access_role_arn: ::std::option::Option<::std::string::String>,
/// <p>Indicates whether DataSync uses Transport Layer Security (TLS) encryption when transferring data to or from the Amazon EFS file system.</p>
pub in_transit_encryption: ::std::option::Option<crate::types::EfsInTransitEncryption>,
_request_id: Option<String>,
}
impl DescribeLocationEfsOutput {
/// <p>The ARN of the Amazon EFS file system location.</p>
pub fn location_arn(&self) -> ::std::option::Option<&str> {
self.location_arn.as_deref()
}
/// <p>The URL of the Amazon EFS file system location.</p>
pub fn location_uri(&self) -> ::std::option::Option<&str> {
self.location_uri.as_deref()
}
/// <p>The subnet and security groups that DataSync uses to connect to one of your Amazon EFS file system's <a href="https://docs.aws.amazon.com/efs/latest/ug/accessing-fs.html">mount targets</a>.</p>
pub fn ec2_config(&self) -> ::std::option::Option<&crate::types::Ec2Config> {
self.ec2_config.as_ref()
}
/// <p>The time that the location was created.</p>
pub fn creation_time(&self) -> ::std::option::Option<&::aws_smithy_types::DateTime> {
self.creation_time.as_ref()
}
/// <p>The ARN of the access point that DataSync uses to access the Amazon EFS file system.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam">Accessing restricted file systems</a>.</p>
pub fn access_point_arn(&self) -> ::std::option::Option<&str> {
self.access_point_arn.as_deref()
}
/// <p>The Identity and Access Management (IAM) role that allows DataSync to access your Amazon EFS file system.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam-role">Creating a DataSync IAM role for file system access</a>.</p>
pub fn file_system_access_role_arn(&self) -> ::std::option::Option<&str> {
self.file_system_access_role_arn.as_deref()
}
/// <p>Indicates whether DataSync uses Transport Layer Security (TLS) encryption when transferring data to or from the Amazon EFS file system.</p>
pub fn in_transit_encryption(&self) -> ::std::option::Option<&crate::types::EfsInTransitEncryption> {
self.in_transit_encryption.as_ref()
}
}
impl ::aws_types::request_id::RequestId for DescribeLocationEfsOutput {
fn request_id(&self) -> Option<&str> {
self._request_id.as_deref()
}
}
impl DescribeLocationEfsOutput {
/// Creates a new builder-style object to manufacture [`DescribeLocationEfsOutput`](crate::operation::describe_location_efs::DescribeLocationEfsOutput).
pub fn builder() -> crate::operation::describe_location_efs::builders::DescribeLocationEfsOutputBuilder {
crate::operation::describe_location_efs::builders::DescribeLocationEfsOutputBuilder::default()
}
}
/// A builder for [`DescribeLocationEfsOutput`](crate::operation::describe_location_efs::DescribeLocationEfsOutput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct DescribeLocationEfsOutputBuilder {
pub(crate) location_arn: ::std::option::Option<::std::string::String>,
pub(crate) location_uri: ::std::option::Option<::std::string::String>,
pub(crate) ec2_config: ::std::option::Option<crate::types::Ec2Config>,
pub(crate) creation_time: ::std::option::Option<::aws_smithy_types::DateTime>,
pub(crate) access_point_arn: ::std::option::Option<::std::string::String>,
pub(crate) file_system_access_role_arn: ::std::option::Option<::std::string::String>,
pub(crate) in_transit_encryption: ::std::option::Option<crate::types::EfsInTransitEncryption>,
_request_id: Option<String>,
}
impl DescribeLocationEfsOutputBuilder {
/// <p>The ARN of the Amazon EFS file system location.</p>
pub fn location_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.location_arn = ::std::option::Option::Some(input.into());
self
}
/// <p>The ARN of the Amazon EFS file system location.</p>
pub fn set_location_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.location_arn = input;
self
}
/// <p>The ARN of the Amazon EFS file system location.</p>
pub fn get_location_arn(&self) -> &::std::option::Option<::std::string::String> {
&self.location_arn
}
/// <p>The URL of the Amazon EFS file system location.</p>
pub fn location_uri(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.location_uri = ::std::option::Option::Some(input.into());
self
}
/// <p>The URL of the Amazon EFS file system location.</p>
pub fn set_location_uri(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.location_uri = input;
self
}
/// <p>The URL of the Amazon EFS file system location.</p>
pub fn get_location_uri(&self) -> &::std::option::Option<::std::string::String> {
&self.location_uri
}
/// <p>The subnet and security groups that DataSync uses to connect to one of your Amazon EFS file system's <a href="https://docs.aws.amazon.com/efs/latest/ug/accessing-fs.html">mount targets</a>.</p>
pub fn ec2_config(mut self, input: crate::types::Ec2Config) -> Self {
self.ec2_config = ::std::option::Option::Some(input);
self
}
/// <p>The subnet and security groups that DataSync uses to connect to one of your Amazon EFS file system's <a href="https://docs.aws.amazon.com/efs/latest/ug/accessing-fs.html">mount targets</a>.</p>
pub fn set_ec2_config(mut self, input: ::std::option::Option<crate::types::Ec2Config>) -> Self {
self.ec2_config = input;
self
}
/// <p>The subnet and security groups that DataSync uses to connect to one of your Amazon EFS file system's <a href="https://docs.aws.amazon.com/efs/latest/ug/accessing-fs.html">mount targets</a>.</p>
pub fn get_ec2_config(&self) -> &::std::option::Option<crate::types::Ec2Config> {
&self.ec2_config
}
/// <p>The time that the location was created.</p>
pub fn creation_time(mut self, input: ::aws_smithy_types::DateTime) -> Self {
self.creation_time = ::std::option::Option::Some(input);
self
}
/// <p>The time that the location was created.</p>
pub fn set_creation_time(mut self, input: ::std::option::Option<::aws_smithy_types::DateTime>) -> Self {
self.creation_time = input;
self
}
/// <p>The time that the location was created.</p>
pub fn get_creation_time(&self) -> &::std::option::Option<::aws_smithy_types::DateTime> {
&self.creation_time
}
/// <p>The ARN of the access point that DataSync uses to access the Amazon EFS file system.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam">Accessing restricted file systems</a>.</p>
pub fn access_point_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.access_point_arn = ::std::option::Option::Some(input.into());
self
}
/// <p>The ARN of the access point that DataSync uses to access the Amazon EFS file system.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam">Accessing restricted file systems</a>.</p>
pub fn set_access_point_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.access_point_arn = input;
self
}
/// <p>The ARN of the access point that DataSync uses to access the Amazon EFS file system.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam">Accessing restricted file systems</a>.</p>
pub fn get_access_point_arn(&self) -> &::std::option::Option<::std::string::String> {
&self.access_point_arn
}
/// <p>The Identity and Access Management (IAM) role that allows DataSync to access your Amazon EFS file system.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam-role">Creating a DataSync IAM role for file system access</a>.</p>
pub fn file_system_access_role_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.file_system_access_role_arn = ::std::option::Option::Some(input.into());
self
}
/// <p>The Identity and Access Management (IAM) role that allows DataSync to access your Amazon EFS file system.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam-role">Creating a DataSync IAM role for file system access</a>.</p>
pub fn set_file_system_access_role_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.file_system_access_role_arn = input;
self
}
/// <p>The Identity and Access Management (IAM) role that allows DataSync to access your Amazon EFS file system.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam-role">Creating a DataSync IAM role for file system access</a>.</p>
pub fn get_file_system_access_role_arn(&self) -> &::std::option::Option<::std::string::String> {
&self.file_system_access_role_arn
}
/// <p>Indicates whether DataSync uses Transport Layer Security (TLS) encryption when transferring data to or from the Amazon EFS file system.</p>
pub fn in_transit_encryption(mut self, input: crate::types::EfsInTransitEncryption) -> Self {
self.in_transit_encryption = ::std::option::Option::Some(input);
self
}
/// <p>Indicates whether DataSync uses Transport Layer Security (TLS) encryption when transferring data to or from the Amazon EFS file system.</p>
pub fn set_in_transit_encryption(mut self, input: ::std::option::Option<crate::types::EfsInTransitEncryption>) -> Self {
self.in_transit_encryption = input;
self
}
/// <p>Indicates whether DataSync uses Transport Layer Security (TLS) encryption when transferring data to or from the Amazon EFS file system.</p>
pub fn get_in_transit_encryption(&self) -> &::std::option::Option<crate::types::EfsInTransitEncryption> {
&self.in_transit_encryption
}
pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
self._request_id = Some(request_id.into());
self
}
pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
self._request_id = request_id;
self
}
/// Consumes the builder and constructs a [`DescribeLocationEfsOutput`](crate::operation::describe_location_efs::DescribeLocationEfsOutput).
pub fn build(self) -> crate::operation::describe_location_efs::DescribeLocationEfsOutput {
crate::operation::describe_location_efs::DescribeLocationEfsOutput {
location_arn: self.location_arn,
location_uri: self.location_uri,
ec2_config: self.ec2_config,
creation_time: self.creation_time,
access_point_arn: self.access_point_arn,
file_system_access_role_arn: self.file_system_access_role_arn,
in_transit_encryption: self.in_transit_encryption,
_request_id: self._request_id,
}
}
}