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 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub use crate::operation::modify_cluster::_modify_cluster_output::ModifyClusterOutputBuilder;
pub use crate::operation::modify_cluster::_modify_cluster_input::ModifyClusterInputBuilder;
/// Fluent builder constructing a request to `ModifyCluster`.
///
/// <p>Modifies the settings for a cluster.</p>
/// <p>You can also change node type and the number of nodes to scale up or down the cluster. When resizing a cluster, you must specify both the number of nodes and the node type even if one of the parameters does not change.</p>
/// <p>You can add another security or parameter group, or change the admin user password. Resetting a cluster password or modifying the security groups associated with a cluster do not need a reboot. However, modifying a parameter group requires a reboot for parameters to take effect. For more information about managing clusters, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html">Amazon Redshift Clusters</a> in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
#[derive(::std::clone::Clone, ::std::fmt::Debug)]
pub struct ModifyClusterFluentBuilder {
handle: ::std::sync::Arc<crate::client::Handle>,
inner: crate::operation::modify_cluster::builders::ModifyClusterInputBuilder,
}
impl ModifyClusterFluentBuilder {
/// Creates a new `ModifyCluster`.
pub(crate) fn new(handle: ::std::sync::Arc<crate::client::Handle>) -> Self {
Self {
handle,
inner: ::std::default::Default::default(),
}
}
// This function will go away in the near future. Do not rely on it.
#[doc(hidden)]
pub async fn customize_middleware(
self,
) -> ::std::result::Result<
crate::client::customize::CustomizableOperation<
crate::operation::modify_cluster::ModifyCluster,
::aws_http::retry::AwsResponseRetryClassifier,
>,
::aws_smithy_http::result::SdkError<crate::operation::modify_cluster::ModifyClusterError>,
> {
let handle = self.handle.clone();
let operation = self
.inner
.build()
.map_err(::aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&handle.conf)
.await
.map_err(::aws_smithy_http::result::SdkError::construction_failure)?;
::std::result::Result::Ok(crate::client::customize::CustomizableOperation {
handle,
operation,
})
}
// This function will go away in the near future. Do not rely on it.
#[doc(hidden)]
pub async fn send_middleware(
self,
) -> ::std::result::Result<
crate::operation::modify_cluster::ModifyClusterOutput,
::aws_smithy_http::result::SdkError<crate::operation::modify_cluster::ModifyClusterError>,
> {
let op = self
.inner
.build()
.map_err(::aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&self.handle.conf)
.await
.map_err(::aws_smithy_http::result::SdkError::construction_failure)?;
self.handle.client.call(op).await
}
/// Sends the request and returns the response.
///
/// If an error occurs, an `SdkError` will be returned with additional details that
/// can be matched against.
///
/// By default, any retryable failures will be retried twice. Retry behavior
/// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> ::std::result::Result<
crate::operation::modify_cluster::ModifyClusterOutput,
::aws_smithy_http::result::SdkError<crate::operation::modify_cluster::ModifyClusterError>,
> {
self.send_middleware().await
}
/// Consumes this builder, creating a customizable operation that can be modified before being
/// sent. The operation's inner [http::Request] can be modified as well.
pub async fn customize(
self,
) -> ::std::result::Result<
crate::client::customize::CustomizableOperation<
crate::operation::modify_cluster::ModifyCluster,
::aws_http::retry::AwsResponseRetryClassifier,
>,
::aws_smithy_http::result::SdkError<crate::operation::modify_cluster::ModifyClusterError>,
> {
self.customize_middleware().await
}
/// <p>The unique identifier of the cluster to be modified.</p>
/// <p>Example: <code>examplecluster</code> </p>
pub fn cluster_identifier(
mut self,
input: impl ::std::convert::Into<::std::string::String>,
) -> Self {
self.inner = self.inner.cluster_identifier(input.into());
self
}
/// <p>The unique identifier of the cluster to be modified.</p>
/// <p>Example: <code>examplecluster</code> </p>
pub fn set_cluster_identifier(
mut self,
input: ::std::option::Option<::std::string::String>,
) -> Self {
self.inner = self.inner.set_cluster_identifier(input);
self
}
/// <p>The new cluster type.</p>
/// <p>When you submit your cluster resize request, your existing cluster goes into a read-only mode. After Amazon Redshift provisions a new cluster based on your resize requirements, there will be outage for a period while the old cluster is deleted and your connection is switched to the new cluster. You can use <code>DescribeResize</code> to track the progress of the resize request. </p>
/// <p>Valid Values: <code> multi-node | single-node </code> </p>
pub fn cluster_type(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.cluster_type(input.into());
self
}
/// <p>The new cluster type.</p>
/// <p>When you submit your cluster resize request, your existing cluster goes into a read-only mode. After Amazon Redshift provisions a new cluster based on your resize requirements, there will be outage for a period while the old cluster is deleted and your connection is switched to the new cluster. You can use <code>DescribeResize</code> to track the progress of the resize request. </p>
/// <p>Valid Values: <code> multi-node | single-node </code> </p>
pub fn set_cluster_type(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_cluster_type(input);
self
}
/// <p>The new node type of the cluster. If you specify a new node type, you must also specify the number of nodes parameter.</p>
/// <p> For more information about resizing clusters, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/rs-resize-tutorial.html">Resizing Clusters in Amazon Redshift</a> in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
/// <p>Valid Values: <code>ds2.xlarge</code> | <code>ds2.8xlarge</code> | <code>dc1.large</code> | <code>dc1.8xlarge</code> | <code>dc2.large</code> | <code>dc2.8xlarge</code> | <code>ra3.xlplus</code> | <code>ra3.4xlarge</code> | <code>ra3.16xlarge</code> </p>
pub fn node_type(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.node_type(input.into());
self
}
/// <p>The new node type of the cluster. If you specify a new node type, you must also specify the number of nodes parameter.</p>
/// <p> For more information about resizing clusters, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/rs-resize-tutorial.html">Resizing Clusters in Amazon Redshift</a> in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
/// <p>Valid Values: <code>ds2.xlarge</code> | <code>ds2.8xlarge</code> | <code>dc1.large</code> | <code>dc1.8xlarge</code> | <code>dc2.large</code> | <code>dc2.8xlarge</code> | <code>ra3.xlplus</code> | <code>ra3.4xlarge</code> | <code>ra3.16xlarge</code> </p>
pub fn set_node_type(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_node_type(input);
self
}
/// <p>The new number of nodes of the cluster. If you specify a new number of nodes, you must also specify the node type parameter.</p>
/// <p> For more information about resizing clusters, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/rs-resize-tutorial.html">Resizing Clusters in Amazon Redshift</a> in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
/// <p>Valid Values: Integer greater than <code>0</code>.</p>
pub fn number_of_nodes(mut self, input: i32) -> Self {
self.inner = self.inner.number_of_nodes(input);
self
}
/// <p>The new number of nodes of the cluster. If you specify a new number of nodes, you must also specify the node type parameter.</p>
/// <p> For more information about resizing clusters, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/rs-resize-tutorial.html">Resizing Clusters in Amazon Redshift</a> in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
/// <p>Valid Values: Integer greater than <code>0</code>.</p>
pub fn set_number_of_nodes(mut self, input: ::std::option::Option<i32>) -> Self {
self.inner = self.inner.set_number_of_nodes(input);
self
}
/// Appends an item to `ClusterSecurityGroups`.
///
/// To override the contents of this collection use [`set_cluster_security_groups`](Self::set_cluster_security_groups).
///
/// <p>A list of cluster security groups to be authorized on this cluster. This change is asynchronously applied as soon as possible.</p>
/// <p>Security groups currently associated with the cluster, and not in the list of groups to apply, will be revoked from the cluster.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li> <p>Must be 1 to 255 alphanumeric characters or hyphens</p> </li>
/// <li> <p>First character must be a letter</p> </li>
/// <li> <p>Cannot end with a hyphen or contain two consecutive hyphens</p> </li>
/// </ul>
pub fn cluster_security_groups(
mut self,
input: impl ::std::convert::Into<::std::string::String>,
) -> Self {
self.inner = self.inner.cluster_security_groups(input.into());
self
}
/// <p>A list of cluster security groups to be authorized on this cluster. This change is asynchronously applied as soon as possible.</p>
/// <p>Security groups currently associated with the cluster, and not in the list of groups to apply, will be revoked from the cluster.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li> <p>Must be 1 to 255 alphanumeric characters or hyphens</p> </li>
/// <li> <p>First character must be a letter</p> </li>
/// <li> <p>Cannot end with a hyphen or contain two consecutive hyphens</p> </li>
/// </ul>
pub fn set_cluster_security_groups(
mut self,
input: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
) -> Self {
self.inner = self.inner.set_cluster_security_groups(input);
self
}
/// Appends an item to `VpcSecurityGroupIds`.
///
/// To override the contents of this collection use [`set_vpc_security_group_ids`](Self::set_vpc_security_group_ids).
///
/// <p>A list of virtual private cloud (VPC) security groups to be associated with the cluster. This change is asynchronously applied as soon as possible.</p>
pub fn vpc_security_group_ids(
mut self,
input: impl ::std::convert::Into<::std::string::String>,
) -> Self {
self.inner = self.inner.vpc_security_group_ids(input.into());
self
}
/// <p>A list of virtual private cloud (VPC) security groups to be associated with the cluster. This change is asynchronously applied as soon as possible.</p>
pub fn set_vpc_security_group_ids(
mut self,
input: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
) -> Self {
self.inner = self.inner.set_vpc_security_group_ids(input);
self
}
/// <p>The new password for the cluster admin user. This change is asynchronously applied as soon as possible. Between the time of the request and the completion of the request, the <code>MasterUserPassword</code> element exists in the <code>PendingModifiedValues</code> element of the operation response. </p> <note>
/// <p>Operations never return the password, so this operation provides a way to regain access to the admin user for a cluster if the password is lost.</p>
/// </note>
/// <p>Default: Uses existing setting.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li> <p>Must be between 8 and 64 characters in length.</p> </li>
/// <li> <p>Must contain at least one uppercase letter.</p> </li>
/// <li> <p>Must contain at least one lowercase letter.</p> </li>
/// <li> <p>Must contain one number.</p> </li>
/// <li> <p>Can be any printable ASCII character (ASCII code 33-126) except <code>'</code> (single quote), <code>"</code> (double quote), <code>\</code>, <code>/</code>, or <code>@</code>.</p> </li>
/// </ul>
pub fn master_user_password(
mut self,
input: impl ::std::convert::Into<::std::string::String>,
) -> Self {
self.inner = self.inner.master_user_password(input.into());
self
}
/// <p>The new password for the cluster admin user. This change is asynchronously applied as soon as possible. Between the time of the request and the completion of the request, the <code>MasterUserPassword</code> element exists in the <code>PendingModifiedValues</code> element of the operation response. </p> <note>
/// <p>Operations never return the password, so this operation provides a way to regain access to the admin user for a cluster if the password is lost.</p>
/// </note>
/// <p>Default: Uses existing setting.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li> <p>Must be between 8 and 64 characters in length.</p> </li>
/// <li> <p>Must contain at least one uppercase letter.</p> </li>
/// <li> <p>Must contain at least one lowercase letter.</p> </li>
/// <li> <p>Must contain one number.</p> </li>
/// <li> <p>Can be any printable ASCII character (ASCII code 33-126) except <code>'</code> (single quote), <code>"</code> (double quote), <code>\</code>, <code>/</code>, or <code>@</code>.</p> </li>
/// </ul>
pub fn set_master_user_password(
mut self,
input: ::std::option::Option<::std::string::String>,
) -> Self {
self.inner = self.inner.set_master_user_password(input);
self
}
/// <p>The name of the cluster parameter group to apply to this cluster. This change is applied only after the cluster is rebooted. To reboot a cluster use <code>RebootCluster</code>. </p>
/// <p>Default: Uses existing setting.</p>
/// <p>Constraints: The cluster parameter group must be in the same parameter group family that matches the cluster version.</p>
pub fn cluster_parameter_group_name(
mut self,
input: impl ::std::convert::Into<::std::string::String>,
) -> Self {
self.inner = self.inner.cluster_parameter_group_name(input.into());
self
}
/// <p>The name of the cluster parameter group to apply to this cluster. This change is applied only after the cluster is rebooted. To reboot a cluster use <code>RebootCluster</code>. </p>
/// <p>Default: Uses existing setting.</p>
/// <p>Constraints: The cluster parameter group must be in the same parameter group family that matches the cluster version.</p>
pub fn set_cluster_parameter_group_name(
mut self,
input: ::std::option::Option<::std::string::String>,
) -> Self {
self.inner = self.inner.set_cluster_parameter_group_name(input);
self
}
/// <p>The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with <code>CreateClusterSnapshot</code>. </p>
/// <p>If you decrease the automated snapshot retention period from its current value, existing automated snapshots that fall outside of the new retention period will be immediately deleted.</p>
/// <p>You can't disable automated snapshots for RA3 node types. Set the automated retention period from 1-35 days.</p>
/// <p>Default: Uses existing setting.</p>
/// <p>Constraints: Must be a value from 0 to 35.</p>
pub fn automated_snapshot_retention_period(mut self, input: i32) -> Self {
self.inner = self.inner.automated_snapshot_retention_period(input);
self
}
/// <p>The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with <code>CreateClusterSnapshot</code>. </p>
/// <p>If you decrease the automated snapshot retention period from its current value, existing automated snapshots that fall outside of the new retention period will be immediately deleted.</p>
/// <p>You can't disable automated snapshots for RA3 node types. Set the automated retention period from 1-35 days.</p>
/// <p>Default: Uses existing setting.</p>
/// <p>Constraints: Must be a value from 0 to 35.</p>
pub fn set_automated_snapshot_retention_period(
mut self,
input: ::std::option::Option<i32>,
) -> Self {
self.inner = self.inner.set_automated_snapshot_retention_period(input);
self
}
/// <p>The default for number of days that a newly created manual snapshot is retained. If the value is -1, the manual snapshot is retained indefinitely. This value doesn't retroactively change the retention periods of existing manual snapshots.</p>
/// <p>The value must be either -1 or an integer between 1 and 3,653.</p>
/// <p>The default value is -1.</p>
pub fn manual_snapshot_retention_period(mut self, input: i32) -> Self {
self.inner = self.inner.manual_snapshot_retention_period(input);
self
}
/// <p>The default for number of days that a newly created manual snapshot is retained. If the value is -1, the manual snapshot is retained indefinitely. This value doesn't retroactively change the retention periods of existing manual snapshots.</p>
/// <p>The value must be either -1 or an integer between 1 and 3,653.</p>
/// <p>The default value is -1.</p>
pub fn set_manual_snapshot_retention_period(
mut self,
input: ::std::option::Option<i32>,
) -> Self {
self.inner = self.inner.set_manual_snapshot_retention_period(input);
self
}
/// <p>The weekly time range (in UTC) during which system maintenance can occur, if necessary. If system maintenance is necessary during the window, it may result in an outage.</p>
/// <p>This maintenance window change is made immediately. If the new maintenance window indicates the current time, there must be at least 120 minutes between the current time and end of the window in order to ensure that pending changes are applied.</p>
/// <p>Default: Uses existing setting.</p>
/// <p>Format: ddd:hh24:mi-ddd:hh24:mi, for example <code>wed:07:30-wed:08:00</code>.</p>
/// <p>Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun</p>
/// <p>Constraints: Must be at least 30 minutes.</p>
pub fn preferred_maintenance_window(
mut self,
input: impl ::std::convert::Into<::std::string::String>,
) -> Self {
self.inner = self.inner.preferred_maintenance_window(input.into());
self
}
/// <p>The weekly time range (in UTC) during which system maintenance can occur, if necessary. If system maintenance is necessary during the window, it may result in an outage.</p>
/// <p>This maintenance window change is made immediately. If the new maintenance window indicates the current time, there must be at least 120 minutes between the current time and end of the window in order to ensure that pending changes are applied.</p>
/// <p>Default: Uses existing setting.</p>
/// <p>Format: ddd:hh24:mi-ddd:hh24:mi, for example <code>wed:07:30-wed:08:00</code>.</p>
/// <p>Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun</p>
/// <p>Constraints: Must be at least 30 minutes.</p>
pub fn set_preferred_maintenance_window(
mut self,
input: ::std::option::Option<::std::string::String>,
) -> Self {
self.inner = self.inner.set_preferred_maintenance_window(input);
self
}
/// <p>The new version number of the Amazon Redshift engine to upgrade to.</p>
/// <p>For major version upgrades, if a non-default cluster parameter group is currently in use, a new cluster parameter group in the cluster parameter group family for the new version must be specified. The new cluster parameter group can be the default for that cluster parameter group family. For more information about parameters and parameter groups, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html">Amazon Redshift Parameter Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
/// <p>Example: <code>1.0</code> </p>
pub fn cluster_version(
mut self,
input: impl ::std::convert::Into<::std::string::String>,
) -> Self {
self.inner = self.inner.cluster_version(input.into());
self
}
/// <p>The new version number of the Amazon Redshift engine to upgrade to.</p>
/// <p>For major version upgrades, if a non-default cluster parameter group is currently in use, a new cluster parameter group in the cluster parameter group family for the new version must be specified. The new cluster parameter group can be the default for that cluster parameter group family. For more information about parameters and parameter groups, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html">Amazon Redshift Parameter Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
/// <p>Example: <code>1.0</code> </p>
pub fn set_cluster_version(
mut self,
input: ::std::option::Option<::std::string::String>,
) -> Self {
self.inner = self.inner.set_cluster_version(input);
self
}
/// <p>If <code>true</code>, major version upgrades will be applied automatically to the cluster during the maintenance window. </p>
/// <p>Default: <code>false</code> </p>
pub fn allow_version_upgrade(mut self, input: bool) -> Self {
self.inner = self.inner.allow_version_upgrade(input);
self
}
/// <p>If <code>true</code>, major version upgrades will be applied automatically to the cluster during the maintenance window. </p>
/// <p>Default: <code>false</code> </p>
pub fn set_allow_version_upgrade(mut self, input: ::std::option::Option<bool>) -> Self {
self.inner = self.inner.set_allow_version_upgrade(input);
self
}
/// <p>Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.</p>
pub fn hsm_client_certificate_identifier(
mut self,
input: impl ::std::convert::Into<::std::string::String>,
) -> Self {
self.inner = self.inner.hsm_client_certificate_identifier(input.into());
self
}
/// <p>Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.</p>
pub fn set_hsm_client_certificate_identifier(
mut self,
input: ::std::option::Option<::std::string::String>,
) -> Self {
self.inner = self.inner.set_hsm_client_certificate_identifier(input);
self
}
/// <p>Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.</p>
pub fn hsm_configuration_identifier(
mut self,
input: impl ::std::convert::Into<::std::string::String>,
) -> Self {
self.inner = self.inner.hsm_configuration_identifier(input.into());
self
}
/// <p>Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.</p>
pub fn set_hsm_configuration_identifier(
mut self,
input: ::std::option::Option<::std::string::String>,
) -> Self {
self.inner = self.inner.set_hsm_configuration_identifier(input);
self
}
/// <p>The new identifier for the cluster.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li> <p>Must contain from 1 to 63 alphanumeric characters or hyphens.</p> </li>
/// <li> <p>Alphabetic characters must be lowercase.</p> </li>
/// <li> <p>First character must be a letter.</p> </li>
/// <li> <p>Cannot end with a hyphen or contain two consecutive hyphens.</p> </li>
/// <li> <p>Must be unique for all clusters within an Amazon Web Services account.</p> </li>
/// </ul>
/// <p>Example: <code>examplecluster</code> </p>
pub fn new_cluster_identifier(
mut self,
input: impl ::std::convert::Into<::std::string::String>,
) -> Self {
self.inner = self.inner.new_cluster_identifier(input.into());
self
}
/// <p>The new identifier for the cluster.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li> <p>Must contain from 1 to 63 alphanumeric characters or hyphens.</p> </li>
/// <li> <p>Alphabetic characters must be lowercase.</p> </li>
/// <li> <p>First character must be a letter.</p> </li>
/// <li> <p>Cannot end with a hyphen or contain two consecutive hyphens.</p> </li>
/// <li> <p>Must be unique for all clusters within an Amazon Web Services account.</p> </li>
/// </ul>
/// <p>Example: <code>examplecluster</code> </p>
pub fn set_new_cluster_identifier(
mut self,
input: ::std::option::Option<::std::string::String>,
) -> Self {
self.inner = self.inner.set_new_cluster_identifier(input);
self
}
/// <p>If <code>true</code>, the cluster can be accessed from a public network. Only clusters in VPCs can be set to be publicly available.</p>
pub fn publicly_accessible(mut self, input: bool) -> Self {
self.inner = self.inner.publicly_accessible(input);
self
}
/// <p>If <code>true</code>, the cluster can be accessed from a public network. Only clusters in VPCs can be set to be publicly available.</p>
pub fn set_publicly_accessible(mut self, input: ::std::option::Option<bool>) -> Self {
self.inner = self.inner.set_publicly_accessible(input);
self
}
/// <p>The Elastic IP (EIP) address for the cluster.</p>
/// <p>Constraints: The cluster must be provisioned in EC2-VPC and publicly-accessible through an Internet gateway. For more information about provisioning clusters in EC2-VPC, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#cluster-platforms">Supported Platforms to Launch Your Cluster</a> in the Amazon Redshift Cluster Management Guide.</p>
pub fn elastic_ip(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.elastic_ip(input.into());
self
}
/// <p>The Elastic IP (EIP) address for the cluster.</p>
/// <p>Constraints: The cluster must be provisioned in EC2-VPC and publicly-accessible through an Internet gateway. For more information about provisioning clusters in EC2-VPC, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#cluster-platforms">Supported Platforms to Launch Your Cluster</a> in the Amazon Redshift Cluster Management Guide.</p>
pub fn set_elastic_ip(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_elastic_ip(input);
self
}
/// <p>An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html">Enhanced VPC Routing</a> in the Amazon Redshift Cluster Management Guide.</p>
/// <p>If this option is <code>true</code>, enhanced VPC routing is enabled. </p>
/// <p>Default: false</p>
pub fn enhanced_vpc_routing(mut self, input: bool) -> Self {
self.inner = self.inner.enhanced_vpc_routing(input);
self
}
/// <p>An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html">Enhanced VPC Routing</a> in the Amazon Redshift Cluster Management Guide.</p>
/// <p>If this option is <code>true</code>, enhanced VPC routing is enabled. </p>
/// <p>Default: false</p>
pub fn set_enhanced_vpc_routing(mut self, input: ::std::option::Option<bool>) -> Self {
self.inner = self.inner.set_enhanced_vpc_routing(input);
self
}
/// <p>The name for the maintenance track that you want to assign for the cluster. This name change is asynchronous. The new track name stays in the <code>PendingModifiedValues</code> for the cluster until the next maintenance window. When the maintenance track changes, the cluster is switched to the latest cluster release available for the maintenance track. At this point, the maintenance track name is applied.</p>
pub fn maintenance_track_name(
mut self,
input: impl ::std::convert::Into<::std::string::String>,
) -> Self {
self.inner = self.inner.maintenance_track_name(input.into());
self
}
/// <p>The name for the maintenance track that you want to assign for the cluster. This name change is asynchronous. The new track name stays in the <code>PendingModifiedValues</code> for the cluster until the next maintenance window. When the maintenance track changes, the cluster is switched to the latest cluster release available for the maintenance track. At this point, the maintenance track name is applied.</p>
pub fn set_maintenance_track_name(
mut self,
input: ::std::option::Option<::std::string::String>,
) -> Self {
self.inner = self.inner.set_maintenance_track_name(input);
self
}
/// <p>Indicates whether the cluster is encrypted. If the value is encrypted (true) and you provide a value for the <code>KmsKeyId</code> parameter, we encrypt the cluster with the provided <code>KmsKeyId</code>. If you don't provide a <code>KmsKeyId</code>, we encrypt with the default key. </p>
/// <p>If the value is not encrypted (false), then the cluster is decrypted. </p>
pub fn encrypted(mut self, input: bool) -> Self {
self.inner = self.inner.encrypted(input);
self
}
/// <p>Indicates whether the cluster is encrypted. If the value is encrypted (true) and you provide a value for the <code>KmsKeyId</code> parameter, we encrypt the cluster with the provided <code>KmsKeyId</code>. If you don't provide a <code>KmsKeyId</code>, we encrypt with the default key. </p>
/// <p>If the value is not encrypted (false), then the cluster is decrypted. </p>
pub fn set_encrypted(mut self, input: ::std::option::Option<bool>) -> Self {
self.inner = self.inner.set_encrypted(input);
self
}
/// <p>The Key Management Service (KMS) key ID of the encryption key that you want to use to encrypt data in the cluster.</p>
pub fn kms_key_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.kms_key_id(input.into());
self
}
/// <p>The Key Management Service (KMS) key ID of the encryption key that you want to use to encrypt data in the cluster.</p>
pub fn set_kms_key_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_kms_key_id(input);
self
}
/// <p>The option to enable relocation for an Amazon Redshift cluster between Availability Zones after the cluster modification is complete.</p>
pub fn availability_zone_relocation(mut self, input: bool) -> Self {
self.inner = self.inner.availability_zone_relocation(input);
self
}
/// <p>The option to enable relocation for an Amazon Redshift cluster between Availability Zones after the cluster modification is complete.</p>
pub fn set_availability_zone_relocation(mut self, input: ::std::option::Option<bool>) -> Self {
self.inner = self.inner.set_availability_zone_relocation(input);
self
}
/// <p>The option to initiate relocation for an Amazon Redshift cluster to the target Availability Zone.</p>
pub fn availability_zone(
mut self,
input: impl ::std::convert::Into<::std::string::String>,
) -> Self {
self.inner = self.inner.availability_zone(input.into());
self
}
/// <p>The option to initiate relocation for an Amazon Redshift cluster to the target Availability Zone.</p>
pub fn set_availability_zone(
mut self,
input: ::std::option::Option<::std::string::String>,
) -> Self {
self.inner = self.inner.set_availability_zone(input);
self
}
/// <p>The option to change the port of an Amazon Redshift cluster.</p>
pub fn port(mut self, input: i32) -> Self {
self.inner = self.inner.port(input);
self
}
/// <p>The option to change the port of an Amazon Redshift cluster.</p>
pub fn set_port(mut self, input: ::std::option::Option<i32>) -> Self {
self.inner = self.inner.set_port(input);
self
}
}