Class: Aws::CloudFront::Types::ConflictingAlias
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::ConflictingAlias
- Defined in:
- gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb
Overview
An alias (also called a CNAME) and the CloudFront standard distribution and Amazon Web Services account ID that it's associated with. The standard distribution and account IDs are partially hidden, which allows you to identify the standard distributions and accounts that you own, and helps to protect the information of ones that you don't own.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The (partially hidden) ID of the Amazon Web Services account that owns the standard distribution that's associated with the alias.
-
#alias ⇒ String
An alias (also called a CNAME).
-
#distribution_id ⇒ String
The (partially hidden) ID of the CloudFront standard distribution associated with the alias.
Instance Attribute Details
#account_id ⇒ String
The (partially hidden) ID of the Amazon Web Services account that owns the standard distribution that's associated with the alias.
1652 1653 1654 1655 1656 1657 1658 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 1652 class ConflictingAlias < Struct.new( :alias, :distribution_id, :account_id) SENSITIVE = [] include Aws::Structure end |
#alias ⇒ String
An alias (also called a CNAME).
1652 1653 1654 1655 1656 1657 1658 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 1652 class ConflictingAlias < Struct.new( :alias, :distribution_id, :account_id) SENSITIVE = [] include Aws::Structure end |
#distribution_id ⇒ String
The (partially hidden) ID of the CloudFront standard distribution associated with the alias.
1652 1653 1654 1655 1656 1657 1658 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 1652 class ConflictingAlias < Struct.new( :alias, :distribution_id, :account_id) SENSITIVE = [] include Aws::Structure end |