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.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct FailoverGlobalClusterInput {
/// <p>The identifier of the global database cluster (Aurora global database) this operation should apply to. The identifier is the unique key assigned by the user when the Aurora global database is created. In other words, it's the name of the Aurora global database.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Must match the identifier of an existing global database cluster.</p></li>
/// </ul>
pub global_cluster_identifier: ::std::option::Option<::std::string::String>,
/// <p>The identifier of the secondary Aurora DB cluster that you want to promote to the primary for the global database cluster. Use the Amazon Resource Name (ARN) for the identifier so that Aurora can locate the cluster in its Amazon Web Services Region.</p>
pub target_db_cluster_identifier: ::std::option::Option<::std::string::String>,
/// <p>Specifies whether to allow data loss for this global database cluster operation. Allowing data loss triggers a global failover operation.</p>
/// <p>If you don't specify <code>AllowDataLoss</code>, the global database cluster operation defaults to a switchover.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Can't be specified together with the <code>Switchover</code> parameter.</p></li>
/// </ul>
pub allow_data_loss: ::std::option::Option<bool>,
/// <p>Specifies whether to switch over this global database cluster.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Can't be specified together with the <code>AllowDataLoss</code> parameter.</p></li>
/// </ul>
pub switchover: ::std::option::Option<bool>,
}
impl FailoverGlobalClusterInput {
/// <p>The identifier of the global database cluster (Aurora global database) this operation should apply to. The identifier is the unique key assigned by the user when the Aurora global database is created. In other words, it's the name of the Aurora global database.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Must match the identifier of an existing global database cluster.</p></li>
/// </ul>
pub fn global_cluster_identifier(&self) -> ::std::option::Option<&str> {
self.global_cluster_identifier.as_deref()
}
/// <p>The identifier of the secondary Aurora DB cluster that you want to promote to the primary for the global database cluster. Use the Amazon Resource Name (ARN) for the identifier so that Aurora can locate the cluster in its Amazon Web Services Region.</p>
pub fn target_db_cluster_identifier(&self) -> ::std::option::Option<&str> {
self.target_db_cluster_identifier.as_deref()
}
/// <p>Specifies whether to allow data loss for this global database cluster operation. Allowing data loss triggers a global failover operation.</p>
/// <p>If you don't specify <code>AllowDataLoss</code>, the global database cluster operation defaults to a switchover.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Can't be specified together with the <code>Switchover</code> parameter.</p></li>
/// </ul>
pub fn allow_data_loss(&self) -> ::std::option::Option<bool> {
self.allow_data_loss
}
/// <p>Specifies whether to switch over this global database cluster.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Can't be specified together with the <code>AllowDataLoss</code> parameter.</p></li>
/// </ul>
pub fn switchover(&self) -> ::std::option::Option<bool> {
self.switchover
}
}
impl FailoverGlobalClusterInput {
/// Creates a new builder-style object to manufacture [`FailoverGlobalClusterInput`](crate::operation::failover_global_cluster::FailoverGlobalClusterInput).
pub fn builder() -> crate::operation::failover_global_cluster::builders::FailoverGlobalClusterInputBuilder {
crate::operation::failover_global_cluster::builders::FailoverGlobalClusterInputBuilder::default()
}
}
/// A builder for [`FailoverGlobalClusterInput`](crate::operation::failover_global_cluster::FailoverGlobalClusterInput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct FailoverGlobalClusterInputBuilder {
pub(crate) global_cluster_identifier: ::std::option::Option<::std::string::String>,
pub(crate) target_db_cluster_identifier: ::std::option::Option<::std::string::String>,
pub(crate) allow_data_loss: ::std::option::Option<bool>,
pub(crate) switchover: ::std::option::Option<bool>,
}
impl FailoverGlobalClusterInputBuilder {
/// <p>The identifier of the global database cluster (Aurora global database) this operation should apply to. The identifier is the unique key assigned by the user when the Aurora global database is created. In other words, it's the name of the Aurora global database.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Must match the identifier of an existing global database cluster.</p></li>
/// </ul>
/// This field is required.
pub fn global_cluster_identifier(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.global_cluster_identifier = ::std::option::Option::Some(input.into());
self
}
/// <p>The identifier of the global database cluster (Aurora global database) this operation should apply to. The identifier is the unique key assigned by the user when the Aurora global database is created. In other words, it's the name of the Aurora global database.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Must match the identifier of an existing global database cluster.</p></li>
/// </ul>
pub fn set_global_cluster_identifier(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.global_cluster_identifier = input;
self
}
/// <p>The identifier of the global database cluster (Aurora global database) this operation should apply to. The identifier is the unique key assigned by the user when the Aurora global database is created. In other words, it's the name of the Aurora global database.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Must match the identifier of an existing global database cluster.</p></li>
/// </ul>
pub fn get_global_cluster_identifier(&self) -> &::std::option::Option<::std::string::String> {
&self.global_cluster_identifier
}
/// <p>The identifier of the secondary Aurora DB cluster that you want to promote to the primary for the global database cluster. Use the Amazon Resource Name (ARN) for the identifier so that Aurora can locate the cluster in its Amazon Web Services Region.</p>
/// This field is required.
pub fn target_db_cluster_identifier(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.target_db_cluster_identifier = ::std::option::Option::Some(input.into());
self
}
/// <p>The identifier of the secondary Aurora DB cluster that you want to promote to the primary for the global database cluster. Use the Amazon Resource Name (ARN) for the identifier so that Aurora can locate the cluster in its Amazon Web Services Region.</p>
pub fn set_target_db_cluster_identifier(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.target_db_cluster_identifier = input;
self
}
/// <p>The identifier of the secondary Aurora DB cluster that you want to promote to the primary for the global database cluster. Use the Amazon Resource Name (ARN) for the identifier so that Aurora can locate the cluster in its Amazon Web Services Region.</p>
pub fn get_target_db_cluster_identifier(&self) -> &::std::option::Option<::std::string::String> {
&self.target_db_cluster_identifier
}
/// <p>Specifies whether to allow data loss for this global database cluster operation. Allowing data loss triggers a global failover operation.</p>
/// <p>If you don't specify <code>AllowDataLoss</code>, the global database cluster operation defaults to a switchover.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Can't be specified together with the <code>Switchover</code> parameter.</p></li>
/// </ul>
pub fn allow_data_loss(mut self, input: bool) -> Self {
self.allow_data_loss = ::std::option::Option::Some(input);
self
}
/// <p>Specifies whether to allow data loss for this global database cluster operation. Allowing data loss triggers a global failover operation.</p>
/// <p>If you don't specify <code>AllowDataLoss</code>, the global database cluster operation defaults to a switchover.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Can't be specified together with the <code>Switchover</code> parameter.</p></li>
/// </ul>
pub fn set_allow_data_loss(mut self, input: ::std::option::Option<bool>) -> Self {
self.allow_data_loss = input;
self
}
/// <p>Specifies whether to allow data loss for this global database cluster operation. Allowing data loss triggers a global failover operation.</p>
/// <p>If you don't specify <code>AllowDataLoss</code>, the global database cluster operation defaults to a switchover.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Can't be specified together with the <code>Switchover</code> parameter.</p></li>
/// </ul>
pub fn get_allow_data_loss(&self) -> &::std::option::Option<bool> {
&self.allow_data_loss
}
/// <p>Specifies whether to switch over this global database cluster.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Can't be specified together with the <code>AllowDataLoss</code> parameter.</p></li>
/// </ul>
pub fn switchover(mut self, input: bool) -> Self {
self.switchover = ::std::option::Option::Some(input);
self
}
/// <p>Specifies whether to switch over this global database cluster.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Can't be specified together with the <code>AllowDataLoss</code> parameter.</p></li>
/// </ul>
pub fn set_switchover(mut self, input: ::std::option::Option<bool>) -> Self {
self.switchover = input;
self
}
/// <p>Specifies whether to switch over this global database cluster.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Can't be specified together with the <code>AllowDataLoss</code> parameter.</p></li>
/// </ul>
pub fn get_switchover(&self) -> &::std::option::Option<bool> {
&self.switchover
}
/// Consumes the builder and constructs a [`FailoverGlobalClusterInput`](crate::operation::failover_global_cluster::FailoverGlobalClusterInput).
pub fn build(
self,
) -> ::std::result::Result<crate::operation::failover_global_cluster::FailoverGlobalClusterInput, ::aws_smithy_types::error::operation::BuildError>
{
::std::result::Result::Ok(crate::operation::failover_global_cluster::FailoverGlobalClusterInput {
global_cluster_identifier: self.global_cluster_identifier,
target_db_cluster_identifier: self.target_db_cluster_identifier,
allow_data_loss: self.allow_data_loss,
switchover: self.switchover,
})
}
}