aws-sdk-datazone 1.136.0

AWS SDK for Amazon DataZone
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub use crate::operation::update_project_profile::_update_project_profile_input::UpdateProjectProfileInputBuilder;

pub use crate::operation::update_project_profile::_update_project_profile_output::UpdateProjectProfileOutputBuilder;

impl crate::operation::update_project_profile::builders::UpdateProjectProfileInputBuilder {
    /// Sends a request with this input using the given client.
    pub async fn send_with(
        self,
        client: &crate::Client,
    ) -> ::std::result::Result<
        crate::operation::update_project_profile::UpdateProjectProfileOutput,
        ::aws_smithy_runtime_api::client::result::SdkError<
            crate::operation::update_project_profile::UpdateProjectProfileError,
            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
        >,
    > {
        let mut fluent_builder = client.update_project_profile();
        fluent_builder.inner = self;
        fluent_builder.send().await
    }
}
/// Fluent builder constructing a request to `UpdateProjectProfile`.
///
/// <p>Updates a project profile.</p>
#[derive(::std::clone::Clone, ::std::fmt::Debug)]
pub struct UpdateProjectProfileFluentBuilder {
    handle: ::std::sync::Arc<crate::client::Handle>,
    inner: crate::operation::update_project_profile::builders::UpdateProjectProfileInputBuilder,
    config_override: ::std::option::Option<crate::config::Builder>,
}
impl
    crate::client::customize::internal::CustomizableSend<
        crate::operation::update_project_profile::UpdateProjectProfileOutput,
        crate::operation::update_project_profile::UpdateProjectProfileError,
    > for UpdateProjectProfileFluentBuilder
{
    fn send(
        self,
        config_override: crate::config::Builder,
    ) -> crate::client::customize::internal::BoxFuture<
        crate::client::customize::internal::SendResult<
            crate::operation::update_project_profile::UpdateProjectProfileOutput,
            crate::operation::update_project_profile::UpdateProjectProfileError,
        >,
    > {
        ::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
    }
}
impl UpdateProjectProfileFluentBuilder {
    /// Creates a new `UpdateProjectProfileFluentBuilder`.
    pub(crate) fn new(handle: ::std::sync::Arc<crate::client::Handle>) -> Self {
        Self {
            handle,
            inner: ::std::default::Default::default(),
            config_override: ::std::option::Option::None,
        }
    }
    /// Access the UpdateProjectProfile as a reference.
    pub fn as_input(&self) -> &crate::operation::update_project_profile::builders::UpdateProjectProfileInputBuilder {
        &self.inner
    }
    /// Sends the request and returns the response.
    ///
    /// If an error occurs, an `SdkError` will be returned with additional details that
    /// can be matched against.
    ///
    /// By default, any retryable failures will be retried twice. Retry behavior
    /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
    /// set when configuring the client.
    pub async fn send(
        self,
    ) -> ::std::result::Result<
        crate::operation::update_project_profile::UpdateProjectProfileOutput,
        ::aws_smithy_runtime_api::client::result::SdkError<
            crate::operation::update_project_profile::UpdateProjectProfileError,
            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
        >,
    > {
        let input = self
            .inner
            .build()
            .map_err(::aws_smithy_runtime_api::client::result::SdkError::construction_failure)?;
        let runtime_plugins = crate::operation::update_project_profile::UpdateProjectProfile::operation_runtime_plugins(
            self.handle.runtime_plugins.clone(),
            &self.handle.conf,
            self.config_override,
        );
        crate::operation::update_project_profile::UpdateProjectProfile::orchestrate(&runtime_plugins, input).await
    }

    /// Consumes this builder, creating a customizable operation that can be modified before being sent.
    pub fn customize(
        self,
    ) -> crate::client::customize::CustomizableOperation<
        crate::operation::update_project_profile::UpdateProjectProfileOutput,
        crate::operation::update_project_profile::UpdateProjectProfileError,
        Self,
    > {
        crate::client::customize::CustomizableOperation::new(self)
    }
    pub(crate) fn config_override(mut self, config_override: impl ::std::convert::Into<crate::config::Builder>) -> Self {
        self.set_config_override(::std::option::Option::Some(config_override.into()));
        self
    }

