pub struct RejectVpcEndpointConnectionsRequest {
pub dry_run: Option<bool>,
pub service_id: String,
pub vpc_endpoint_ids: Vec<String>,
}Fields§
§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.
service_id: StringThe ID of the service.
vpc_endpoint_ids: Vec<String>The IDs of one or more VPC endpoints.
Trait Implementations§
Source§impl Clone for RejectVpcEndpointConnectionsRequest
impl Clone for RejectVpcEndpointConnectionsRequest
Source§fn clone(&self) -> RejectVpcEndpointConnectionsRequest
fn clone(&self) -> RejectVpcEndpointConnectionsRequest
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 RejectVpcEndpointConnectionsRequest
impl Default for RejectVpcEndpointConnectionsRequest
Source§fn default() -> RejectVpcEndpointConnectionsRequest
fn default() -> RejectVpcEndpointConnectionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for RejectVpcEndpointConnectionsRequest
impl PartialEq for RejectVpcEndpointConnectionsRequest
Source§fn eq(&self, other: &RejectVpcEndpointConnectionsRequest) -> bool
fn eq(&self, other: &RejectVpcEndpointConnectionsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RejectVpcEndpointConnectionsRequest
Auto Trait Implementations§
impl Freeze for RejectVpcEndpointConnectionsRequest
impl RefUnwindSafe for RejectVpcEndpointConnectionsRequest
impl Send for RejectVpcEndpointConnectionsRequest
impl Sync for RejectVpcEndpointConnectionsRequest
impl Unpin for RejectVpcEndpointConnectionsRequest
impl UnwindSafe for RejectVpcEndpointConnectionsRequest
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