#[non_exhaustive]pub struct ProvisionDataBuilder { /* private fields */ }
Expand description
A builder for ProvisionData
.
Implementations§
source§impl ProvisionDataBuilder
impl ProvisionDataBuilder
sourcepub fn provision_state(self, input: impl Into<String>) -> Self
pub fn provision_state(self, input: impl Into<String>) -> Self
The current provisioning state
sourcepub fn set_provision_state(self, input: Option<String>) -> Self
pub fn set_provision_state(self, input: Option<String>) -> Self
The current provisioning state
sourcepub fn get_provision_state(&self) -> &Option<String>
pub fn get_provision_state(&self) -> &Option<String>
The current provisioning state
sourcepub fn provisioned_capacity_units(self, input: i32) -> Self
pub fn provisioned_capacity_units(self, input: i32) -> Self
The number of capacity units the replication is using.
sourcepub fn set_provisioned_capacity_units(self, input: Option<i32>) -> Self
pub fn set_provisioned_capacity_units(self, input: Option<i32>) -> Self
The number of capacity units the replication is using.
sourcepub fn get_provisioned_capacity_units(&self) -> &Option<i32>
pub fn get_provisioned_capacity_units(&self) -> &Option<i32>
The number of capacity units the replication is using.
sourcepub fn date_provisioned(self, input: DateTime) -> Self
pub fn date_provisioned(self, input: DateTime) -> Self
The timestamp when DMS provisioned replication resources.
sourcepub fn set_date_provisioned(self, input: Option<DateTime>) -> Self
pub fn set_date_provisioned(self, input: Option<DateTime>) -> Self
The timestamp when DMS provisioned replication resources.
sourcepub fn get_date_provisioned(&self) -> &Option<DateTime>
pub fn get_date_provisioned(&self) -> &Option<DateTime>
The timestamp when DMS provisioned replication resources.
sourcepub fn is_new_provisioning_available(self, input: bool) -> Self
pub fn is_new_provisioning_available(self, input: bool) -> Self
Whether the new provisioning is available to the replication.
sourcepub fn set_is_new_provisioning_available(self, input: Option<bool>) -> Self
pub fn set_is_new_provisioning_available(self, input: Option<bool>) -> Self
Whether the new provisioning is available to the replication.
sourcepub fn get_is_new_provisioning_available(&self) -> &Option<bool>
pub fn get_is_new_provisioning_available(&self) -> &Option<bool>
Whether the new provisioning is available to the replication.
sourcepub fn date_new_provisioning_data_available(self, input: DateTime) -> Self
pub fn date_new_provisioning_data_available(self, input: DateTime) -> Self
The timestamp when provisioning became available.
sourcepub fn set_date_new_provisioning_data_available(
self,
input: Option<DateTime>
) -> Self
pub fn set_date_new_provisioning_data_available( self, input: Option<DateTime> ) -> Self
The timestamp when provisioning became available.
sourcepub fn get_date_new_provisioning_data_available(&self) -> &Option<DateTime>
pub fn get_date_new_provisioning_data_available(&self) -> &Option<DateTime>
The timestamp when provisioning became available.
sourcepub fn reason_for_new_provisioning_data(self, input: impl Into<String>) -> Self
pub fn reason_for_new_provisioning_data(self, input: impl Into<String>) -> Self
A message describing the reason that DMS provisioned new resources for the serverless replication.
sourcepub fn set_reason_for_new_provisioning_data(self, input: Option<String>) -> Self
pub fn set_reason_for_new_provisioning_data(self, input: Option<String>) -> Self
A message describing the reason that DMS provisioned new resources for the serverless replication.
sourcepub fn get_reason_for_new_provisioning_data(&self) -> &Option<String>
pub fn get_reason_for_new_provisioning_data(&self) -> &Option<String>
A message describing the reason that DMS provisioned new resources for the serverless replication.
sourcepub fn build(self) -> ProvisionData
pub fn build(self) -> ProvisionData
Consumes the builder and constructs a ProvisionData
.
Trait Implementations§
source§impl Clone for ProvisionDataBuilder
impl Clone for ProvisionDataBuilder
source§fn clone(&self) -> ProvisionDataBuilder
fn clone(&self) -> ProvisionDataBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ProvisionDataBuilder
impl Debug for ProvisionDataBuilder
source§impl Default for ProvisionDataBuilder
impl Default for ProvisionDataBuilder
source§fn default() -> ProvisionDataBuilder
fn default() -> ProvisionDataBuilder
source§impl PartialEq for ProvisionDataBuilder
impl PartialEq for ProvisionDataBuilder
source§fn eq(&self, other: &ProvisionDataBuilder) -> bool
fn eq(&self, other: &ProvisionDataBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.