Class: Aws::ACM::Types::HttpRedirect
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACM::Types::HttpRedirect
- Defined in:
- gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb
Overview
Contains information for HTTP-based domain validation of certificates
requested through Amazon CloudFront and issued by ACM. This field
exists only when the certificate type is AMAZON_ISSUED
and the
validation method is HTTP
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#redirect_from ⇒ String
The URL including the domain to be validated.
-
#redirect_to ⇒ String
The URL hosting the validation token.
Instance Attribute Details
#redirect_from ⇒ String
The URL including the domain to be validated. The certificate
authority sends GET
requests here during validation.
911 912 913 914 915 916 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 911 class HttpRedirect < Struct.new( :redirect_from, :redirect_to) SENSITIVE = [] include Aws::Structure end |
#redirect_to ⇒ String
The URL hosting the validation token. RedirectFrom
must return
this content or redirect here.
911 912 913 914 915 916 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 911 class HttpRedirect < Struct.new( :redirect_from, :redirect_to) SENSITIVE = [] include Aws::Structure end |