    pub(crate) fn set_config_override(&mut self, config_override: ::std::option::Option<crate::config::Builder>) -> &mut Self {
        self.config_override = config_override;
        self
    }
    /// <p>The ID of the domain where a project profile is to be updated.</p>
    pub fn domain_identifier(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.inner = self.inner.domain_identifier(input.into());
        self
    }
    /// <p>The ID of the domain where a project profile is to be updated.</p>
    pub fn set_domain_identifier(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.inner = self.inner.set_domain_identifier(input);
        self
    }
    /// <p>The ID of the domain where a project profile is to be updated.</p>
    pub fn get_domain_identifier(&self) -> &::std::option::Option<::std::string::String> {
        self.inner.get_domain_identifier()
    }
    /// <p>The ID of a project profile that is to be updated.</p>
    pub fn identifier(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.inner = self.inner.identifier(input.into());
        self
    }
    /// <p>The ID of a project profile that is to be updated.</p>
    pub fn set_identifier(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.inner = self.inner.set_identifier(input);
        self
    }
    /// <p>The ID of a project profile that is to be updated.</p>
    pub fn get_identifier(&self) -> &::std::option::Option<::std::string::String> {
        self.inner.get_identifier()
    }
    /// <p>The name of a project profile.</p>
    pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.inner = self.inner.name(input.into());
        self
    }
    /// <p>The name of a project profile.</p>
    pub fn set_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.inner = self.inner.set_name(input);
        self
    }
    /// <p>The name of a project profile.</p>
    pub fn get_name(&self) -> &::std::option::Option<::std::string::String> {
        self.inner.get_name()
    }
    /// <p>The description of a project profile.</p>
    pub fn description(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.inner = self.inner.description(input.into());
        self
    }
    /// <p>The description of a project profile.</p>
    pub fn set_description(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.inner = self.inner.set_description(input);
        self
    }
    /// <p>The description of a project profile.</p>
    pub fn get_description(&self) -> &::std::option::Option<::std::string::String> {
        self.inner.get_description()
    }
    /// <p>The status of a project profile.</p>
    pub fn status(mut self, input: crate::types::Status) -> Self {
        self.inner = self.inner.status(input);
        self
    }
    /// <p>The status of a project profile.</p>
    pub fn set_status(mut self, input: ::std::option::Option<crate::types::Status>) -> Self {
        self.inner = self.inner.set_status(input);
        self
    }
    /// <p>The status of a project profile.</p>
    pub fn get_status(&self) -> &::std::option::Option<crate::types::Status> {
        self.inner.get_status()
    }
    ///
    /// Appends an item to `projectResourceTags`.
    ///
    /// To override the contents of this collection use [`set_project_resource_tags`](Self::set_project_resource_tags).
    ///
    /// <p>The resource tags of the project profile.</p>
    pub fn project_resource_tags(mut self, input: crate::types::ResourceTagParameter) -> Self {
        self.inner = self.inner.project_resource_tags(input);
        self
    }
    /// <p>The resource tags of the project profile.</p>
    pub fn set_project_resource_tags(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::ResourceTagParameter>>) -> Self {
        self.inner = self.inner.set_project_resource_tags(input);
        self
    }
    /// <p>The resource tags of the project profile.</p>
    pub fn get_project_resource_tags(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::ResourceTagParameter>> {
        self.inner.get_project_resource_tags()
    }
    /// <p>Specifies whether custom project resource tags are supported.</p>
    pub fn allow_custom_project_resource_tags(mut self, input: bool) -> Self {
        self.inner = self.inner.allow_custom_project_resource_tags(input);
        self
    }
    /// <p>Specifies whether custom project resource tags are supported.</p>
    pub fn set_allow_custom_project_resource_tags(mut self, input: ::std::option::Option<bool>) -> Self {
        self.inner = self.inner.set_allow_custom_project_resource_tags(input);
        self
    }
    /// <p>Specifies whether custom project resource tags are supported.</p>
    pub fn get_allow_custom_project_resource_tags(&self) -> &::std::option::Option<bool> {
        self.inner.get_allow_custom_project_resource_tags()
    }
    /// <p>Field viewable through the UI that provides a project user with the allowed resource tag specifications.</p>
    pub fn project_resource_tags_description(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.inner = self.inner.project_resource_tags_description(input.into());
        self
    }
    /// <p>Field viewable through the UI that provides a project user with the allowed resource tag specifications.</p>
    pub fn set_project_resource_tags_description(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.inner = self.inner.set_project_resource_tags_description(input);
        self
    }
    /// <p>Field viewable through the UI that provides a project user with the allowed resource tag specifications.</p>
    pub fn get_project_resource_tags_description(&self) -> &::std::option::Option<::std::string::String> {
        self.inner.get_project_resource_tags_description()
    }
    ///
    /// Appends an item to `environmentConfigurations`.
    ///
    /// To override the contents of this collection use [`set_environment_configurations`](Self::set_environment_configurations).
    ///
    /// <p>The environment configurations of a project profile.</p>
    pub fn environment_configurations(mut self, input: crate::types::EnvironmentConfiguration) -> Self {
        self.inner = self.inner.environment_configurations(input);
        self
    }
    /// <p>The environment configurations of a project profile.</p>
    pub fn set_environment_configurations(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::EnvironmentConfiguration>>) -> Self {
        self.inner = self.inner.set_environment_configurations(input);
        self
    }
    /// <p>The environment configurations of a project profile.</p>
    pub fn get_environment_configurations(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::EnvironmentConfiguration>> {
        self.inner.get_environment_configurations()
    }
    /// <p>The ID of the domain unit where a project profile is to be updated.</p>
    pub fn domain_unit_identifier(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.inner = self.inner.domain_unit_identifier(input.into());
        self
    }
    /// <p>The ID of the domain unit where a project profile is to be updated.</p>
    pub fn set_domain_unit_identifier(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.inner = self.inner.set_domain_unit_identifier(input);
        self
    }
    /// <p>The ID of the domain unit where a project profile is to be updated.</p>
    pub fn get_domain_unit_identifier(&self) -> &::std::option::Option<::std::string::String> {
        self.inner.get_domain_unit_identifier()
    }
}