Class: Aws::ElasticLoadBalancingV2::Types::FixedResponseActionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::FixedResponseActionConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Information about an action that returns a custom HTTP response.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#content_type ⇒ String
The content type.
-
#message_body ⇒ String
The message.
-
#status_code ⇒ String
The HTTP response code (2XX, 4XX, or 5XX).
Instance Attribute Details
#content_type ⇒ String
The content type.
Valid Values: text/plain | text/css | text/html | application/javascript | application/json
1857 1858 1859 1860 1861 1862 1863 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 1857 class FixedResponseActionConfig < Struct.new( :message_body, :status_code, :content_type) SENSITIVE = [] include Aws::Structure end |
#message_body ⇒ String
The message.
1857 1858 1859 1860 1861 1862 1863 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 1857 class FixedResponseActionConfig < Struct.new( :message_body, :status_code, :content_type) SENSITIVE = [] include Aws::Structure end |
#status_code ⇒ String
The HTTP response code (2XX, 4XX, or 5XX).
1857 1858 1859 1860 1861 1862 1863 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 1857 class FixedResponseActionConfig < Struct.new( :message_body, :status_code, :content_type) SENSITIVE = [] include Aws::Structure end |