Class: Aws::EC2::Types::DescribeVpcEndpointConnectionNotificationsRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass DescribeVpcEndpointConnectionNotificationsRequest data as a hash:

{
  dry_run: false,
  connection_notification_id: "String",
  filters: [
    {
      name: "String",
      values: ["String"],
    },
  ],
  max_results: 1,
  next_token: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#connection_notification_idString

The ID of the notification.

Returns:

  • (String)


16613
16614
16615
16616
16617
16618
16619
16620
# File 'lib/aws-sdk-ec2/types.rb', line 16613

class DescribeVpcEndpointConnectionNotificationsRequest < Struct.new(
  :dry_run,
  :connection_notification_id,
  :filters,
  :max_results,
  :next_token)
  include Aws::Structure
end

#dry_runBoolean

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`.

Returns:

  • (Boolean)


16613
16614
16615
16616
16617
16618
16619
16620
# File 'lib/aws-sdk-ec2/types.rb', line 16613

class DescribeVpcEndpointConnectionNotificationsRequest < Struct.new(
  :dry_run,
  :connection_notification_id,
  :filters,
  :max_results,
  :next_token)
  include Aws::Structure
end

#filtersArray<Types::Filter>

One or more filters.

  • ‘connection-notification-arn` - The ARN of SNS topic for the notification.

  • ‘connection-notification-id` - The ID of the notification.

  • ‘connection-notification-state` - The state of the notification (`Enabled` | `Disabled`).

  • ‘connection-notification-type` - The type of notification (`Topic`).

  • ‘service-id` - The ID of the endpoint service.

  • ‘vpc-endpoint-id` - The ID of the VPC endpoint.

Returns:



16613
16614
16615
16616
16617
16618
16619
16620
# File 'lib/aws-sdk-ec2/types.rb', line 16613

class DescribeVpcEndpointConnectionNotificationsRequest < Struct.new(
  :dry_run,
  :connection_notification_id,
  :filters,
  :max_results,
  :next_token)
  include Aws::Structure
end

#max_resultsInteger

The maximum number of results to return in a single call. To retrieve the remaining results, make another request with the returned ‘NextToken` value.

Returns:

  • (Integer)


16613
16614
16615
16616
16617
16618
16619
16620
# File 'lib/aws-sdk-ec2/types.rb', line 16613

class DescribeVpcEndpointConnectionNotificationsRequest < Struct.new(
  :dry_run,
  :connection_notification_id,
  :filters,
  :max_results,
  :next_token)
  include Aws::Structure
end

#next_tokenString

The token to request the next page of results.

Returns:

  • (String)


16613
16614
16615
16616
16617
16618
16619
16620
# File 'lib/aws-sdk-ec2/types.rb', line 16613

class DescribeVpcEndpointConnectionNotificationsRequest < Struct.new(
  :dry_run,
  :connection_notification_id,
  :filters,
  :max_results,
  :next_token)
  include Aws::Structure
end