aws-sdk-devopsagent 1.10.0

AWS SDK for AWS DevOps Agent Service
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdatePrivateConnectionCertificate`](crate::operation::update_private_connection_certificate::builders::UpdatePrivateConnectionCertificateFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::update_private_connection_certificate::builders::UpdatePrivateConnectionCertificateFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_private_connection_certificate::builders::UpdatePrivateConnectionCertificateFluentBuilder::set_name):<br>required: **true**<br><p>The name of the Private Connection.</p><br>
    ///   - [`certificate(impl Into<String>)`](crate::operation::update_private_connection_certificate::builders::UpdatePrivateConnectionCertificateFluentBuilder::certificate) / [`set_certificate(Option<String>)`](crate::operation::update_private_connection_certificate::builders::UpdatePrivateConnectionCertificateFluentBuilder::set_certificate):<br>required: **true**<br><p>The new certificate for the Private Connection.</p><br>
    /// - On success, responds with [`UpdatePrivateConnectionCertificateOutput`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput) with field(s):
    ///   - [`name(String)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::name): <p>The name of the Private Connection.</p>
    ///   - [`r#type(PrivateConnectionType)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::type): <p>The type of the Private Connection.</p>
    ///   - [`resource_gateway_id(Option<String>)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::resource_gateway_id): <p>The service-managed Resource Gateway ARN. Only present for service-managed Private Connections.</p>
    ///   - [`host_address(Option<String>)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::host_address): <p>IP address or DNS name of the target resource. Only present for service-managed Private Connections.</p>
    ///   - [`vpc_id(Option<String>)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::vpc_id): <p>VPC identifier of the service-managed Resource Gateway. Only present for service-managed Private Connections.</p>
    ///   - [`resource_configuration_id(Option<String>)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::resource_configuration_id): <p>The Resource Configuration ARN. Only present for self-managed Private Connections.</p>
    ///   - [`status(PrivateConnectionStatus)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::status): <p>The status of the Private Connection.</p>
    ///   - [`certificate_expiry_time(Option<DateTime>)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::certificate_expiry_time): <p>The expiry time of the certificate associated with the Private Connection. Only present when a certificate is associated.</p>
    ///   - [`dns_resolution(Option<ResourceConfigDnsResolution>)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::dns_resolution): <p>DNS resolution mode for the Private Connection's resource gateway.</p>
    ///   - [`failure_message(Option<String>)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::failure_message): <p>Message describing the reason for a failed Private Connection update, if applicable.</p>
    /// - On failure, responds with [`SdkError<UpdatePrivateConnectionCertificateError>`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateError)
    pub fn update_private_connection_certificate(
        &self,
    ) -> crate::operation::update_private_connection_certificate::builders::UpdatePrivateConnectionCertificateFluentBuilder {
        crate::operation::update_private_connection_certificate::builders::UpdatePrivateConnectionCertificateFluentBuilder::new(self.handle.clone())
    }
}