aws-sdk-codebuild 1.122.0

AWS SDK for AWS CodeBuild
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 DeleteSourceCredentialsOutput {
    /// <p>The Amazon Resource Name (ARN) of the token.</p>
    pub arn: ::std::option::Option<::std::string::String>,
    _request_id: Option<String>,
}
impl DeleteSourceCredentialsOutput {
    /// <p>The Amazon Resource Name (ARN) of the token.</p>
    pub fn arn(&self) -> ::std::option::Option<&str> {
        self.arn.as_deref()
    }
}
impl ::aws_types::request_id::RequestId for DeleteSourceCredentialsOutput {
    fn request_id(&self) -> Option<&str> {
        self._request_id.as_deref()
    }
}
impl DeleteSourceCredentialsOutput {
    /// Creates a new builder-style object to manufacture [`DeleteSourceCredentialsOutput`](crate::operation::delete_source_credentials::DeleteSourceCredentialsOutput).
    pub fn builder() -> crate::operation::delete_source_credentials::builders::DeleteSourceCredentialsOutputBuilder {
        crate::operation::delete_source_credentials::builders::DeleteSourceCredentialsOutputBuilder::default()
    }
}

/// A builder for [`DeleteSourceCredentialsOutput`](crate::operation::delete_source_credentials::DeleteSourceCredentialsOutput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct DeleteSourceCredentialsOutputBuilder {
    pub(crate) arn: ::std::option::Option<::std::string::String>,
    _request_id: Option<String>,
}
impl DeleteSourceCredentialsOutputBuilder {
    /// <p>The Amazon Resource Name (ARN) of the token.</p>
    pub fn arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.arn = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The Amazon Resource Name (ARN) of the token.</p>
    pub fn set_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.arn = input;
        self
    }
    /// <p>The Amazon Resource Name (ARN) of the token.</p>
    pub fn get_arn(&self) -> &::std::option::Option<::std::string::String> {
        &self.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 [`DeleteSourceCredentialsOutput`](crate::operation::delete_source_credentials::DeleteSourceCredentialsOutput).
    pub fn build(self) -> crate::operation::delete_source_credentials::DeleteSourceCredentialsOutput {
        crate::operation::delete_source_credentials::DeleteSourceCredentialsOutput {
            arn: self.arn,
            _request_id: self._request_id,
        }
    }
}