aws-sdk-devopsagent 1.4.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>The name of the Private Connection.<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>The new certificate for the Private Connection.<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): The name of the Private Connection.
    ///   - [`r#type(PrivateConnectionType)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::type): The type of the Private Connection.
    ///   - [`resource_gateway_id(Option<String>)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::resource_gateway_id): The service-managed Resource Gateway ARN. Only present for service-managed Private Connections.
    ///   - [`host_address(Option<String>)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::host_address): IP address or DNS name of the target resource. Only present for service-managed Private Connections.
    ///   - [`vpc_id(Option<String>)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::vpc_id): VPC identifier of the service-managed Resource Gateway. Only present for service-managed Private Connections.
    ///   - [`resource_configuration_id(Option<String>)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::resource_configuration_id): The Resource Configuration ARN. Only present for self-managed Private Connections.
    ///   - [`status(PrivateConnectionStatus)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::status): The status of the Private Connection.
    ///   - [`certificate_expiry_time(Option<DateTime>)`](crate::operation::update_private_connection_certificate::UpdatePrivateConnectionCertificateOutput::certificate_expiry_time): The expiry time of the certificate associated with the Private Connection. Only present when a certificate is associated.
    /// - 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())
    }
}