Class: Aws::EC2::Route

Inherits:
Object
  • Object
show all
Extended by:
Deprecations
Defined in:
lib/aws-sdk-ec2/route.rb

Defined Under Namespace

Classes: Collection

Read-Only Attributes collapse

Actions collapse

Associations collapse

Instance Method Summary collapse

Constructor Details

#initialize(route_table_id, destination_cidr_block, options = {}) ⇒ Route #initialize(options = {}) ⇒ Route

Returns a new instance of Route.

Overloads:

  • #initialize(route_table_id, destination_cidr_block, options = {}) ⇒ Route

    Parameters:

    • route_table_id (String)
    • destination_cidr_block (String)

    Options Hash (options):

  • #initialize(options = {}) ⇒ Route

    Options Hash (options):

    • :route_table_id (required, String)
    • :destination_cidr_block (required, String)
    • :client (Client)


21
22
23
24
25
26
27
# File 'lib/aws-sdk-ec2/route.rb', line 21

def initialize(*args)
  options = Hash === args.last ? args.pop.dup : {}
  @route_table_id = extract_route_table_id(args, options)
  @destination_cidr_block = extract_destination_cidr_block(args, options)
  @data = options.delete(:data)
  @client = options.delete(:client) || Client.new(options)
end

Instance Method Details

#clientClient

Returns:



127
128
129
# File 'lib/aws-sdk-ec2/route.rb', line 127

def client
  @client
end

#dataTypes::Route

Returns the data for this Aws::EC2::Route.

Returns:

Raises:

  • (NotImplementedError)

    Raises when #data_loaded? is ‘false`.



142
143
144
145
# File 'lib/aws-sdk-ec2/route.rb', line 142

def data
  load unless @data
  @data
end

#data_loaded?Boolean

Returns ‘true` if this resource is loaded. Accessing attributes or #data on an unloaded resource will trigger a call to #load.

Returns:

  • (Boolean)

    Returns ‘true` if this resource is loaded. Accessing attributes or #data on an unloaded resource will trigger a call to #load.



150
151
152
# File 'lib/aws-sdk-ec2/route.rb', line 150

def data_loaded?
  !!@data
end

#delete(options = {}) ⇒ EmptyStructure

Examples:

Request syntax with placeholder values


route.delete({
  destination_ipv_6_cidr_block: "String",
  dry_run: false,
})

Parameters:

  • options (Hash) (defaults to: {})

    ({})

Options Hash (options):

  • :destination_ipv_6_cidr_block (String)

    The IPv6 CIDR range for the route. The value you specify must match the CIDR for the route exactly.

  • :dry_run (Boolean)

    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:

  • (EmptyStructure)


267
268
269
270
271
272
273
274
# File 'lib/aws-sdk-ec2/route.rb', line 267

def delete(options = {})
  options = options.merge(
    route_table_id: @route_table_id,
    destination_cidr_block: @destination_cidr_block
  )
  resp = @client.delete_route(options)
  resp.data
end

#destination_cidr_blockString

Returns:

  • (String)


37
38
39
# File 'lib/aws-sdk-ec2/route.rb', line 37

def destination_cidr_block
  @destination_cidr_block
end

#destination_ipv_6_cidr_blockString

The IPv6 CIDR block used for the destination match.

Returns:

  • (String)


43
44
45
# File 'lib/aws-sdk-ec2/route.rb', line 43

def destination_ipv_6_cidr_block
  data[:destination_ipv_6_cidr_block]
end

#destination_prefix_list_idString

The prefix of the AWS service.

Returns:

  • (String)


49
50
51
# File 'lib/aws-sdk-ec2/route.rb', line 49

def destination_prefix_list_id
  data[:destination_prefix_list_id]
end

#egress_only_internet_gateway_idString

The ID of the egress-only internet gateway.

Returns:

  • (String)


55
56
57
# File 'lib/aws-sdk-ec2/route.rb', line 55

