Class: Aws::Amplify::Types::CustomRule

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

Overview

Describes a custom rewrite or redirect rule.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#conditionString

The condition for a URL rewrite or redirect rule, such as a country code.

Returns:

  • (String)


1117
1118
1119
1120
1121
1122
1123
1124
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1117

class CustomRule < Struct.new(
  :source,
  :target,
  :status,
  :condition)
  SENSITIVE = []
  include Aws::Structure
end

#sourceString

The source pattern for a URL rewrite or redirect rule.

Returns:

  • (String)


1117
1118
1119
1120
1121
1122
1123
1124
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1117

class CustomRule < Struct.new(
  :source,
  :target,
  :status,
  :condition)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

The status code for a URL rewrite or redirect rule.

200

Represents a 200 rewrite rule.

301

Represents a 301 (moved permanently) redirect rule. This and all future requests should be directed to the target URL.

302

Represents a 302 temporary redirect rule.

404

Represents a 404 redirect rule.

404-200

Represents a 404 rewrite rule.

Returns:

  • (String)


1117
1118
1119
1120
1121
1122
1123
1124
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1117

class CustomRule < Struct.new(
  :source,
  :target,
  :status,
  :condition)
  SENSITIVE = []
  include Aws::Structure
end

#targetString

The target pattern for a URL rewrite or redirect rule.

Returns:

  • (String)


1117
1118
1119
1120
1121
1122
1123
1124
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1117

class CustomRule < Struct.new(
  :source,
  :target,
  :status,
  :condition)
  SENSITIVE = []
  include Aws::Structure
end