aws-sdk-controltower 1.109.0

AWS SDK for AWS Control Tower
Documentation
// 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 GetEnabledBaselineInput {
    /// <p>Identifier of the <code>EnabledBaseline</code> resource to be retrieved, in ARN format.</p>
    pub enabled_baseline_identifier: ::std::option::Option<::std::string::String>,
}
impl GetEnabledBaselineInput {
    /// <p>Identifier of the <code>EnabledBaseline</code> resource to be retrieved, in ARN format.</p>
    pub fn enabled_baseline_identifier(&self) -> ::std::option::Option<&str> {
        self.enabled_baseline_identifier.as_deref()
    }
}
impl GetEnabledBaselineInput {
    /// Creates a new builder-style object to manufacture [`GetEnabledBaselineInput`](crate::operation::get_enabled_baseline::GetEnabledBaselineInput).
    pub fn builder() -> crate::operation::get_enabled_baseline::builders::GetEnabledBaselineInputBuilder {
        crate::operation::get_enabled_baseline::builders::GetEnabledBaselineInputBuilder::default()
    }
}

/// A builder for [`GetEnabledBaselineInput`](crate::operation::get_enabled_baseline::GetEnabledBaselineInput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct GetEnabledBaselineInputBuilder {
    pub(crate) enabled_baseline_identifier: ::std::option::Option<::std::string::String>,
}
impl GetEnabledBaselineInputBuilder {
    /// <p>Identifier of the <code>EnabledBaseline</code> resource to be retrieved, in ARN format.</p>
    /// This field is required.
    pub fn enabled_baseline_identifier(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.enabled_baseline_identifier = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>Identifier of the <code>EnabledBaseline</code> resource to be retrieved, in ARN format.</p>
    pub fn set_enabled_baseline_identifier(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.enabled_baseline_identifier = input;
        self
    }
    /// <p>Identifier of the <code>EnabledBaseline</code> resource to be retrieved, in ARN format.</p>
    pub fn get_enabled_baseline_identifier(&self) -> &::std::option::Option<::std::string::String> {
        &self.enabled_baseline_identifier
    }
    /// Consumes the builder and constructs a [`GetEnabledBaselineInput`](crate::operation::get_enabled_baseline::GetEnabledBaselineInput).
    pub fn build(
        self,
    ) -> ::std::result::Result<crate::operation::get_enabled_baseline::GetEnabledBaselineInput, ::aws_smithy_types::error::operation::BuildError>
    {
        ::std::result::Result::Ok(crate::operation::get_enabled_baseline::GetEnabledBaselineInput {
            enabled_baseline_identifier: self.enabled_baseline_identifier,
        })
    }
}