Struct rusoto_ec2::CreateVpcEndpointServiceConfigurationRequest[][src]

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>,
}

Fields

Indicate whether requests from service consumers to create an endpoint to your service must be accepted. To accept a request, use AcceptVpcEndpointConnections.

Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.

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.

The Amazon Resource Names (ARNs) of one or more Network Load Balancers for your service.

Trait Implementations

impl Default for CreateVpcEndpointServiceConfigurationRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateVpcEndpointServiceConfigurationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateVpcEndpointServiceConfigurationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateVpcEndpointServiceConfigurationRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations