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
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateEnvironmentConnector`](crate::operation::update_environment_connector::builders::UpdateEnvironmentConnectorFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`client_token(impl Into<String>)`](crate::operation::update_environment_connector::builders::UpdateEnvironmentConnectorFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::update_environment_connector::builders::UpdateEnvironmentConnectorFluentBuilder::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 update 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::update_environment_connector::builders::UpdateEnvironmentConnectorFluentBuilder::environment_id) / [`set_environment_id(Option<String>)`](crate::operation::update_environment_connector::builders::UpdateEnvironmentConnectorFluentBuilder::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::update_environment_connector::builders::UpdateEnvironmentConnectorFluentBuilder::connector_id) / [`set_connector_id(Option<String>)`](crate::operation::update_environment_connector::builders::UpdateEnvironmentConnectorFluentBuilder::set_connector_id):<br>required: **true**<br><p>A unique ID for the connector to update.</p><br>
    ///   - [`appliance_fqdn(impl Into<String>)`](crate::operation::update_environment_connector::builders::UpdateEnvironmentConnectorFluentBuilder::appliance_fqdn) / [`set_appliance_fqdn(Option<String>)`](crate::operation::update_environment_connector::builders::UpdateEnvironmentConnectorFluentBuilder::set_appliance_fqdn):<br>required: **false**<br><p>The new fully qualified domain name (FQDN) of the VCF appliance that the connector connects to.</p><br>
    ///   - [`secret_identifier(impl Into<String>)`](crate::operation::update_environment_connector::builders::UpdateEnvironmentConnectorFluentBuilder::secret_identifier) / [`set_secret_identifier(Option<String>)`](crate::operation::update_environment_connector::builders::UpdateEnvironmentConnectorFluentBuilder::set_secret_identifier):<br>required: **false**<br><p>The new ARN or name of the Amazon Web Services Secrets Manager secret that stores the credentials for the VCF appliance.</p><br>
    /// - On success, responds with [`UpdateEnvironmentConnectorOutput`](crate::operation::update_environment_connector::UpdateEnvironmentConnectorOutput) with field(s):
    ///   - [`connector(Option<Connector>)`](crate::operation::update_environment_connector::UpdateEnvironmentConnectorOutput::connector): <p>A description of the updated connector.</p>
    /// - On failure, responds with [`SdkError<UpdateEnvironmentConnectorError>`](crate::operation::update_environment_connector::UpdateEnvironmentConnectorError)
    pub fn update_environment_connector(&self) -> crate::operation::update_environment_connector::builders::UpdateEnvironmentConnectorFluentBuilder {
        crate::operation::update_environment_connector::builders::UpdateEnvironmentConnectorFluentBuilder::new(self.handle.clone())
    }
}