#[non_exhaustive]pub struct CreateVpcEndpointServiceConfigurationInput { /* private fields */ }
Implementations§
source§impl CreateVpcEndpointServiceConfigurationInput
impl CreateVpcEndpointServiceConfigurationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateVpcEndpointServiceConfiguration, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateVpcEndpointServiceConfiguration, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateVpcEndpointServiceConfiguration
>
Examples found in repository?
24994 24995 24996 24997 24998 24999 25000 25001 25002 25003 25004 25005 25006 25007 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25038 25039 25040
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::CreateVpcEndpointServiceConfiguration,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<
crate::error::CreateVpcEndpointServiceConfigurationError,
>,
> {
let handle = self.handle.clone();
let operation = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
Ok(crate::operation::customize::CustomizableOperation { handle, operation })
}
/// Sends the request and returns the response.
///
/// If an error occurs, an `SdkError` will be returned with additional details that
/// can be matched against.
///
/// By default, any retryable failures will be retried twice. Retry behavior
/// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> std::result::Result<
crate::output::CreateVpcEndpointServiceConfigurationOutput,
aws_smithy_http::result::SdkError<
crate::error::CreateVpcEndpointServiceConfigurationError,
>,
> {
let op = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&self.handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
self.handle.client.call(op).await
}
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateVpcEndpointServiceConfigurationInput
.
source§impl CreateVpcEndpointServiceConfigurationInput
impl CreateVpcEndpointServiceConfigurationInput
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> Option<bool>
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 DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
sourcepub fn acceptance_required(&self) -> Option<bool>
pub fn acceptance_required(&self) -> Option<bool>
Indicates whether requests from service consumers to create an endpoint to your service must be accepted manually.
sourcepub fn private_dns_name(&self) -> Option<&str>
pub fn private_dns_name(&self) -> Option<&str>
(Interface endpoint configuration) The private DNS name to assign to the VPC endpoint service.
sourcepub fn network_load_balancer_arns(&self) -> Option<&[String]>
pub fn network_load_balancer_arns(&self) -> Option<&[String]>
The Amazon Resource Names (ARNs) of one or more Network Load Balancers for your service.
sourcepub fn gateway_load_balancer_arns(&self) -> Option<&[String]>
pub fn gateway_load_balancer_arns(&self) -> Option<&[String]>
The Amazon Resource Names (ARNs) of one or more Gateway Load Balancers.
sourcepub fn supported_ip_address_types(&self) -> Option<&[String]>
pub fn supported_ip_address_types(&self) -> Option<&[String]>
The supported IP address types. The possible values are ipv4
and ipv6
.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.
sourcepub fn tag_specifications(&self) -> Option<&[TagSpecification]>
pub fn tag_specifications(&self) -> Option<&[TagSpecification]>
The tags to associate with the service.
Trait Implementations§
source§impl Clone for CreateVpcEndpointServiceConfigurationInput
impl Clone for CreateVpcEndpointServiceConfigurationInput
source§fn clone(&self) -> CreateVpcEndpointServiceConfigurationInput
fn clone(&self) -> CreateVpcEndpointServiceConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more