aws-sdk-databasemigration 1.112.0

AWS SDK for AWS Database Migration Service
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p></p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct ReloadReplicationTablesOutput {
    /// <p>The Amazon Resource Name of the replication config for which to reload tables.</p>
    pub replication_config_arn: ::std::option::Option<::std::string::String>,
    _request_id: Option<String>,
}
impl ReloadReplicationTablesOutput {
    /// <p>The Amazon Resource Name of the replication config for which to reload tables.</p>
    pub fn replication_config_arn(&self) -> ::std::option::Option<&str> {
        self.replication_config_arn.as_deref()
    }
}
impl ::aws_types::request_id::RequestId for ReloadReplicationTablesOutput {
    fn request_id(&self) -> Option<&str> {
        self._request_id.as_deref()
    }
}
impl ReloadReplicationTablesOutput {
    /// Creates a new builder-style object to manufacture [`ReloadReplicationTablesOutput`](crate::operation::reload_replication_tables::ReloadReplicationTablesOutput).
    pub fn builder() -> crate::operation::reload_replication_tables::builders::ReloadReplicationTablesOutputBuilder {
        crate::operation::reload_replication_tables::builders::ReloadReplicationTablesOutputBuilder::default()
    }
}

/// A builder for [`ReloadReplicationTablesOutput`](crate::operation::reload_replication_tables::ReloadReplicationTablesOutput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct ReloadReplicationTablesOutputBuilder {
    pub(crate) replication_config_arn: ::std::option::Option<::std::string::String>,
    _request_id: Option<String>,
}
impl ReloadReplicationTablesOutputBuilder {
    /// <p>The Amazon Resource Name of the replication config for which to reload tables.</p>
    pub fn replication_config_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.replication_config_arn = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The Amazon Resource Name of the replication config for which to reload tables.</p>
    pub fn set_replication_config_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.replication_config_arn = input;
        self
    }
    /// <p>The Amazon Resource Name of the replication config for which to reload tables.</p>
    pub fn get_replication_config_arn(&self) -> &::std::option::Option<::std::string::String> {
        &self.replication_config_arn
    }
    pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
        self._request_id = Some(request_id.into());
        self
    }

    pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
        self._request_id = request_id;
        self
    }
    /// Consumes the builder and constructs a [`ReloadReplicationTablesOutput`](crate::operation::reload_replication_tables::ReloadReplicationTablesOutput).
    pub fn build(self) -> crate::operation::reload_replication_tables::ReloadReplicationTablesOutput {
        crate::operation::reload_replication_tables::ReloadReplicationTablesOutput {
            replication_config_arn: self.replication_config_arn,
            _request_id: self._request_id,
        }
    }
}