Class: Aws::MigrationHubRefactorSpaces::Types::UriPathRouteInput

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

Overview

The configuration for the URI path route type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#activation_stateString

If set to ACTIVE, traffic is forwarded to this route’s service after the route is created.

Returns:

  • (String)


2427
2428
2429
2430
2431
2432
2433
2434
2435
# File 'gems/aws-sdk-migrationhubrefactorspaces/lib/aws-sdk-migrationhubrefactorspaces/types.rb', line 2427

class UriPathRouteInput < Struct.new(
  :activation_state,
  :append_source_path,
  :include_child_paths,
  :methods,
  :source_path)
  SENSITIVE = []
  include Aws::Structure
end

#append_source_pathBoolean

If set to true, this option appends the source path to the service URL endpoint.

Returns:

  • (Boolean)


2427
2428
2429
2430
2431
2432
2433
2434
2435
# File 'gems/aws-sdk-migrationhubrefactorspaces/lib/aws-sdk-migrationhubrefactorspaces/types.rb', line 2427

class UriPathRouteInput < Struct.new(
  :activation_state,
  :append_source_path,
  :include_child_paths,
  :methods,
  :source_path)
  SENSITIVE = []
  include Aws::Structure
end

#include_child_pathsBoolean

Indicates whether to match all subpaths of the given source path. If this value is false, requests must match the source path exactly before they are forwarded to this route's service.

Returns:

  • (Boolean)


2427
2428
2429
2430
2431
2432
2433
2434
2435
# File 'gems/aws-sdk-migrationhubrefactorspaces/lib/aws-sdk-migrationhubrefactorspaces/types.rb', line 2427

class UriPathRouteInput < Struct.new(
  :activation_state,
  :append_source_path,
  :include_child_paths,
  :methods,
  :source_path)
  SENSITIVE = []
  include Aws::Structure
end

#methodsArray<String>

A list of HTTP methods to match. An empty list matches all values. If a method is present, only HTTP requests using that method are forwarded to this route’s service.

Returns:

  • (Array<String>)


2427
2428
2429
2430
2431
2432
2433
2434
2435
# File 'gems/aws-sdk-migrationhubrefactorspaces/lib/aws-sdk-migrationhubrefactorspaces/types.rb', line 2427

class UriPathRouteInput < Struct.new(
  :activation_state,
  :append_source_path,
  :include_child_paths,
  :methods,
  :source_path)
  SENSITIVE = []
  include Aws::Structure
end

#source_pathString

This is the path that Refactor Spaces uses to match traffic. Paths must start with / and are relative to the base of the application. To use path parameters in the source path, add a variable in curly braces. For example, the resource path {user\} represents a path parameter called 'user'.

Returns:

  • (String)


2427
2428
2429
2430
2431
2432
2433
2434
2435
# File 'gems/aws-sdk-migrationhubrefactorspaces/lib/aws-sdk-migrationhubrefactorspaces/types.rb', line 2427

class UriPathRouteInput < Struct.new(
  :activation_state,
  :append_source_path,
  :include_child_paths,
  :methods,
  :source_path)
  SENSITIVE = []
  include Aws::Structure
end