Class: Aws::EC2::Types::ExportTransitGatewayRoutesRequest

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

{
  transit_gateway_route_table_id: "String", # required
  filters: [
    {
      name: "String",
      values: ["String"],
    },
  ],
  s3_bucket: "String", # required
  dry_run: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#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)


19032
19033
19034
19035
19036
19037
19038
# File 'lib/aws-sdk-ec2/types.rb', line 19032

class ExportTransitGatewayRoutesRequest < Struct.new(
  :transit_gateway_route_table_id,
  :filters,
  :s3_bucket,
  :dry_run)
  include Aws::Structure
end

#filtersArray<Types::Filter>

One or more filters. The possible values are:

  • ‘transit-gateway-route-destination-cidr-block` - The CIDR range.

  • ‘transit-gateway-route-state` - The state of the route (`active` | `blackhole`).

  • ‘transit-gateway-route-transit-gateway-attachment-id` - The ID of the attachment.

  • ‘transit-gateway-route-type` - The route type (`static` | `propagated`).

  • ‘transit-gateway-route-vpn-connection-id` - The ID of the VPN connection.

Returns:



19032
19033
19034
19035
19036
19037
19038
# File 'lib/aws-sdk-ec2/types.rb', line 19032

class ExportTransitGatewayRoutesRequest < Struct.new(
  :transit_gateway_route_table_id,
  :filters,
  :s3_bucket,
  :dry_run)
  include Aws::Structure
end

#s3_bucketString

The name of the S3 bucket.

Returns:

  • (String)


19032
19033
19034
19035
19036
19037
19038
# File 'lib/aws-sdk-ec2/types.rb', line 19032

class ExportTransitGatewayRoutesRequest < Struct.new(
  :transit_gateway_route_table_id,
  :filters,
  :s3_bucket,
  :dry_run)
  include Aws::Structure
end

#transit_gateway_route_table_idString

The ID of the route table.

Returns:

  • (String)


19032
19033
19034
19035
19036
19037
19038
# File 'lib/aws-sdk-ec2/types.rb', line 19032

class ExportTransitGatewayRoutesRequest < Struct.new(
  :transit_gateway_route_table_id,
  :filters,
  :s3_bucket,
  :dry_run)
  include Aws::Structure
end