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
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
/// <p>DescribeLocationS3Response</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct DescribeLocationS3Output {
/// <p>The ARN of the Amazon S3 location.</p>
pub location_arn: ::std::option::Option<::std::string::String>,
/// <p>The URL of the Amazon S3 location that was described.</p>
pub location_uri: ::std::option::Option<::std::string::String>,
/// <p>When Amazon S3 is a destination location, this is the storage class that you chose for your objects.</p>
/// <p>Some storage classes have behaviors that can affect your Amazon S3 storage costs. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#using-storage-classes">Storage class considerations with Amazon S3 transfers</a>.</p>
pub s3_storage_class: ::std::option::Option<crate::types::S3StorageClass>,
/// <p>Specifies the Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that DataSync uses to access your S3 bucket.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-access">Providing DataSync access to S3 buckets</a>.</p>
pub s3_config: ::std::option::Option<crate::types::S3Config>,
/// <p>The ARNs of the DataSync agents deployed on your Outpost when using working with Amazon S3 on Outposts.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/deploy-agents.html#outposts-agent">Deploy your DataSync agent on Outposts</a>.</p>
pub agent_arns: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
/// <p>The time that the Amazon S3 location was created.</p>
pub creation_time: ::std::option::Option<::aws_smithy_types::DateTime>,
_request_id: Option<String>,
}
impl DescribeLocationS3Output {
/// <p>The ARN of the Amazon S3 location.</p>
pub fn location_arn(&self) -> ::std::option::Option<&str> {
self.location_arn.as_deref()
}
/// <p>The URL of the Amazon S3 location that was described.</p>
pub fn location_uri(&self) -> ::std::option::Option<&str> {
self.location_uri.as_deref()
}
/// <p>When Amazon S3 is a destination location, this is the storage class that you chose for your objects.</p>
/// <p>Some storage classes have behaviors that can affect your Amazon S3 storage costs. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#using-storage-classes">Storage class considerations with Amazon S3 transfers</a>.</p>
pub fn s3_storage_class(&self) -> ::std::option::Option<&crate::types::S3StorageClass> {
self.s3_storage_class.as_ref()
}
/// <p>Specifies the Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that DataSync uses to access your S3 bucket.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-access">Providing DataSync access to S3 buckets</a>.</p>
pub fn s3_config(&self) -> ::std::option::Option<&crate::types::S3Config> {
self.s3_config.as_ref()
}
/// <p>The ARNs of the DataSync agents deployed on your Outpost when using working with Amazon S3 on Outposts.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/deploy-agents.html#outposts-agent">Deploy your DataSync agent on Outposts</a>.</p>
///
/// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.agent_arns.is_none()`.
pub fn agent_arns(&self) -> &[::std::string::String] {
self.agent_arns.as_deref().unwrap_or_default()
}
/// <p>The time that the Amazon S3 location was created.</p>
pub fn creation_time(&self) -> ::std::option::Option<&::aws_smithy_types::DateTime> {
self.creation_time.as_ref()
}
}
impl ::aws_types::request_id::RequestId for DescribeLocationS3Output {
fn request_id(&self) -> Option<&str> {
self._request_id.as_deref()
}
}
impl DescribeLocationS3Output {
/// Creates a new builder-style object to manufacture [`DescribeLocationS3Output`](crate::operation::describe_location_s3::DescribeLocationS3Output).
pub fn builder() -> crate::operation::describe_location_s3::builders::DescribeLocationS3OutputBuilder {
crate::operation::describe_location_s3::builders::DescribeLocationS3OutputBuilder::default()
}
}
/// A builder for [`DescribeLocationS3Output`](crate::operation::describe_location_s3::DescribeLocationS3Output).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct DescribeLocationS3OutputBuilder {
pub(crate) location_arn: ::std::option::Option<::std::string::String>,
pub(crate) location_uri: ::std::option::Option<::std::string::String>,
pub(crate) s3_storage_class: ::std::option::Option<crate::types::S3StorageClass>,
pub(crate) s3_config: ::std::option::Option<crate::types::S3Config>,
pub(crate) agent_arns: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
pub(crate) creation_time: ::std::option::Option<::aws_smithy_types::DateTime>,
_request_id: Option<String>,
}
impl DescribeLocationS3OutputBuilder {
/// <p>The ARN of the Amazon S3 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 S3 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 S3 location.</p>
pub fn get_location_arn(&self) -> &::std::option::Option<::std::string::String> {
&self.location_arn
}
/// <p>The URL of the Amazon S3 location that was described.</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 S3 location that was described.</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 S3 location that was described.</p>
pub fn get_location_uri(&self) -> &::std::option::Option<::std::string::String> {
&self.location_uri
}
/// <p>When Amazon S3 is a destination location, this is the storage class that you chose for your objects.</p>
/// <p>Some storage classes have behaviors that can affect your Amazon S3 storage costs. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#using-storage-classes">Storage class considerations with Amazon S3 transfers</a>.</p>
pub fn s3_storage_class(mut self, input: crate::types::S3StorageClass) -> Self {
self.s3_storage_class = ::std::option::Option::Some(input);
self
}
/// <p>When Amazon S3 is a destination location, this is the storage class that you chose for your objects.</p>
/// <p>Some storage classes have behaviors that can affect your Amazon S3 storage costs. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#using-storage-classes">Storage class considerations with Amazon S3 transfers</a>.</p>
pub fn set_s3_storage_class(mut self, input: ::std::option::Option<crate::types::S3StorageClass>) -> Self {
self.s3_storage_class = input;
self
}
/// <p>When Amazon S3 is a destination location, this is the storage class that you chose for your objects.</p>
/// <p>Some storage classes have behaviors that can affect your Amazon S3 storage costs. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#using-storage-classes">Storage class considerations with Amazon S3 transfers</a>.</p>
pub fn get_s3_storage_class(&self) -> &::std::option::Option<crate::types::S3StorageClass> {
&self.s3_storage_class
}
/// <p>Specifies the Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that DataSync uses to access your S3 bucket.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-access">Providing DataSync access to S3 buckets</a>.</p>
pub fn s3_config(mut self, input: crate::types::S3Config) -> Self {
self.s3_config = ::std::option::Option::Some(input);
self
}
/// <p>Specifies the Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that DataSync uses to access your S3 bucket.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-access">Providing DataSync access to S3 buckets</a>.</p>
pub fn set_s3_config(mut self, input: ::std::option::Option<crate::types::S3Config>) -> Self {
self.s3_config = input;
self
}
/// <p>Specifies the Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that DataSync uses to access your S3 bucket.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-access">Providing DataSync access to S3 buckets</a>.</p>
pub fn get_s3_config(&self) -> &::std::option::Option<crate::types::S3Config> {
&self.s3_config
}
/// Appends an item to `agent_arns`.
///
/// To override the contents of this collection use [`set_agent_arns`](Self::set_agent_arns).
///
/// <p>The ARNs of the DataSync agents deployed on your Outpost when using working with Amazon S3 on Outposts.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/deploy-agents.html#outposts-agent">Deploy your DataSync agent on Outposts</a>.</p>
pub fn agent_arns(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
let mut v = self.agent_arns.unwrap_or_default();
v.push(input.into());
self.agent_arns = ::std::option::Option::Some(v);
self
}
/// <p>The ARNs of the DataSync agents deployed on your Outpost when using working with Amazon S3 on Outposts.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/deploy-agents.html#outposts-agent">Deploy your DataSync agent on Outposts</a>.</p>
pub fn set_agent_arns(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
self.agent_arns = input;
self
}
/// <p>The ARNs of the DataSync agents deployed on your Outpost when using working with Amazon S3 on Outposts.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/deploy-agents.html#outposts-agent">Deploy your DataSync agent on Outposts</a>.</p>
pub fn get_agent_arns(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
&self.agent_arns
}
/// <p>The time that the Amazon S3 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 Amazon S3 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 Amazon S3 location was created.</p>
pub fn get_creation_time(&self) -> &::std::option::Option<::aws_smithy_types::DateTime> {
&self.creation_time
}
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 [`DescribeLocationS3Output`](crate::operation::describe_location_s3::DescribeLocationS3Output).
pub fn build(self) -> crate::operation::describe_location_s3::DescribeLocationS3Output {
crate::operation::describe_location_s3::DescribeLocationS3Output {
location_arn: self.location_arn,
location_uri: self.location_uri,
s3_storage_class: self.s3_storage_class,
s3_config: self.s3_config,
agent_arns: self.agent_arns,
creation_time: self.creation_time,
_request_id: self._request_id,
}
}
}