aws-sdk-sagemaker 1.193.0

AWS SDK for Amazon SageMaker Service
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 UpdateFeatureGroupOutput {
    /// <p>The Amazon Resource Number (ARN) of the feature group that you're updating.</p>
    pub feature_group_arn: ::std::option::Option<::std::string::String>,
    _request_id: Option<String>,
}
impl UpdateFeatureGroupOutput {
    /// <p>The Amazon Resource Number (ARN) of the feature group that you're updating.</p>
    pub fn feature_group_arn(&self) -> ::std::option::Option<&str> {
        self.feature_group_arn.as_deref()
    }
}
impl ::aws_types::request_id::RequestId for UpdateFeatureGroupOutput {
    fn request_id(&self) -> Option<&str> {
        self._request_id.as_deref()
    }
}
impl UpdateFeatureGroupOutput {
    /// Creates a new builder-style object to manufacture [`UpdateFeatureGroupOutput`](crate::operation::update_feature_group::UpdateFeatureGroupOutput).
    pub fn builder() -> crate::operation::update_feature_group::builders::UpdateFeatureGroupOutputBuilder {
        crate::operation::update_feature_group::builders::UpdateFeatureGroupOutputBuilder::default()
    }
}

/// A builder for [`UpdateFeatureGroupOutput`](crate::operation::update_feature_group::UpdateFeatureGroupOutput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct UpdateFeatureGroupOutputBuilder {
    pub(crate) feature_group_arn: ::std::option::Option<::std::string::String>,
    _request_id: Option<String>,
}
impl UpdateFeatureGroupOutputBuilder {
    /// <p>The Amazon Resource Number (ARN) of the feature group that you're updating.</p>
    /// This field is required.
    pub fn feature_group_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.feature_group_arn = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The Amazon Resource Number (ARN) of the feature group that you're updating.</p>
    pub fn set_feature_group_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.feature_group_arn = input;
        self
    }
    /// <p>The Amazon Resource Number (ARN) of the feature group that you're updating.</p>
    pub fn get_feature_group_arn(&self) -> &::std::option::Option<::std::string::String> {
        &self.feature_group_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 [`UpdateFeatureGroupOutput`](crate::operation::update_feature_group::UpdateFeatureGroupOutput).
    pub fn build(self) -> crate::operation::update_feature_group::UpdateFeatureGroupOutput {
        crate::operation::update_feature_group::UpdateFeatureGroupOutput {
            feature_group_arn: self.feature_group_arn,
            _request_id: self._request_id,
        }
    }
}