Class: Aws::EC2::Types::DisableVgwRoutePropagationRequest

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 DisableVgwRoutePropagationRequest data as a hash:

{
  gateway_id: "String", # required
  route_table_id: "String", # required
}

Contains the parameters for DisableVgwRoutePropagation.

Instance Attribute Summary collapse

Instance Attribute Details

#gateway_idString

The ID of the virtual private gateway.

Returns:

  • (String)


17787
17788
17789
17790
17791
# File 'lib/aws-sdk-ec2/types.rb', line 17787

class DisableVgwRoutePropagationRequest < Struct.new(
  :gateway_id,
  :route_table_id)
  include Aws::Structure
end

#route_table_idString

The ID of the route table.

Returns:

  • (String)


17787
17788
17789
17790
17791
# File 'lib/aws-sdk-ec2/types.rb', line 17787

class DisableVgwRoutePropagationRequest < Struct.new(
  :gateway_id,
  :route_table_id)
  include Aws::Structure
end