Struct rusoto_ec2::CreateVpcEndpointConnectionNotificationRequest[][src]

pub struct CreateVpcEndpointConnectionNotificationRequest {
    pub client_token: Option<String>,
    pub connection_events: Vec<String>,
    pub connection_notification_arn: String,
    pub dry_run: Option<bool>,
    pub service_id: Option<String>,
    pub vpc_endpoint_id: Option<String>,
}

Fields

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

One or more endpoint events for which to receive notifications. Valid values are Accept, Connect, Delete, and Reject.

The ARN of the SNS topic for the notifications.

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 ID of the endpoint service.

The ID of the endpoint.

Trait Implementations

impl Default for CreateVpcEndpointConnectionNotificationRequest
[src]

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

impl Debug for CreateVpcEndpointConnectionNotificationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateVpcEndpointConnectionNotificationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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