aws-sdk-lambdacore 1.0.0

AWS SDK for AWS Lambda Core
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteNetworkConnector`](crate::operation::delete_network_connector::builders::DeleteNetworkConnectorFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`identifier(impl Into<String>)`](crate::operation::delete_network_connector::builders::DeleteNetworkConnectorFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::delete_network_connector::builders::DeleteNetworkConnectorFluentBuilder::set_identifier):<br>required: **true**<br>A flexible identifier that accepts a network connector ID, name, or ARN<br>
    /// - On success, responds with [`DeleteNetworkConnectorOutput`](crate::operation::delete_network_connector::DeleteNetworkConnectorOutput) with field(s):
    ///   - [`arn(String)`](crate::operation::delete_network_connector::DeleteNetworkConnectorOutput::arn): <p>The Amazon Resource Name (ARN) of the network connector.</p>
    ///   - [`name(String)`](crate::operation::delete_network_connector::DeleteNetworkConnectorOutput::name): <p>The name of the network connector.</p>
    ///   - [`id(String)`](crate::operation::delete_network_connector::DeleteNetworkConnectorOutput::id): The unique identifier for a network connector, assigned by the service at creation time
    ///   - [`configuration(Option<NetworkConnectorConfiguration>)`](crate::operation::delete_network_connector::DeleteNetworkConnectorOutput::configuration): <p>The network configuration of the connector, including VPC subnets and security groups.</p>
    ///   - [`operator_role(Option<String>)`](crate::operation::delete_network_connector::DeleteNetworkConnectorOutput::operator_role): <p>The ARN of the IAM role that Lambda uses to manage the underlying ENI resources for this connector.</p>
    ///   - [`state(Option<NetworkConnectorState>)`](crate::operation::delete_network_connector::DeleteNetworkConnectorOutput::state): <p>The current state of the network connector. The State field is typically <code>DELETING</code> after this call.</p>
    /// - On failure, responds with [`SdkError<DeleteNetworkConnectorError>`](crate::operation::delete_network_connector::DeleteNetworkConnectorError)
    pub fn delete_network_connector(&self) -> crate::operation::delete_network_connector::builders::DeleteNetworkConnectorFluentBuilder {
        crate::operation::delete_network_connector::builders::DeleteNetworkConnectorFluentBuilder::new(self.handle.clone())
    }
}