Struct rusoto_ec2::ModifyVpcEndpointConnectionNotificationRequest[][src]

pub struct ModifyVpcEndpointConnectionNotificationRequest {
    pub connection_events: Option<Vec<String>>,
    pub connection_notification_arn: Option<String>,
    pub connection_notification_id: String,
    pub dry_run: Option<bool>,
}

Fields

One or more events for the endpoint. Valid values are Accept, Connect, Delete, and Reject.

The ARN for the SNS topic for the notification.

The ID of the notification.

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.

Trait Implementations

impl Default for ModifyVpcEndpointConnectionNotificationRequest
[src]

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

impl Debug for ModifyVpcEndpointConnectionNotificationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ModifyVpcEndpointConnectionNotificationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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