aws-sdk-evs 1.29.0

AWS SDK for Amazon Elastic VMware Service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteEnvironmentConnector`](crate::operation::delete_environment_connector::builders::DeleteEnvironmentConnectorFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`client_token(impl Into<String>)`](crate::operation::delete_environment_connector::builders::DeleteEnvironmentConnectorFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::delete_environment_connector::builders::DeleteEnvironmentConnectorFluentBuilder::set_client_token):<br>required: **false**<br><note>  <p>This parameter is not used in Amazon EVS currently. If you supply input for this parameter, it will have no effect.</p> </note> <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the connector deletion request. If you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.</p><br>
    ///   - [`environment_id(impl Into<String>)`](crate::operation::delete_environment_connector::builders::DeleteEnvironmentConnectorFluentBuilder::environment_id) / [`set_environment_id(Option<String>)`](crate::operation::delete_environment_connector::builders::DeleteEnvironmentConnectorFluentBuilder::set_environment_id):<br>required: **true**<br><p>A unique ID for the environment that the connector belongs to.</p><br>
    ///   - [`connector_id(impl Into<String>)`](crate::operation::delete_environment_connector::builders::DeleteEnvironmentConnectorFluentBuilder::connector_id) / [`set_connector_id(Option<String>)`](crate::operation::delete_environment_connector::builders::DeleteEnvironmentConnectorFluentBuilder::set_connector_id):<br>required: **true**<br><p>A unique ID for the connector to be deleted.</p><br>
    /// - On success, responds with [`DeleteEnvironmentConnectorOutput`](crate::operation::delete_environment_connector::DeleteEnvironmentConnectorOutput) with field(s):
    ///   - [`connector(Option<Connector>)`](crate::operation::delete_environment_connector::DeleteEnvironmentConnectorOutput::connector): <p>A description of the deleted connector.</p>
    ///   - [`environment_summary(Option<EnvironmentSummary>)`](crate::operation::delete_environment_connector::DeleteEnvironmentConnectorOutput::environment_summary): <p>A summary of the environment that the connector was deleted from.</p>
    /// - On failure, responds with [`SdkError<DeleteEnvironmentConnectorError>`](crate::operation::delete_environment_connector::DeleteEnvironmentConnectorError)
    pub fn delete_environment_connector(&self) -> crate::operation::delete_environment_connector::builders::DeleteEnvironmentConnectorFluentBuilder {
        crate::operation::delete_environment_connector::builders::DeleteEnvironmentConnectorFluentBuilder::new(self.handle.clone())
    }
}