def egress_only_internet_gateway_id
  data[:egress_only_internet_gateway_id]
end

#gateway_idString

The ID of a gateway attached to your VPC.

Returns:

  • (String)


61
62
63
# File 'lib/aws-sdk-ec2/route.rb', line 61

def gateway_id
  data[:gateway_id]
end

#identifiersObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Deprecated.


335
336
337
338
339
340
# File 'lib/aws-sdk-ec2/route.rb', line 335

def identifiers
  {
    route_table_id: @route_table_id,
    destination_cidr_block: @destination_cidr_block
  }
end

#instance_idString

The ID of a NAT instance in your VPC.

Returns:

  • (String)


67
68
69
# File 'lib/aws-sdk-ec2/route.rb', line 67

def instance_id
  data[:instance_id]
end

#instance_owner_idString

The AWS account ID of the owner of the instance.

Returns:

  • (String)


73
74
75
# File 'lib/aws-sdk-ec2/route.rb', line 73

def instance_owner_id
  data[:instance_owner_id]
end

#loadObject Also known as: reload

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Raises:

  • (NotImplementedError)


133
134
135
136
# File 'lib/aws-sdk-ec2/route.rb', line 133

def load
  msg = "#load is not implemented, data only available via enumeration"
  raise NotImplementedError, msg
end

#nat_gateway_idString

The ID of a NAT gateway.

Returns:

  • (String)


79
80
81
# File 'lib/aws-sdk-ec2/route.rb', line 79

def nat_gateway_id
  data[:nat_gateway_id]
end

#network_interface_idString

The ID of the network interface.

Returns:

  • (String)


91
92
93
# File 'lib/aws-sdk-ec2/route.rb', line 91

def network_interface_id
  data[:network_interface_id]
end

#originString

Describes how the route was created.

  • ‘CreateRouteTable` - The route was automatically created when the route table was created.

  • ‘CreateRoute` - The route was manually added to the route table.

  • ‘EnableVgwRoutePropagation` - The route was propagated by route propagation.

Returns:

  • (String)


105
106
107
# File 'lib/aws-sdk-ec2/route.rb', line 105

def origin
  data[:origin]
end

#replace(options = {}) ⇒ EmptyStructure

Examples:

Request syntax with placeholder values


route.replace({
  destination_ipv_6_cidr_block: "String",
  dry_run: false,
  egress_only_internet_gateway_id: "String",
  gateway_id: "String",
  instance_id: "String",
  nat_gateway_id: "String",
  transit_gateway_id: "String",
  network_interface_id: "String",
  vpc_peering_connection_id: "String",
})

Parameters:

  • options (Hash) (defaults to: {})

    ({})

Options Hash (options):

  • :destination_ipv_6_cidr_block (String)

    The IPv6 CIDR address block used for the destination match. The value that you provide must match the CIDR of an existing route in the table.

  • :dry_run (Boolean)

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

  • :egress_only_internet_gateway_id (String)

    [IPv6 traffic only] The ID of an egress-only internet gateway.

  • :gateway_id (String)

    The ID of an internet gateway or virtual private gateway.

  • :instance_id (String)

    The ID of a NAT instance in your VPC.

  • :nat_gateway_id (String)

    [IPv4 traffic only] The ID of a NAT gateway.

  • :transit_gateway_id (String)

    The ID of a transit gateway.

  • :network_interface_id (String)

    The ID of a network interface.

  • :vpc_peering_connection_id (String)

    The ID of a VPC peering connection.

Returns:

  • (EmptyStructure)


314
315
316
317
318
319
320
321
# File 'lib/aws-sdk-ec2/route.rb', line 314

def replace(options = {})
  options = options.merge(
    route_table_id: @route_table_id,
    destination_cidr_block: @destination_cidr_block
  )
  resp = @client.replace_route(options)
  resp.data
end

#route_tableRouteTable

Returns:



326
327
328
329
330
331
# File 'lib/aws-sdk-ec2/route.rb', line 326

def route_table
  RouteTable.new(
    id: @route_table_id,
    client: @client
  )
end

#route_table_idString

Returns:

  • (String)


32
33
34
# File 'lib/aws-sdk-ec2/route.rb', line 32

def route_table_id
  @route_table_id
end

#stateString

The state of the route. The ‘blackhole` state indicates that the route’s target isn’t available (for example, the specified gateway isn’t attached to the VPC, or the specified NAT instance has been terminated).

