Class: Aws::AppRunner::Types::ListVpcIngressConnectionsFilter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb

Overview

Returns a list of VPC Ingress Connections based on the filter provided. It can return either ServiceArn or VpcEndpointId, or both.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#service_arnString

The Amazon Resource Name (ARN) of a service to filter by.

Returns:

  • (String)


2098
2099
2100
2101
2102
2103
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2098

class ListVpcIngressConnectionsFilter < Struct.new(
  :service_arn,
  :vpc_endpoint_id)
  SENSITIVE = []
  include Aws::Structure
end

#vpc_endpoint_idString

The ID of a VPC Endpoint to filter by.

Returns:

  • (String)


2098
2099
2100
2101
2102
2103
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2098

class ListVpcIngressConnectionsFilter < Struct.new(
  :service_arn,
  :vpc_endpoint_id)
  SENSITIVE = []
  include Aws::Structure
end