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 [`GetLinkRoutingRule`](crate::operation::get_link_routing_rule::builders::GetLinkRoutingRuleFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`gateway_id(impl Into<String>)`](crate::operation::get_link_routing_rule::builders::GetLinkRoutingRuleFluentBuilder::gateway_id) / [`set_gateway_id(Option<String>)`](crate::operation::get_link_routing_rule::builders::GetLinkRoutingRuleFluentBuilder::set_gateway_id):<br>required: **true**<br><p>The unique identifier of the gateway.</p><br>
    ///   - [`link_id(impl Into<String>)`](crate::operation::get_link_routing_rule::builders::GetLinkRoutingRuleFluentBuilder::link_id) / [`set_link_id(Option<String>)`](crate::operation::get_link_routing_rule::builders::GetLinkRoutingRuleFluentBuilder::set_link_id):<br>required: **true**<br><p>The unique identifier of the link.</p><br>
    ///   - [`rule_id(impl Into<String>)`](crate::operation::get_link_routing_rule::builders::GetLinkRoutingRuleFluentBuilder::rule_id) / [`set_rule_id(Option<String>)`](crate::operation::get_link_routing_rule::builders::GetLinkRoutingRuleFluentBuilder::set_rule_id):<br>required: **true**<br><p>The unique identifier of the routing rule.</p><br>
    /// - On success, responds with [`GetLinkRoutingRuleOutput`](crate::operation::get_link_routing_rule::GetLinkRoutingRuleOutput) with field(s):
    ///   - [`gateway_id(String)`](crate::operation::get_link_routing_rule::GetLinkRoutingRuleOutput::gateway_id): <p>The unique identifier of the gateway.</p>
    ///   - [`link_id(String)`](crate::operation::get_link_routing_rule::GetLinkRoutingRuleOutput::link_id): <p>The unique identifier of the link.</p>
    ///   - [`rule_id(String)`](crate::operation::get_link_routing_rule::GetLinkRoutingRuleOutput::rule_id): <p>The unique identifier of the routing rule.</p>
    ///   - [`priority(i32)`](crate::operation::get_link_routing_rule::GetLinkRoutingRuleOutput::priority): <p>The priority of the routing rule.</p>
    ///   - [`conditions(Option<RuleCondition>)`](crate::operation::get_link_routing_rule::GetLinkRoutingRuleOutput::conditions): <p>The conditions for the routing rule.</p>
    ///   - [`status(RuleStatus)`](crate::operation::get_link_routing_rule::GetLinkRoutingRuleOutput::status): <p>The status of the routing rule.</p>
    ///   - [`created_at(DateTime)`](crate::operation::get_link_routing_rule::GetLinkRoutingRuleOutput::created_at): <p>The timestamp of when the routing rule was created.</p>
    ///   - [`updated_at(DateTime)`](crate::operation::get_link_routing_rule::GetLinkRoutingRuleOutput::updated_at): <p>The timestamp of when the routing rule was last updated.</p>
    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_link_routing_rule::GetLinkRoutingRuleOutput::tags): <p>A map of the key-value pairs for the tag or tags assigned to the specified resource.</p>
    /// - On failure, responds with [`SdkError<GetLinkRoutingRuleError>`](crate::operation::get_link_routing_rule::GetLinkRoutingRuleError)
    pub fn get_link_routing_rule(&self) -> crate::operation::get_link_routing_rule::builders::GetLinkRoutingRuleFluentBuilder {
        crate::operation::get_link_routing_rule::builders::GetLinkRoutingRuleFluentBuilder::new(self.handle.clone())
    }
}