Returns:

  • (String)


114
115
116
# File 'lib/aws-sdk-ec2/route.rb', line 114

def state
  data[:state]
end

#transit_gateway_idString

The ID of a transit gateway.

Returns:

  • (String)


85
86
87
# File 'lib/aws-sdk-ec2/route.rb', line 85

def transit_gateway_id
  data[:transit_gateway_id]
end

#vpc_peering_connection_idString

The ID of a VPC peering connection.

Returns:

  • (String)


120
121
122
# File 'lib/aws-sdk-ec2/route.rb', line 120

def vpc_peering_connection_id
  data[:vpc_peering_connection_id]
end

#wait_until(options = {}, &block) ⇒ Resource

Deprecated.

Use [Aws::EC2::Client] #wait_until instead

Note:

The waiting operation is performed on a copy. The original resource remains unchanged

Waiter polls an API operation until a resource enters a desired state.

## Basic Usage

Waiter will polls until it is successful, it fails by entering a terminal state, or until a maximum number of attempts are made.

# polls in a loop until condition is true
resource.wait_until(options) {|resource| condition}

## Example

instance.wait_until(max_attempts:10, delay:5) {|instance| instance.state.name == 'running' }

## Configuration

You can configure the maximum number of polling attempts, and the delay (in seconds) between each polling attempt. The waiting condition is set by passing a block to #wait_until:

# poll for ~25 seconds
resource.wait_until(max_attempts:5,delay:5) {|resource|...}

## Callbacks

You can be notified before each polling attempt and before each delay. If you throw ‘:success` or `:failure` from these callbacks, it will terminate the waiter.

started_at = Time.now
# poll for 1 hour, instead of a number of attempts
proc = Proc.new do |attempts, response|
  throw :failure if Time.now - started_at > 3600
end

  # disable max attempts
instance.wait_until(before_wait:proc, max_attempts:nil) {...}

## Handling Errors

When a waiter is successful, it returns the Resource. When a waiter fails, it raises an error.

begin
  resource.wait_until(...)
rescue Aws::Waiters::Errors::WaiterFailed
  # resource did not enter the desired state in time
end

attempts attempt in seconds invoked before each attempt invoked before each wait

Parameters:

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • :max_attempts (Integer) — default: 10

    Maximum number of

  • :delay (Integer) — default: 10

    Delay between each

  • :before_attempt (Proc) — default: nil

    Callback

  • :before_wait (Proc) — default: nil

    Callback

Returns:

  • (Resource)

    if the waiter was successful

Raises:

  • (Aws::Waiters::Errors::FailureStateError)

    Raised when the waiter terminates because the waiter has entered a state that it will not transition out of, preventing success.

    yet successful.

  • (Aws::Waiters::Errors::UnexpectedError)

    Raised when an error is encountered while polling for a resource that is not expected.

  • (NotImplementedError)

    Raised when the resource does not



232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
# File 'lib/aws-sdk-ec2/route.rb', line 232

def wait_until(options = {}, &block)
  self_copy = self.dup
  attempts = 0
  options[:max_attempts] = 10 unless options.key?(:max_attempts)
  options[:delay] ||= 10
  options[:poller] = Proc.new do
    attempts += 1
    if block.call(self_copy)
      [:success, self_copy]
    else
      self_copy.reload unless attempts == options[:max_attempts]
      :retry
    end
  end
  Aws::Waiters::Waiter.new(options).wait({})
end