aws-sdk-observabilityadmin 1.56.0

AWS SDK for CloudWatch Observability Admin 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 CreateTelemetryRuleOutput {
    /// <p>The Amazon Resource Name (ARN) of the created telemetry rule.</p>
    pub rule_arn: ::std::option::Option<::std::string::String>,
    _request_id: Option<String>,
}
impl CreateTelemetryRuleOutput {
    /// <p>The Amazon Resource Name (ARN) of the created telemetry rule.</p>
    pub fn rule_arn(&self) -> ::std::option::Option<&str> {
        self.rule_arn.as_deref()
    }
}
impl ::aws_types::request_id::RequestId for CreateTelemetryRuleOutput {
    fn request_id(&self) -> Option<&str> {
        self._request_id.as_deref()
    }
}
impl CreateTelemetryRuleOutput {
    /// Creates a new builder-style object to manufacture [`CreateTelemetryRuleOutput`](crate::operation::create_telemetry_rule::CreateTelemetryRuleOutput).
    pub fn builder() -> crate::operation::create_telemetry_rule::builders::CreateTelemetryRuleOutputBuilder {
        crate::operation::create_telemetry_rule::builders::CreateTelemetryRuleOutputBuilder::default()
    }
}

/// A builder for [`CreateTelemetryRuleOutput`](crate::operation::create_telemetry_rule::CreateTelemetryRuleOutput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct CreateTelemetryRuleOutputBuilder {
    pub(crate) rule_arn: ::std::option::Option<::std::string::String>,
    _request_id: Option<String>,
}
impl CreateTelemetryRuleOutputBuilder {
    /// <p>The Amazon Resource Name (ARN) of the created telemetry rule.</p>
    pub fn rule_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.rule_arn = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The Amazon Resource Name (ARN) of the created telemetry rule.</p>
    pub fn set_rule_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.rule_arn = input;
        self
    }
    /// <p>The Amazon Resource Name (ARN) of the created telemetry rule.</p>
    pub fn get_rule_arn(&self) -> &::std::option::Option<::std::string::String> {
        &self.rule_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 [`CreateTelemetryRuleOutput`](crate::operation::create_telemetry_rule::CreateTelemetryRuleOutput).
    pub fn build(self) -> crate::operation::create_telemetry_rule::CreateTelemetryRuleOutput {
        crate::operation::create_telemetry_rule::CreateTelemetryRuleOutput {
            rule_arn: self.rule_arn,
            _request_id: self._request_id,
        }
    }
}