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]

[src]

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

impl Debug for ModifyVpcEndpointServiceConfigurationRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ModifyVpcEndpointServiceConfigurationRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations