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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct RegisterContainerInstanceInput {
/// <p>The short name or full Amazon Resource Name (ARN) of the cluster to register your container instance with. If you do not specify a cluster, the default cluster is assumed.</p>
pub cluster: ::std::option::Option<::std::string::String>,
/// <p>The instance identity document for the EC2 instance to register. This document can be found by running the following command from the instance: <code>curl http://169.254.169.254/latest/dynamic/instance-identity/document/</code></p>
pub instance_identity_document: ::std::option::Option<::std::string::String>,
/// <p>The instance identity document signature for the EC2 instance to register. This signature can be found by running the following command from the instance: <code>curl http://169.254.169.254/latest/dynamic/instance-identity/signature/</code></p>
pub instance_identity_document_signature: ::std::option::Option<::std::string::String>,
/// <p>The resources available on the instance.</p>
pub total_resources: ::std::option::Option<::std::vec::Vec<crate::types::Resource>>,
/// <p>The version information for the Amazon ECS container agent and Docker daemon that runs on the container instance.</p>
pub version_info: ::std::option::Option<crate::types::VersionInfo>,
/// <p>The ARN of the container instance (if it was previously registered).</p>
pub container_instance_arn: ::std::option::Option<::std::string::String>,
/// <p>The container instance attributes that this container instance supports.</p>
pub attributes: ::std::option::Option<::std::vec::Vec<crate::types::Attribute>>,
/// <p>The devices that are available on the container instance. The supported device types are GPUs and Neuron devices.</p>
pub platform_devices: ::std::option::Option<::std::vec::Vec<crate::types::PlatformDevice>>,
/// <p>The metadata that you apply to the container instance to help you categorize and organize them. Each tag consists of a key and an optional value. You define both.</p>
/// <p>The following basic restrictions apply to tags:</p>
/// <ul>
/// <li>
/// <p>Maximum number of tags per resource - 50</p></li>
/// <li>
/// <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p></li>
/// <li>
/// <p>Maximum key length - 128 Unicode characters in UTF-8</p></li>
/// <li>
/// <p>Maximum value length - 256 Unicode characters in UTF-8</p></li>
/// <li>
/// <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p></li>
/// <li>
/// <p>Tag keys and values are case-sensitive.</p></li>
/// <li>
/// <p>Do not use <code>aws:</code>, <code>AWS:</code>, or any upper or lowercase combination of such as a prefix for either keys or values as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys or values with this prefix. Tags with this prefix do not count against your tags per resource limit.</p></li>
/// </ul>
pub tags: ::std::option::Option<::std::vec::Vec<crate::types::Tag>>,
}
impl RegisterContainerInstanceInput {
/// <p>The short name or full Amazon Resource Name (ARN) of the cluster to register your container instance with. If you do not specify a cluster, the default cluster is assumed.</p>
pub fn cluster(&self) -> ::std::option::Option<&str> {
self.cluster.as_deref()
}
/// <p>The instance identity document for the EC2 instance to register. This document can be found by running the following command from the instance: <code>curl http://169.254.169.254/latest/dynamic/instance-identity/document/</code></p>
pub fn instance_identity_document(&self) -> ::std::option::Option<&str> {
self.instance_identity_document.as_deref()
}
/// <p>The instance identity document signature for the EC2 instance to register. This signature can be found by running the following command from the instance: <code>curl http://169.254.169.254/latest/dynamic/instance-identity/signature/</code></p>
pub fn instance_identity_document_signature(&self) -> ::std::option::Option<&str> {
self.instance_identity_document_signature.as_deref()
}
/// <p>The resources available on the instance.</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 `.total_resources.is_none()`.
pub fn total_resources(&self) -> &[crate::types::Resource] {
self.total_resources.as_deref().unwrap_or_default()
}
/// <p>The version information for the Amazon ECS container agent and Docker daemon that runs on the container instance.</p>
pub fn version_info(&self) -> ::std::option::Option<&crate::types::VersionInfo> {
self.version_info.as_ref()
}
/// <p>The ARN of the container instance (if it was previously registered).</p>
pub fn container_instance_arn(&self) -> ::std::option::Option<&str> {
self.container_instance_arn.as_deref()
}
/// <p>The container instance attributes that this container instance supports.</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 `.attributes.is_none()`.
pub fn attributes(&self) -> &[crate::types::Attribute] {
self.attributes.as_deref().unwrap_or_default()
}
/// <p>The devices that are available on the container instance. The supported device types are GPUs and Neuron devices.</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 `.platform_devices.is_none()`.
pub fn platform_devices(&self) -> &[crate::types::PlatformDevice] {
self.platform_devices.as_deref().unwrap_or_default()
}
/// <p>The metadata that you apply to the container instance to help you categorize and organize them. Each tag consists of a key and an optional value. You define both.</p>
/// <p>The following basic restrictions apply to tags:</p>
/// <ul>
/// <li>
/// <p>Maximum number of tags per resource - 50</p></li>
/// <li>
/// <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p></li>
/// <li>
/// <p>Maximum key length - 128 Unicode characters in UTF-8</p></li>
/// <li>
/// <p>Maximum value length - 256 Unicode characters in UTF-8</p></li>
/// <li>
/// <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p></li>
/// <li>
/// <p>Tag keys and values are case-sensitive.</p></li>
/// <li>
/// <p>Do not use <code>aws:</code>, <code>AWS:</code>, or any upper or lowercase combination of such as a prefix for either keys or values as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys or values with this prefix. Tags with this prefix do not count against your tags per resource limit.</p></li>
/// </ul>
///
/// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.tags.is_none()`.
pub fn tags(&self) -> &[crate::types::Tag] {
self.tags.as_deref().unwrap_or_default()
}
}
impl RegisterContainerInstanceInput {
/// Creates a new builder-style object to manufacture [`RegisterContainerInstanceInput`](crate::operation::register_container_instance::RegisterContainerInstanceInput).
pub fn builder() -> crate::operation::register_container_instance::builders::RegisterContainerInstanceInputBuilder {
crate::operation::register_container_instance::builders::RegisterContainerInstanceInputBuilder::default()
}
}
/// A builder for [`RegisterContainerInstanceInput`](crate::operation::register_container_instance::RegisterContainerInstanceInput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct RegisterContainerInstanceInputBuilder {
pub(crate) cluster: ::std::option::Option<::std::string::String>,
pub(crate) instance_identity_document: ::std::option::Option<::std::string::String>,
pub(crate) instance_identity_document_signature: ::std::option::Option<::std::string::String>,
pub(crate) total_resources: ::std::option::Option<::std::vec::Vec<crate::types::Resource>>,
pub(crate) version_info: ::std::option::Option<crate::types::VersionInfo>,
pub(crate) container_instance_arn: ::std::option::Option<::std::string::String>,
pub(crate) attributes: ::std::option::Option<::std::vec::Vec<crate::types::Attribute>>,
pub(crate) platform_devices: ::std::option::Option<::std::vec::Vec<crate::types::PlatformDevice>>,
pub(crate) tags: ::std::option::Option<::std::vec::Vec<crate::types::Tag>>,
}
impl RegisterContainerInstanceInputBuilder {
/// <p>The short name or full Amazon Resource Name (ARN) of the cluster to register your container instance with. If you do not specify a cluster, the default cluster is assumed.</p>
pub fn cluster(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.cluster = ::std::option::Option::Some(input.into());
self
}
/// <p>The short name or full Amazon Resource Name (ARN) of the cluster to register your container instance with. If you do not specify a cluster, the default cluster is assumed.</p>
pub fn set_cluster(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.cluster = input;
self
}
/// <p>The short name or full Amazon Resource Name (ARN) of the cluster to register your container instance with. If you do not specify a cluster, the default cluster is assumed.</p>
pub fn get_cluster(&self) -> &::std::option::Option<::std::string::String> {
&self.cluster
}
/// <p>The instance identity document for the EC2 instance to register. This document can be found by running the following command from the instance: <code>curl http://169.254.169.254/latest/dynamic/instance-identity/document/</code></p>
pub fn instance_identity_document(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.instance_identity_document = ::std::option::Option::Some(input.into());
self
}
/// <p>The instance identity document for the EC2 instance to register. This document can be found by running the following command from the instance: <code>curl http://169.254.169.254/latest/dynamic/instance-identity/document/</code></p>
pub fn set_instance_identity_document(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.instance_identity_document = input;
self
}
/// <p>The instance identity document for the EC2 instance to register. This document can be found by running the following command from the instance: <code>curl http://169.254.169.254/latest/dynamic/instance-identity/document/</code></p>
pub fn get_instance_identity_document(&self) -> &::std::option::Option<::std::string::String> {
&self.instance_identity_document
}
/// <p>The instance identity document signature for the EC2 instance to register. This signature can be found by running the following command from the instance: <code>curl http://169.254.169.254/latest/dynamic/instance-identity/signature/</code></p>
pub fn instance_identity_document_signature(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.instance_identity_document_signature = ::std::option::Option::Some(input.into());
self
}
/// <p>The instance identity document signature for the EC2 instance to register. This signature can be found by running the following command from the instance: <code>curl http://169.254.169.254/latest/dynamic/instance-identity/signature/</code></p>
pub fn set_instance_identity_document_signature(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.instance_identity_document_signature = input;
self
}
/// <p>The instance identity document signature for the EC2 instance to register. This signature can be found by running the following command from the instance: <code>curl http://169.254.169.254/latest/dynamic/instance-identity/signature/</code></p>
pub fn get_instance_identity_document_signature(&self) -> &::std::option::Option<::std::string::String> {
&self.instance_identity_document_signature
}
/// Appends an item to `total_resources`.
///
/// To override the contents of this collection use [`set_total_resources`](Self::set_total_resources).
///
/// <p>The resources available on the instance.</p>
pub fn total_resources(mut self, input: crate::types::Resource) -> Self {
let mut v = self.total_resources.unwrap_or_default();
v.push(input);
self.total_resources = ::std::option::Option::Some(v);
self
}
/// <p>The resources available on the instance.</p>
pub fn set_total_resources(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::Resource>>) -> Self {
self.total_resources = input;
self
}
/// <p>The resources available on the instance.</p>
pub fn get_total_resources(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::Resource>> {
&self.total_resources
}
/// <p>The version information for the Amazon ECS container agent and Docker daemon that runs on the container instance.</p>
pub fn version_info(mut self, input: crate::types::VersionInfo) -> Self {
self.version_info = ::std::option::Option::Some(input);
self
}
/// <p>The version information for the Amazon ECS container agent and Docker daemon that runs on the container instance.</p>
pub fn set_version_info(mut self, input: ::std::option::Option<crate::types::VersionInfo>) -> Self {
self.version_info = input;
self
}
/// <p>The version information for the Amazon ECS container agent and Docker daemon that runs on the container instance.</p>
pub fn get_version_info(&self) -> &::std::option::Option<crate::types::VersionInfo> {
&self.version_info
}
/// <p>The ARN of the container instance (if it was previously registered).</p>
pub fn container_instance_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.container_instance_arn = ::std::option::Option::Some(input.into());
self
}
/// <p>The ARN of the container instance (if it was previously registered).</p>
pub fn set_container_instance_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.container_instance_arn = input;
self
}
/// <p>The ARN of the container instance (if it was previously registered).</p>
pub fn get_container_instance_arn(&self) -> &::std::option::Option<::std::string::String> {
&self.container_instance_arn
}
/// Appends an item to `attributes`.
///
/// To override the contents of this collection use [`set_attributes`](Self::set_attributes).
///
/// <p>The container instance attributes that this container instance supports.</p>
pub fn attributes(mut self, input: crate::types::Attribute) -> Self {
let mut v = self.attributes.unwrap_or_default();
v.push(input);
self.attributes = ::std::option::Option::Some(v);
self
}
/// <p>The container instance attributes that this container instance supports.</p>
pub fn set_attributes(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::Attribute>>) -> Self {
self.attributes = input;
self
}
/// <p>The container instance attributes that this container instance supports.</p>
pub fn get_attributes(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::Attribute>> {
&self.attributes
}
/// Appends an item to `platform_devices`.
///
/// To override the contents of this collection use [`set_platform_devices`](Self::set_platform_devices).
///
/// <p>The devices that are available on the container instance. The supported device types are GPUs and Neuron devices.</p>
pub fn platform_devices(mut self, input: crate::types::PlatformDevice) -> Self {
let mut v = self.platform_devices.unwrap_or_default();
v.push(input);
self.platform_devices = ::std::option::Option::Some(v);
self
}
/// <p>The devices that are available on the container instance. The supported device types are GPUs and Neuron devices.</p>
pub fn set_platform_devices(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::PlatformDevice>>) -> Self {
self.platform_devices = input;
self
}
/// <p>The devices that are available on the container instance. The supported device types are GPUs and Neuron devices.</p>
pub fn get_platform_devices(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::PlatformDevice>> {
&self.platform_devices
}
/// Appends an item to `tags`.
///
/// To override the contents of this collection use [`set_tags`](Self::set_tags).
///
/// <p>The metadata that you apply to the container instance to help you categorize and organize them. Each tag consists of a key and an optional value. You define both.</p>
/// <p>The following basic restrictions apply to tags:</p>
/// <ul>
/// <li>
/// <p>Maximum number of tags per resource - 50</p></li>
/// <li>
/// <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p></li>
/// <li>
/// <p>Maximum key length - 128 Unicode characters in UTF-8</p></li>
/// <li>
/// <p>Maximum value length - 256 Unicode characters in UTF-8</p></li>
/// <li>
/// <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p></li>
/// <li>
/// <p>Tag keys and values are case-sensitive.</p></li>
/// <li>
/// <p>Do not use <code>aws:</code>, <code>AWS:</code>, or any upper or lowercase combination of such as a prefix for either keys or values as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys or values with this prefix. Tags with this prefix do not count against your tags per resource limit.</p></li>
/// </ul>
pub fn tags(mut self, input: crate::types::Tag) -> Self {
let mut v = self.tags.unwrap_or_default();
v.push(input);
self.tags = ::std::option::Option::Some(v);
self
}
/// <p>The metadata that you apply to the container instance to help you categorize and organize them. Each tag consists of a key and an optional value. You define both.</p>
/// <p>The following basic restrictions apply to tags:</p>
/// <ul>
/// <li>
/// <p>Maximum number of tags per resource - 50</p></li>
/// <li>
/// <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p></li>
/// <li>
/// <p>Maximum key length - 128 Unicode characters in UTF-8</p></li>
/// <li>
/// <p>Maximum value length - 256 Unicode characters in UTF-8</p></li>
/// <li>
/// <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p></li>
/// <li>
/// <p>Tag keys and values are case-sensitive.</p></li>
/// <li>
/// <p>Do not use <code>aws:</code>, <code>AWS:</code>, or any upper or lowercase combination of such as a prefix for either keys or values as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys or values with this prefix. Tags with this prefix do not count against your tags per resource limit.</p></li>
/// </ul>
pub fn set_tags(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::Tag>>) -> Self {
self.tags = input;
self
}
/// <p>The metadata that you apply to the container instance to help you categorize and organize them. Each tag consists of a key and an optional value. You define both.</p>
/// <p>The following basic restrictions apply to tags:</p>
/// <ul>
/// <li>
/// <p>Maximum number of tags per resource - 50</p></li>
/// <li>
/// <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p></li>
/// <li>
/// <p>Maximum key length - 128 Unicode characters in UTF-8</p></li>
/// <li>
/// <p>Maximum value length - 256 Unicode characters in UTF-8</p></li>
/// <li>
/// <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p></li>
/// <li>
/// <p>Tag keys and values are case-sensitive.</p></li>
/// <li>
/// <p>Do not use <code>aws:</code>, <code>AWS:</code>, or any upper or lowercase combination of such as a prefix for either keys or values as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys or values with this prefix. Tags with this prefix do not count against your tags per resource limit.</p></li>
/// </ul>
pub fn get_tags(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::Tag>> {
&self.tags
}
/// Consumes the builder and constructs a [`RegisterContainerInstanceInput`](crate::operation::register_container_instance::RegisterContainerInstanceInput).
pub fn build(
self,
) -> ::std::result::Result<
crate::operation::register_container_instance::RegisterContainerInstanceInput,
::aws_smithy_types::error::operation::BuildError,
> {
::std::result::Result::Ok(crate::operation::register_container_instance::RegisterContainerInstanceInput {
cluster: self.cluster,
instance_identity_document: self.instance_identity_document,
instance_identity_document_signature: self.instance_identity_document_signature,
total_resources: self.total_resources,
version_info: self.version_info,
container_instance_arn: self.container_instance_arn,
attributes: self.attributes,
platform_devices: self.platform_devices,
tags: self.tags,
})
}
}