aws-sdk-route53 0.25.0

AWS SDK for Amazon Route 53
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`AssociateVPCWithHostedZone`](crate::operation::associate_vpc_with_hosted_zone::builders::AssociateVPCWithHostedZoneFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`hosted_zone_id(impl Into<String>)`](crate::operation::associate_vpc_with_hosted_zone::builders::AssociateVPCWithHostedZoneFluentBuilder::hosted_zone_id) / [`set_hosted_zone_id(Option<String>)`](crate::operation::associate_vpc_with_hosted_zone::builders::AssociateVPCWithHostedZoneFluentBuilder::set_hosted_zone_id): <p>The ID of the private hosted zone that you want to associate an Amazon VPC with.</p>  <p>Note that you can't associate a VPC with a hosted zone that doesn't have an existing VPC association.</p>
    ///   - [`vpc(Vpc)`](crate::operation::associate_vpc_with_hosted_zone::builders::AssociateVPCWithHostedZoneFluentBuilder::vpc) / [`set_vpc(Option<Vpc>)`](crate::operation::associate_vpc_with_hosted_zone::builders::AssociateVPCWithHostedZoneFluentBuilder::set_vpc): <p>A complex type that contains information about the VPC that you want to associate with a private hosted zone.</p>
    ///   - [`comment(impl Into<String>)`](crate::operation::associate_vpc_with_hosted_zone::builders::AssociateVPCWithHostedZoneFluentBuilder::comment) / [`set_comment(Option<String>)`](crate::operation::associate_vpc_with_hosted_zone::builders::AssociateVPCWithHostedZoneFluentBuilder::set_comment): <p> <i>Optional:</i> A comment about the association request.</p>
    /// - On success, responds with [`AssociateVpcWithHostedZoneOutput`](crate::operation::associate_vpc_with_hosted_zone::AssociateVpcWithHostedZoneOutput) with field(s):
    ///   - [`change_info(Option<ChangeInfo>)`](crate::operation::associate_vpc_with_hosted_zone::AssociateVpcWithHostedZoneOutput::change_info): <p>A complex type that describes the changes made to your hosted zone.</p>
    /// - On failure, responds with [`SdkError<AssociateVPCWithHostedZoneError>`](crate::operation::associate_vpc_with_hosted_zone::AssociateVPCWithHostedZoneError)
    pub fn associate_vpc_with_hosted_zone(&self) -> crate::operation::associate_vpc_with_hosted_zone::builders::AssociateVPCWithHostedZoneFluentBuilder{
        crate::operation::associate_vpc_with_hosted_zone::builders::AssociateVPCWithHostedZoneFluentBuilder::new(self.handle.clone())
    }
}