pub struct CreateVpcEndpointServiceConfigurationRequest {
pub acceptance_required: Option<bool>,
pub client_token: Option<String>,
pub dry_run: Option<bool>,
pub network_load_balancer_arns: Vec<String>,
pub private_dns_name: Option<String>,
pub tag_specifications: Option<Vec<TagSpecification>>,
}Fields§
§acceptance_required: Option<bool>Indicates whether requests from service consumers to create an endpoint to your service must be accepted. To accept a request, use AcceptVpcEndpointConnections.
client_token: Option<String>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.
dry_run: 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.
network_load_balancer_arns: Vec<String>The Amazon Resource Names (ARNs) of one or more Network Load Balancers for your service.
private_dns_name: Option<String>The private DNS name to assign to the VPC endpoint service.
tag_specifications: Option<Vec<TagSpecification>>The tags to associate with the service.
Trait Implementations§
Source§impl Clone for CreateVpcEndpointServiceConfigurationRequest
impl Clone for CreateVpcEndpointServiceConfigurationRequest
Source§fn clone(&self) -> CreateVpcEndpointServiceConfigurationRequest
fn clone(&self) -> CreateVpcEndpointServiceConfigurationRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for CreateVpcEndpointServiceConfigurationRequest
impl Default for CreateVpcEndpointServiceConfigurationRequest
Source§fn default() -> CreateVpcEndpointServiceConfigurationRequest
fn default() -> CreateVpcEndpointServiceConfigurationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateVpcEndpointServiceConfigurationRequest
impl PartialEq for CreateVpcEndpointServiceConfigurationRequest
Source§fn eq(&self, other: &CreateVpcEndpointServiceConfigurationRequest) -> bool
fn eq(&self, other: &CreateVpcEndpointServiceConfigurationRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateVpcEndpointServiceConfigurationRequest
Auto Trait Implementations§
impl Freeze for CreateVpcEndpointServiceConfigurationRequest
impl RefUnwindSafe for CreateVpcEndpointServiceConfigurationRequest
impl Send for CreateVpcEndpointServiceConfigurationRequest
impl Sync for CreateVpcEndpointServiceConfigurationRequest
impl Unpin for CreateVpcEndpointServiceConfigurationRequest
impl UnwindSafe for CreateVpcEndpointServiceConfigurationRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more