aws-sdk-rtbfabric 1.23.0

AWS SDK for RTBFabric
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CreateOutboundExternalLink`](crate::operation::create_outbound_external_link::builders::CreateOutboundExternalLinkFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`client_token(impl Into<String>)`](crate::operation::create_outbound_external_link::builders::CreateOutboundExternalLinkFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::create_outbound_external_link::builders::CreateOutboundExternalLinkFluentBuilder::set_client_token):<br>required: **true**<br><p>The unique client token.</p><br>
    ///   - [`gateway_id(impl Into<String>)`](crate::operation::create_outbound_external_link::builders::CreateOutboundExternalLinkFluentBuilder::gateway_id) / [`set_gateway_id(Option<String>)`](crate::operation::create_outbound_external_link::builders::CreateOutboundExternalLinkFluentBuilder::set_gateway_id):<br>required: **true**<br><p>The unique identifier of the gateway.</p><br>
    ///   - [`attributes(LinkAttributes)`](crate::operation::create_outbound_external_link::builders::CreateOutboundExternalLinkFluentBuilder::attributes) / [`set_attributes(Option<LinkAttributes>)`](crate::operation::create_outbound_external_link::builders::CreateOutboundExternalLinkFluentBuilder::set_attributes):<br>required: **false**<br><p>Attributes of the link.</p><br>
    ///   - [`public_endpoint(impl Into<String>)`](crate::operation::create_outbound_external_link::builders::CreateOutboundExternalLinkFluentBuilder::public_endpoint) / [`set_public_endpoint(Option<String>)`](crate::operation::create_outbound_external_link::builders::CreateOutboundExternalLinkFluentBuilder::set_public_endpoint):<br>required: **true**<br><p>The public endpoint of the link.</p><br>
    ///   - [`log_settings(LinkLogSettings)`](crate::operation::create_outbound_external_link::builders::CreateOutboundExternalLinkFluentBuilder::log_settings) / [`set_log_settings(Option<LinkLogSettings>)`](crate::operation::create_outbound_external_link::builders::CreateOutboundExternalLinkFluentBuilder::set_log_settings):<br>required: **true**<br><p>Settings for the application logs.</p><br>
    ///   - [`tags(impl Into<String>, impl Into<String>)`](crate::operation::create_outbound_external_link::builders::CreateOutboundExternalLinkFluentBuilder::tags) / [`set_tags(Option<HashMap::<String, String>>)`](crate::operation::create_outbound_external_link::builders::CreateOutboundExternalLinkFluentBuilder::set_tags):<br>required: **false**<br><p>A map of the key-value pairs of the tag or tags to assign to the resource.</p><br>
    /// - On success, responds with [`CreateOutboundExternalLinkOutput`](crate::operation::create_outbound_external_link::CreateOutboundExternalLinkOutput) with field(s):
    ///   - [`gateway_id(String)`](crate::operation::create_outbound_external_link::CreateOutboundExternalLinkOutput::gateway_id): <p>The unique identifier of the gateway.</p>
    ///   - [`link_id(String)`](crate::operation::create_outbound_external_link::CreateOutboundExternalLinkOutput::link_id): <p>The unique identifier of the link.</p>
    ///   - [`status(LinkStatus)`](crate::operation::create_outbound_external_link::CreateOutboundExternalLinkOutput::status): <p>The status of the request.</p>
    /// - On failure, responds with [`SdkError<CreateOutboundExternalLinkError>`](crate::operation::create_outbound_external_link::CreateOutboundExternalLinkError)
    pub fn create_outbound_external_link(
        &self,
    ) -> crate::operation::create_outbound_external_link::builders::CreateOutboundExternalLinkFluentBuilder {
        crate::operation::create_outbound_external_link::builders::CreateOutboundExternalLinkFluentBuilder::new(self.handle.clone())
    }
}