aws-sdk-nimble 1.46.0

AWS SDK for AmazonNimbleStudio
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[derive(Debug)]
pub(crate) struct Handle {
    pub(crate) conf: crate::Config,
    #[allow(dead_code)] // unused when a service does not provide any operations
    pub(crate) runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
}

/// Client for AmazonNimbleStudio
///
/// Client for invoking operations on AmazonNimbleStudio. Each operation on AmazonNimbleStudio is a method on this
/// this struct. `.send()` MUST be invoked on the generated operations to dispatch the request to the service.
/// ## Constructing a `Client`
///
/// A [`Config`] is required to construct a client. For most use cases, the [`aws-config`]
/// crate should be used to automatically resolve this config using
/// [`aws_config::load_from_env()`], since this will resolve an [`SdkConfig`] which can be shared
/// across multiple different AWS SDK clients. This config resolution process can be customized
/// by calling [`aws_config::from_env()`] instead, which returns a [`ConfigLoader`] that uses
/// the [builder pattern] to customize the default config.
///
/// In the simplest case, creating a client looks as follows:
/// ```rust,no_run
/// # async fn wrapper() {
/// let config = aws_config::load_from_env().await;
/// let client = aws_sdk_nimble::Client::new(&config);
/// # }
/// ```
///
/// Occasionally, SDKs may have additional service-specific values that can be set on the [`Config`] that
/// is absent from [`SdkConfig`], or slightly different settings for a specific client may be desired.
/// The [`Builder`](crate::config::Builder) struct implements `From<&SdkConfig>`, so setting these specific settings can be
/// done as follows:
///
/// ```rust,no_run
/// # async fn wrapper() {
/// let sdk_config = ::aws_config::load_from_env().await;
/// let config = aws_sdk_nimble::config::Builder::from(&sdk_config)
/// # /*
///     .some_service_specific_setting("value")
/// # */
///     .build();
/// # }
/// ```
///
/// See the [`aws-config` docs] and [`Config`] for more information on customizing configuration.
///
/// _Note:_ Client construction is expensive due to connection thread pool initialization, and should
/// be done once at application start-up.
///
/// [`Config`]: crate::Config
/// [`ConfigLoader`]: https://docs.rs/aws-config/*/aws_config/struct.ConfigLoader.html
/// [`SdkConfig`]: https://docs.rs/aws-config/*/aws_config/struct.SdkConfig.html
/// [`aws-config` docs]: https://docs.rs/aws-config/*
/// [`aws-config`]: https://crates.io/crates/aws-config
/// [`aws_config::from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.from_env.html
/// [`aws_config::load_from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.load_from_env.html
/// [builder pattern]: https://rust-lang.github.io/api-guidelines/type-safety.html#builders-enable-construction-of-complex-values-c-builder
/// # Using the `Client`
///
/// A client has a function for every operation that can be performed by the service.
/// For example, the [`ListTagsForResource`](crate::operation::list_tags_for_resource) operation has
/// a [`Client::list_tags_for_resource`], function which returns a builder for that operation.
/// The fluent builder ultimately has a `send()` function that returns an async future that
/// returns a result, as illustrated below:
///
/// ```rust,ignore
/// let result = client.list_tags_for_resource()
///     .resource_arn("example")
///     .send()
///     .await;
/// ```
///
/// The underlying HTTP requests that get made by this can be modified with the `customize_operation`
/// function on the fluent builder. See the [`customize`](crate::client::customize) module for more
/// information.
/// # Waiters
///
/// This client provides `wait_until` methods behind the [`Waiters`](crate::client::Waiters) trait.
/// To use them, simply import the trait, and then call one of the `wait_until` methods. This will
/// return a waiter fluent builder that takes various parameters, which are documented on the builder
/// type. Once parameters have been provided, the `wait` method can be called to initiate waiting.
///
/// For example, if there was a `wait_until_thing` method, it could look like:
/// ```rust,ignore
/// let result = client.wait_until_thing()
///     .thing_id("someId")
///     .wait(Duration::from_secs(120))
///     .await;
/// ```
#[derive(::std::clone::Clone, ::std::fmt::Debug)]
pub struct Client {
    handle: ::std::sync::Arc<Handle>,
}

impl Client {
    /// Creates a new client from the service [`Config`](crate::Config).
    ///
    /// # Panics
    ///
    /// This method will panic in the following cases:
    ///
    /// - Retries or timeouts are enabled without a `sleep_impl` configured.
    /// - Identity caching is enabled without a `sleep_impl` and `time_source` configured.
    /// - No `behavior_version` is provided.
    ///
    /// The panic message for each of these will have instructions on how to resolve them.
    #[track_caller]
    pub fn from_conf(conf: crate::Config) -> Self {
        let handle = Handle {
            conf: conf.clone(),
            runtime_plugins: crate::config::base_client_runtime_plugins(conf),
        };
        if let Err(err) = Self::validate_config(&handle) {
            panic!("Invalid client configuration: {err}");
        }
        Self {
            handle: ::std::sync::Arc::new(handle),
        }
    }

