aws-sdk-rtbfabric 1.30.0

AWS SDK for RTBFabric
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateRequesterGateway`](crate::operation::update_requester_gateway::builders::UpdateRequesterGatewayFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`client_token(impl Into<String>)`](crate::operation::update_requester_gateway::builders::UpdateRequesterGatewayFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::update_requester_gateway::builders::UpdateRequesterGatewayFluentBuilder::set_client_token):<br>required: **true**<br><p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a <a href="https://wikipedia.org/wiki/Universally_unique_identifier">UUID type of value</a>.</p> <p>If you don't provide this value, then Amazon Web Services generates a random one for you.</p> <p>If you retry the operation with the same <code>clientToken</code>, but with different parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p><br>
    ///   - [`gateway_id(impl Into<String>)`](crate::operation::update_requester_gateway::builders::UpdateRequesterGatewayFluentBuilder::gateway_id) / [`set_gateway_id(Option<String>)`](crate::operation::update_requester_gateway::builders::UpdateRequesterGatewayFluentBuilder::set_gateway_id):<br>required: **true**<br><p>The unique identifier of the gateway.</p><br>
    ///   - [`description(impl Into<String>)`](crate::operation::update_requester_gateway::builders::UpdateRequesterGatewayFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_requester_gateway::builders::UpdateRequesterGatewayFluentBuilder::set_description):<br>required: **false**<br><p>An optional description for the requester gateway.</p><br>
    /// - On success, responds with [`UpdateRequesterGatewayOutput`](crate::operation::update_requester_gateway::UpdateRequesterGatewayOutput) with field(s):
    ///   - [`gateway_id(String)`](crate::operation::update_requester_gateway::UpdateRequesterGatewayOutput::gateway_id): <p>The unique identifier of the gateway.</p>
    ///   - [`status(RequesterGatewayStatus)`](crate::operation::update_requester_gateway::UpdateRequesterGatewayOutput::status): <p>The status of the request.</p>
    /// - On failure, responds with [`SdkError<UpdateRequesterGatewayError>`](crate::operation::update_requester_gateway::UpdateRequesterGatewayError)
    pub fn update_requester_gateway(&self) -> crate::operation::update_requester_gateway::builders::UpdateRequesterGatewayFluentBuilder {
        crate::operation::update_requester_gateway::builders::UpdateRequesterGatewayFluentBuilder::new(self.handle.clone())
    }
}