Class: Aws::CloudFront::Types::Aliases
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::Aliases
- Defined in:
- gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb
Overview
A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#items ⇒ Array<String>
A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.
-
#quantity ⇒ Integer
The number of CNAME aliases, if any, that you want to associate with this distribution.
Instance Attribute Details
#items ⇒ Array<String>
A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.
154 155 156 157 158 159 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 154 class Aliases < Struct.new( :quantity, :items) SENSITIVE = [] include Aws::Structure end |