Struct rusoto_ec2::ModifyVpcEndpointServiceConfigurationRequest[][src]

pub struct ModifyVpcEndpointServiceConfigurationRequest {
    pub acceptance_required: Option<bool>,
    pub add_network_load_balancer_arns: Option<Vec<String>>,
    pub dry_run: Option<bool>,
    pub remove_network_load_balancer_arns: Option<Vec<String>>,
    pub service_id: String,
}

Fields

Indicate whether requests to create an endpoint to your service must be accepted.

The Amazon Resource Names (ARNs) of Network Load Balancers to add to your service configuration.

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 Network Load Balancers to remove from your service configuration.

The ID of the service.

Trait Implementations

impl Default for ModifyVpcEndpointServiceConfigurationRequest
[src]

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

impl Debug for ModifyVpcEndpointServiceConfigurationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ModifyVpcEndpointServiceConfigurationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ModifyVpcEndpointServiceConfigurationRequest
[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