// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`CreateGateway`](crate::operation::create_gateway::builders::CreateGatewayFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`activation_key(impl Into<String>)`](crate::operation::create_gateway::builders::CreateGatewayFluentBuilder::activation_key) / [`set_activation_key(Option<String>)`](crate::operation::create_gateway::builders::CreateGatewayFluentBuilder::set_activation_key): <p>The activation key of the created gateway.</p>
/// - [`gateway_display_name(impl Into<String>)`](crate::operation::create_gateway::builders::CreateGatewayFluentBuilder::gateway_display_name) / [`set_gateway_display_name(Option<String>)`](crate::operation::create_gateway::builders::CreateGatewayFluentBuilder::set_gateway_display_name): <p>The display name of the created gateway.</p>
/// - [`gateway_type(GatewayType)`](crate::operation::create_gateway::builders::CreateGatewayFluentBuilder::gateway_type) / [`set_gateway_type(Option<GatewayType>)`](crate::operation::create_gateway::builders::CreateGatewayFluentBuilder::set_gateway_type): <p>The type of created gateway.</p>
/// - [`tags(Vec<Tag>)`](crate::operation::create_gateway::builders::CreateGatewayFluentBuilder::tags) / [`set_tags(Option<Vec<Tag>>)`](crate::operation::create_gateway::builders::CreateGatewayFluentBuilder::set_tags): <p>A list of up to 50 tags to assign to the gateway. Each tag is a key-value pair.</p>
/// - On success, responds with [`CreateGatewayOutput`](crate::operation::create_gateway::CreateGatewayOutput) with field(s):
/// - [`gateway_arn(Option<String>)`](crate::operation::create_gateway::CreateGatewayOutput::gateway_arn): <p>The Amazon Resource Name (ARN) of the gateway you create.</p>
/// - On failure, responds with [`SdkError<CreateGatewayError>`](crate::operation::create_gateway::CreateGatewayError)
pub fn create_gateway(
&self,
) -> crate::operation::create_gateway::builders::CreateGatewayFluentBuilder {
crate::operation::create_gateway::builders::CreateGatewayFluentBuilder::new(
self.handle.clone(),
)
}
}