// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`CreateCoipPool`](crate::operation::create_coip_pool::builders::CreateCoipPoolFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`local_gateway_route_table_id(impl Into<String>)`](crate::operation::create_coip_pool::builders::CreateCoipPoolFluentBuilder::local_gateway_route_table_id) / [`set_local_gateway_route_table_id(Option<String>)`](crate::operation::create_coip_pool::builders::CreateCoipPoolFluentBuilder::set_local_gateway_route_table_id): <p> The ID of the local gateway route table. </p>
/// - [`tag_specifications(Vec<TagSpecification>)`](crate::operation::create_coip_pool::builders::CreateCoipPoolFluentBuilder::tag_specifications) / [`set_tag_specifications(Option<Vec<TagSpecification>>)`](crate::operation::create_coip_pool::builders::CreateCoipPoolFluentBuilder::set_tag_specifications): <p> The tags to assign to the CoIP address pool. </p>
/// - [`dry_run(bool)`](crate::operation::create_coip_pool::builders::CreateCoipPoolFluentBuilder::dry_run) / [`set_dry_run(Option<bool>)`](crate::operation::create_coip_pool::builders::CreateCoipPoolFluentBuilder::set_dry_run): <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
/// - On success, responds with [`CreateCoipPoolOutput`](crate::operation::create_coip_pool::CreateCoipPoolOutput) with field(s):
/// - [`coip_pool(Option<CoipPool>)`](crate::operation::create_coip_pool::CreateCoipPoolOutput::coip_pool): <p>Information about the CoIP address pool.</p>
/// - On failure, responds with [`SdkError<CreateCoipPoolError>`](crate::operation::create_coip_pool::CreateCoipPoolError)
pub fn create_coip_pool(
&self,
) -> crate::operation::create_coip_pool::builders::CreateCoipPoolFluentBuilder {
crate::operation::create_coip_pool::builders::CreateCoipPoolFluentBuilder::new(
self.handle.clone(),
)
}
}