    /// Returns the client's configuration.
    pub fn config(&self) -> &crate::Config {
        &self.handle.conf
    }

    fn validate_config(handle: &Handle) -> Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
        let mut cfg = ::aws_smithy_types::config_bag::ConfigBag::base();
        handle
            .runtime_plugins
            .apply_client_configuration(&mut cfg)?
            .validate_base_client_config(&cfg)?;
        Ok(())
    }
}

///
/// Waiter functions for the client.
///
/// Import this trait to get `wait_until` methods on the client.
///
pub trait Waiters {
    /// Wait until a LaunchProfile is Ready. Use this after invoking CreateLaunchProfile or UpdateLaunchProfile
    fn wait_until_launch_profile_ready(&self) -> crate::waiters::launch_profile_ready::LaunchProfileReadyFluentBuilder;
    /// Wait until a LaunchProfile is Deleted. Use this after invoking DeleteLaunchProfile
    fn wait_until_launch_profile_deleted(&self) -> crate::waiters::launch_profile_deleted::LaunchProfileDeletedFluentBuilder;
    /// Wait until a StreamingImage is Ready. Use this after invoking CreateStreamingImage or UpdateStreamingImage
    fn wait_until_streaming_image_ready(&self) -> crate::waiters::streaming_image_ready::StreamingImageReadyFluentBuilder;
    /// Wait until a StreamingImage Deleted. Use this after invoking DeleteStreamingImage
    fn wait_until_streaming_image_deleted(&self) -> crate::waiters::streaming_image_deleted::StreamingImageDeletedFluentBuilder;
    /// Wait until a StreamingSession is ready. Use this after invoking CreateStreamingSession, StartStreamingSession
    fn wait_until_streaming_session_ready(&self) -> crate::waiters::streaming_session_ready::StreamingSessionReadyFluentBuilder;
    /// Wait until a StreamingSessionStopped. Use this after invoking StopStreamingSession
    fn wait_until_streaming_session_stopped(&self) -> crate::waiters::streaming_session_stopped::StreamingSessionStoppedFluentBuilder;
    /// Wait until a StreamingSessionDeleted. Use this after invoking DeleteStreamingSession
    fn wait_until_streaming_session_deleted(&self) -> crate::waiters::streaming_session_deleted::StreamingSessionDeletedFluentBuilder;
    /// Wait until a StreamingSessionStream is ready. Use this after invoking CreateStreamingSessionStream
    fn wait_until_streaming_session_stream_ready(&self) -> crate::waiters::streaming_session_stream_ready::StreamingSessionStreamReadyFluentBuilder;
    /// Wait until a Studio is Ready. Use this after invoking CreateStudio, UpdateStudio, or StartStudioSSOConfigurationRepair
    fn wait_until_studio_ready(&self) -> crate::waiters::studio_ready::StudioReadyFluentBuilder;
    /// Wait until a Studio is Deleted. Use this after invoking DeleteStudio.
    fn wait_until_studio_deleted(&self) -> crate::waiters::studio_deleted::StudioDeletedFluentBuilder;
    /// Wait until a StudioComponent is Ready. Use this after invoking CreateStudioComponent or UpdateStudioComponent
    fn wait_until_studio_component_ready(&self) -> crate::waiters::studio_component_ready::StudioComponentReadyFluentBuilder;
    /// Wait until a StudioComponent Deleted. Use this after invoking DeleteStudioComponent
    fn wait_until_studio_component_deleted(&self) -> crate::waiters::studio_component_deleted::StudioComponentDeletedFluentBuilder;
}
impl Waiters for Client {
    fn wait_until_launch_profile_ready(&self) -> crate::waiters::launch_profile_ready::LaunchProfileReadyFluentBuilder {
        crate::waiters::launch_profile_ready::LaunchProfileReadyFluentBuilder::new(self.handle.clone())
    }
    fn wait_until_launch_profile_deleted(&self) -> crate::waiters::launch_profile_deleted::LaunchProfileDeletedFluentBuilder {
        crate::waiters::launch_profile_deleted::LaunchProfileDeletedFluentBuilder::new(self.handle.clone())
    }
    fn wait_until_streaming_image_ready(&self) -> crate::waiters::streaming_image_ready::StreamingImageReadyFluentBuilder {
        crate::waiters::streaming_image_ready::StreamingImageReadyFluentBuilder::new(self.handle.clone())
    }
    fn wait_until_streaming_image_deleted(&self) -> crate::waiters::streaming_image_deleted::StreamingImageDeletedFluentBuilder {
        crate::waiters::streaming_image_deleted::StreamingImageDeletedFluentBuilder::new(self.handle.clone())
    }
    fn wait_until_streaming_session_ready(&self) -> crate::waiters::streaming_session_ready::StreamingSessionReadyFluentBuilder {
        crate::waiters::streaming_session_ready::StreamingSessionReadyFluentBuilder::new(self.handle.clone())
    }
    fn wait_until_streaming_session_stopped(&self) -> crate::waiters::streaming_session_stopped::StreamingSessionStoppedFluentBuilder {
        crate::waiters::streaming_session_stopped::StreamingSessionStoppedFluentBuilder::new(self.handle.clone())
    }
    fn wait_until_streaming_session_deleted(&self) -> crate::waiters::streaming_session_deleted::StreamingSessionDeletedFluentBuilder {
        crate::waiters::streaming_session_deleted::StreamingSessionDeletedFluentBuilder::new(self.handle.clone())
    }
    fn wait_until_streaming_session_stream_ready(&self) -> crate::waiters::streaming_session_stream_ready::StreamingSessionStreamReadyFluentBuilder {
        crate::waiters::streaming_session_stream_ready::StreamingSessionStreamReadyFluentBuilder::new(self.handle.clone())
    }
    fn wait_until_studio_ready(&self) -> crate::waiters::studio_ready::StudioReadyFluentBuilder {
        crate::waiters::studio_ready::StudioReadyFluentBuilder::new(self.handle.clone())
    }
    fn wait_until_studio_deleted(&self) -> crate::waiters::studio_deleted::StudioDeletedFluentBuilder {
        crate::waiters::studio_deleted::StudioDeletedFluentBuilder::new(self.handle.clone())
    }
    fn wait_until_studio_component_ready(&self) -> crate::waiters::studio_component_ready::StudioComponentReadyFluentBuilder {
        crate::waiters::studio_component_ready::StudioComponentReadyFluentBuilder::new(self.handle.clone())
    }
    fn wait_until_studio_component_deleted(&self) -> crate::waiters::studio_component_deleted::StudioComponentDeletedFluentBuilder {
        crate::waiters::studio_component_deleted::StudioComponentDeletedFluentBuilder::new(self.handle.clone())
    }
}

