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
// 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 AssociateSubnetsInput {
/// <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.</p>
/// <p>To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.</p>
/// <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.</p>
pub update_token: ::std::option::Option<::std::string::String>,
/// <p>The Amazon Resource Name (ARN) of the firewall.</p>
/// <p>You must specify the ARN or the name, and you can specify both.</p>
pub firewall_arn: ::std::option::Option<::std::string::String>,
/// <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
/// <p>You must specify the ARN or the name, and you can specify both.</p>
pub firewall_name: ::std::option::Option<::std::string::String>,
/// <p>The IDs of the subnets that you want to associate with the firewall.</p>
pub subnet_mappings: ::std::option::Option<::std::vec::Vec<crate::types::SubnetMapping>>,
}
impl AssociateSubnetsInput {
/// <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.</p>
/// <p>To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.</p>
/// <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.</p>
pub fn update_token(&self) -> ::std::option::Option<&str> {
self.update_token.as_deref()
}
/// <p>The Amazon Resource Name (ARN) of the firewall.</p>
/// <p>You must specify the ARN or the name, and you can specify both.</p>
pub fn firewall_arn(&self) -> ::std::option::Option<&str> {
self.firewall_arn.as_deref()
}
/// <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
/// <p>You must specify the ARN or the name, and you can specify both.</p>
pub fn firewall_name(&self) -> ::std::option::Option<&str> {
self.firewall_name.as_deref()
}
/// <p>The IDs of the subnets that you want to associate with the firewall.</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 `.subnet_mappings.is_none()`.
pub fn subnet_mappings(&self) -> &[crate::types::SubnetMapping] {
self.subnet_mappings.as_deref().unwrap_or_default()
}
}
impl AssociateSubnetsInput {
/// Creates a new builder-style object to manufacture [`AssociateSubnetsInput`](crate::operation::associate_subnets::AssociateSubnetsInput).
pub fn builder() -> crate::operation::associate_subnets::builders::AssociateSubnetsInputBuilder {
crate::operation::associate_subnets::builders::AssociateSubnetsInputBuilder::default()
}
}
/// A builder for [`AssociateSubnetsInput`](crate::operation::associate_subnets::AssociateSubnetsInput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct AssociateSubnetsInputBuilder {
pub(crate) update_token: ::std::option::Option<::std::string::String>,
pub(crate) firewall_arn: ::std::option::Option<::std::string::String>,
pub(crate) firewall_name: ::std::option::Option<::std::string::String>,
pub(crate) subnet_mappings: ::std::option::Option<::std::vec::Vec<crate::types::SubnetMapping>>,
}
impl AssociateSubnetsInputBuilder {
/// <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.</p>
/// <p>To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.</p>
/// <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.</p>
pub fn update_token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.update_token = ::std::option::Option::Some(input.into());
self
}
/// <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.</p>
/// <p>To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.</p>
/// <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.</p>
pub fn set_update_token(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.update_token = input;
self
}
/// <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.</p>
/// <p>To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.</p>
/// <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.</p>
pub fn get_update_token(&self) -> &::std::option::Option<::std::string::String> {
&self.update_token
}
/// <p>The Amazon Resource Name (ARN) of the firewall.</p>
/// <p>You must specify the ARN or the name, and you can specify both.</p>
pub fn firewall_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.firewall_arn = ::std::option::Option::Some(input.into());
self
}
/// <p>The Amazon Resource Name (ARN) of the firewall.</p>
/// <p>You must specify the ARN or the name, and you can specify both.</p>
pub fn set_firewall_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.firewall_arn = input;
self
}
/// <p>The Amazon Resource Name (ARN) of the firewall.</p>
/// <p>You must specify the ARN or the name, and you can specify both.</p>
pub fn get_firewall_arn(&self) -> &::std::option::Option<::std::string::String> {
&self.firewall_arn
}
/// <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
/// <p>You must specify the ARN or the name, and you can specify both.</p>
pub fn firewall_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.firewall_name = ::std::option::Option::Some(input.into());
self
}
/// <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
/// <p>You must specify the ARN or the name, and you can specify both.</p>
pub fn set_firewall_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.firewall_name = input;
self
}
/// <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
/// <p>You must specify the ARN or the name, and you can specify both.</p>
pub fn get_firewall_name(&self) -> &::std::option::Option<::std::string::String> {
&self.firewall_name
}
/// Appends an item to `subnet_mappings`.
///
/// To override the contents of this collection use [`set_subnet_mappings`](Self::set_subnet_mappings).
///
/// <p>The IDs of the subnets that you want to associate with the firewall.</p>
pub fn subnet_mappings(mut self, input: crate::types::SubnetMapping) -> Self {
let mut v = self.subnet_mappings.unwrap_or_default();
v.push(input);
self.subnet_mappings = ::std::option::Option::Some(v);
self
}
/// <p>The IDs of the subnets that you want to associate with the firewall.</p>
pub fn set_subnet_mappings(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::SubnetMapping>>) -> Self {
self.subnet_mappings = input;
self
}
/// <p>The IDs of the subnets that you want to associate with the firewall.</p>
pub fn get_subnet_mappings(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::SubnetMapping>> {
&self.subnet_mappings
}
/// Consumes the builder and constructs a [`AssociateSubnetsInput`](crate::operation::associate_subnets::AssociateSubnetsInput).
pub fn build(
self,
) -> ::std::result::Result<crate::operation::associate_subnets::AssociateSubnetsInput, ::aws_smithy_types::error::operation::BuildError> {
::std::result::Result::Ok(crate::operation::associate_subnets::AssociateSubnetsInput {
update_token: self.update_token,
firewall_arn: self.firewall_arn,
firewall_name: self.firewall_name,
subnet_mappings: self.subnet_mappings,
})
}
}