aws-sdk-ecs 1.128.0

AWS SDK for Amazon EC2 Container Service
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub use crate::operation::submit_task_state_change::_submit_task_state_change_input::SubmitTaskStateChangeInputBuilder;

pub use crate::operation::submit_task_state_change::_submit_task_state_change_output::SubmitTaskStateChangeOutputBuilder;

impl crate::operation::submit_task_state_change::builders::SubmitTaskStateChangeInputBuilder {
    /// Sends a request with this input using the given client.
    pub async fn send_with(
        self,
        client: &crate::Client,
    ) -> ::std::result::Result<
        crate::operation::submit_task_state_change::SubmitTaskStateChangeOutput,
        ::aws_smithy_runtime_api::client::result::SdkError<
            crate::operation::submit_task_state_change::SubmitTaskStateChangeError,
            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
        >,
    > {
        let mut fluent_builder = client.submit_task_state_change();
        fluent_builder.inner = self;
        fluent_builder.send().await
    }
}
/// Fluent builder constructing a request to `SubmitTaskStateChange`.
///
/// <note>
/// <p>This action is only used by the Amazon ECS agent, and it is not intended for use outside of the agent.</p>
/// </note>
/// <p>Sent to acknowledge that a task changed states.</p>
#[derive(::std::clone::Clone, ::std::fmt::Debug)]
pub struct SubmitTaskStateChangeFluentBuilder {
    handle: ::std::sync::Arc<crate::client::Handle>,
    inner: crate::operation::submit_task_state_change::builders::SubmitTaskStateChangeInputBuilder,
    config_override: ::std::option::Option<crate::config::Builder>,
}
impl
    crate::client::customize::internal::CustomizableSend<
        crate::operation::submit_task_state_change::SubmitTaskStateChangeOutput,
        crate::operation::submit_task_state_change::SubmitTaskStateChangeError,
    > for SubmitTaskStateChangeFluentBuilder
{
    fn send(
        self,
        config_override: crate::config::Builder,
    ) -> crate::client::customize::internal::BoxFuture<
        crate::client::customize::internal::SendResult<
            crate::operation::submit_task_state_change::SubmitTaskStateChangeOutput,
            crate::operation::submit_task_state_change::SubmitTaskStateChangeError,
        >,
    > {
        ::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
    }
}
impl SubmitTaskStateChangeFluentBuilder {
    /// Creates a new `SubmitTaskStateChangeFluentBuilder`.
    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 SubmitTaskStateChange as a reference.
    pub fn as_input(&self) -> &crate::operation::submit_task_state_change::builders::SubmitTaskStateChangeInputBuilder {
        &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::submit_task_state_change::SubmitTaskStateChangeOutput,
        ::aws_smithy_runtime_api::client::result::SdkError<
            crate::operation::submit_task_state_change::SubmitTaskStateChangeError,
            ::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::submit_task_state_change::SubmitTaskStateChange::operation_runtime_plugins(
            self.handle.runtime_plugins.clone(),
            &self.handle.conf,
            self.config_override,
        );
        crate::operation::submit_task_state_change::SubmitTaskStateChange::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::submit_task_state_change::SubmitTaskStateChangeOutput,
        crate::operation::submit_task_state_change::SubmitTaskStateChangeError,
        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 short name or full Amazon Resource Name (ARN) of the cluster that hosts the task.</p>
    pub fn cluster(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.inner = self.inner.cluster(input.into());
        self
    }
    /// <p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the task.</p>
    pub fn set_cluster(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.inner = self.inner.set_cluster(input);
        self
    }
    /// <p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the task.</p>
    pub fn get_cluster(&self) -> &::std::option::Option<::std::string::String> {
        self.inner.get_cluster()
    }
    /// <p>The task ID or full ARN of the task in the state change request.</p>
    pub fn task(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.inner = self.inner.task(input.into());
        self
    }
    /// <p>The task ID or full ARN of the task in the state change request.</p>
    pub fn set_task(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.inner = self.inner.set_task(input);
        self
    }
    /// <p>The task ID or full ARN of the task in the state change request.</p>
    pub fn get_task(&self) -> &::std::option::Option<::std::string::String> {
        self.inner.get_task()
    }
    /// <p>The status of the state change request.</p>
    pub fn status(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.inner = self.inner.status(input.into());
        self
    }
    /// <p>The status of the state change request.</p>
    pub fn set_status(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.inner = self.inner.set_status(input);
        self
    }
    /// <p>The status of the state change request.</p>
    pub fn get_status(&self) -> &::std::option::Option<::std::string::String> {
        self.inner.get_status()
    }
    /// <p>The reason for the state change request.</p>
    pub fn reason(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.inner = self.inner.reason(input.into());
        self
    }
    /// <p>The reason for the state change request.</p>
    pub fn set_reason(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.inner = self.inner.set_reason(input);
        self
    }
    /// <p>The reason for the state change request.</p>
    pub fn get_reason(&self) -> &::std::option::Option<::std::string::String> {
        self.inner.get_reason()
    }
    ///
    /// Appends an item to `containers`.
    ///
    /// To override the contents of this collection use [`set_containers`](Self::set_containers).
    ///
    /// <p>Any containers that's associated with the state change request.</p>
    pub fn containers(mut self, input: crate::types::ContainerStateChange) -> Self {
        self.inner = self.inner.containers(input);
        self
    }
    /// <p>Any containers that's associated with the state change request.</p>
    pub fn set_containers(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::ContainerStateChange>>) -> Self {
        self.inner = self.inner.set_containers(input);
        self
    }
    /// <p>Any containers that's associated with the state change request.</p>
    pub fn get_containers(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::ContainerStateChange>> {
        self.inner.get_containers()
    }
    ///
    /// Appends an item to `attachments`.
    ///
    /// To override the contents of this collection use [`set_attachments`](Self::set_attachments).
    ///
    /// <p>Any attachments associated with the state change request.</p>
    pub fn attachments(mut self, input: crate::types::AttachmentStateChange) -> Self {
        self.inner = self.inner.attachments(input);
        self
    }
    /// <p>Any attachments associated with the state change request.</p>
    pub fn set_attachments(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::AttachmentStateChange>>) -> Self {
        self.inner = self.inner.set_attachments(input);
        self
    }
    /// <p>Any attachments associated with the state change request.</p>
    pub fn get_attachments(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::AttachmentStateChange>> {
        self.inner.get_attachments()
    }
    ///
    /// Appends an item to `managedAgents`.
    ///
    /// To override the contents of this collection use [`set_managed_agents`](Self::set_managed_agents).
    ///
    /// <p>The details for the managed agent that's associated with the task.</p>
    pub fn managed_agents(mut self, input: crate::types::ManagedAgentStateChange) -> Self {
        self.inner = self.inner.managed_agents(input);
        self
    }
    /// <p>The details for the managed agent that's associated with the task.</p>
    pub fn set_managed_agents(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::ManagedAgentStateChange>>) -> Self {
        self.inner = self.inner.set_managed_agents(input);
        self
    }
    /// <p>The details for the managed agent that's associated with the task.</p>
    pub fn get_managed_agents(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::ManagedAgentStateChange>> {
        self.inner.get_managed_agents()
    }
    /// <p>The Unix timestamp for the time when the container image pull started.</p>
    pub fn pull_started_at(mut self, input: ::aws_smithy_types::DateTime) -> Self {
        self.inner = self.inner.pull_started_at(input);
        self
    }
    /// <p>The Unix timestamp for the time when the container image pull started.</p>
    pub fn set_pull_started_at(mut self, input: ::std::option::Option<::aws_smithy_types::DateTime>) -> Self {
        self.inner = self.inner.set_pull_started_at(input);
        self
    }
    /// <p>The Unix timestamp for the time when the container image pull started.</p>
    pub fn get_pull_started_at(&self) -> &::std::option::Option<::aws_smithy_types::DateTime> {
        self.inner.get_pull_started_at()
    }
    /// <p>The Unix timestamp for the time when the container image pull completed.</p>
    pub fn pull_stopped_at(mut self, input: ::aws_smithy_types::DateTime) -> Self {
        self.inner = self.inner.pull_stopped_at(input);
        self
    }
    /// <p>The Unix timestamp for the time when the container image pull completed.</p>
    pub fn set_pull_stopped_at(mut self, input: ::std::option::Option<::aws_smithy_types::DateTime>) -> Self {
        self.inner = self.inner.set_pull_stopped_at(input);
        self
    }
    /// <p>The Unix timestamp for the time when the container image pull completed.</p>
    pub fn get_pull_stopped_at(&self) -> &::std::option::Option<::aws_smithy_types::DateTime> {
        self.inner.get_pull_stopped_at()
    }
    /// <p>The Unix timestamp for the time when the task execution stopped.</p>
    pub fn execution_stopped_at(mut self, input: ::aws_smithy_types::DateTime) -> Self {
        self.inner = self.inner.execution_stopped_at(input);
        self
    }
    /// <p>The Unix timestamp for the time when the task execution stopped.</p>
    pub fn set_execution_stopped_at(mut self, input: ::std::option::Option<::aws_smithy_types::DateTime>) -> Self {
        self.inner = self.inner.set_execution_stopped_at(input);
        self
    }
    /// <p>The Unix timestamp for the time when the task execution stopped.</p>
    pub fn get_execution_stopped_at(&self) -> &::std::option::Option<::aws_smithy_types::DateTime> {
        self.inner.get_execution_stopped_at()
    }
}