impl Client {
    /// Creates a new client from an [SDK Config](::aws_types::sdk_config::SdkConfig).
    ///
    /// # Panics
    ///
    /// - This method will panic if the `sdk_config` is missing an async sleep implementation. If you experience this panic, set
    ///     the `sleep_impl` on the Config passed into this function to fix it.
    /// - This method will panic if the `sdk_config` is missing an HTTP connector. If you experience this panic, set the
    ///     `http_connector` on the Config passed into this function to fix it.
    /// - This method will panic if no `BehaviorVersion` is provided. If you experience this panic, set `behavior_version` on the Config or enable the `behavior-version-latest` Cargo feature.
    #[track_caller]
    pub fn new(sdk_config: &::aws_types::sdk_config::SdkConfig) -> Self {
        Self::from_conf(sdk_config.into())
    }
}

mod accept_eulas;

mod create_launch_profile;

mod create_streaming_image;

mod create_streaming_session;

mod create_streaming_session_stream;

mod create_studio;

mod create_studio_component;

/// Operation customization and supporting types.
///
/// The underlying HTTP requests made during an operation can be customized
/// by calling the `customize()` method on the builder returned from a client
/// operation call. For example, this can be used to add an additional HTTP header:
///
/// ```ignore
/// # async fn wrapper() -> ::std::result::Result<(), aws_sdk_nimble::Error> {
/// # let client: aws_sdk_nimble::Client = unimplemented!();
/// use ::http::header::{HeaderName, HeaderValue};
///
/// let result = client.list_tags_for_resource()
///     .customize()
///     .mutate_request(|req| {
///         // Add `x-example-header` with value
///         req.headers_mut()
///             .insert(
///                 HeaderName::from_static("x-example-header"),
///                 HeaderValue::from_static("1"),
///             );
///     })
///     .send()
///     .await;
/// # }
/// ```
pub mod customize;

mod delete_launch_profile;

mod delete_launch_profile_member;

mod delete_streaming_image;

mod delete_streaming_session;

mod delete_studio;

mod delete_studio_component;

mod delete_studio_member;

mod get_eula;

mod get_launch_profile;

mod get_launch_profile_details;

mod get_launch_profile_initialization;

mod get_launch_profile_member;

mod get_streaming_image;

mod get_streaming_session;

mod get_streaming_session_backup;

mod get_streaming_session_stream;

mod get_studio;

mod get_studio_component;

mod get_studio_member;

mod list_eula_acceptances;

mod list_eulas;

mod list_launch_profile_members;

mod list_launch_profiles;

mod list_streaming_images;

mod list_streaming_session_backups;

mod list_streaming_sessions;

mod list_studio_components;

mod list_studio_members;

mod list_studios;

mod list_tags_for_resource;

mod put_launch_profile_members;

mod put_studio_members;

mod start_streaming_session;

mod start_studio_sso_configuration_repair;

mod stop_streaming_session;

mod tag_resource;

mod untag_resource;

mod update_launch_profile;

mod update_launch_profile_member;

mod update_streaming_image;

mod update_studio;

mod update_studio_component;