aws-sdk-bedrockagentcorecontrol 1.51.0

AWS SDK for Amazon Bedrock AgentCore Control
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 [`DeleteGateway`](crate::operation::delete_gateway::builders::DeleteGatewayFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`gateway_identifier(impl Into<String>)`](crate::operation::delete_gateway::builders::DeleteGatewayFluentBuilder::gateway_identifier) / [`set_gateway_identifier(Option<String>)`](crate::operation::delete_gateway::builders::DeleteGatewayFluentBuilder::set_gateway_identifier):<br>required: **true**<br><p>The identifier of the gateway to delete.</p><br>
    /// - On success, responds with [`DeleteGatewayOutput`](crate::operation::delete_gateway::DeleteGatewayOutput) with field(s):
    ///   - [`gateway_id(String)`](crate::operation::delete_gateway::DeleteGatewayOutput::gateway_id): <p>The unique identifier of the deleted gateway.</p>
    ///   - [`status(GatewayStatus)`](crate::operation::delete_gateway::DeleteGatewayOutput::status): <p>The current status of the gateway deletion.</p>
    ///   - [`status_reasons(Option<Vec::<String>>)`](crate::operation::delete_gateway::DeleteGatewayOutput::status_reasons): <p>The reasons for the current status of the gateway deletion.</p>
    /// - On failure, responds with [`SdkError<DeleteGatewayError>`](crate::operation::delete_gateway::DeleteGatewayError)
    pub fn delete_gateway(&self) -> crate::operation::delete_gateway::builders::DeleteGatewayFluentBuilder {
        crate::operation::delete_gateway::builders::DeleteGatewayFluentBuilder::new(self.handle.clone())
    }
}