Class: Aws::CloudFront::Types::ListConflictingAliasesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::ListConflictingAliasesRequest
- Defined in:
- gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb
Overview
When making an API call, you may pass ListConflictingAliasesRequest data as a hash:
{
distribution_id: "distributionIdString", # required
alias: "aliasString", # required
marker: "string",
max_items: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alias ⇒ String
The alias (also called a CNAME) to search for conflicting aliases.
-
#distribution_id ⇒ String
The ID of a distribution in your account that has an attached SSL/TLS certificate that includes the provided alias.
-
#marker ⇒ String
Use this field when paginating results to indicate where to begin in the list of conflicting aliases.
-
#max_items ⇒ Integer
The maximum number of conflicting aliases that you want in the response.
Instance Attribute Details
#alias ⇒ String
The alias (also called a CNAME) to search for conflicting aliases.
8551 8552 8553 8554 8555 8556 8557 8558 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 8551 class ListConflictingAliasesRequest < Struct.new( :distribution_id, :alias, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#distribution_id ⇒ String
The ID of a distribution in your account that has an attached SSL/TLS certificate that includes the provided alias.
8551 8552 8553 8554 8555 8556 8557 8558 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 8551 class ListConflictingAliasesRequest < Struct.new( :distribution_id, :alias, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
Use this field when paginating results to indicate where to begin in
the list of conflicting aliases. The response includes conflicting
aliases in the list that occur after the marker. To get the next
page of the list, set this field’s value to the value of
NextMarker
from the current page’s response.
8551 8552 8553 8554 8555 8556 8557 8558 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 8551 class ListConflictingAliasesRequest < Struct.new( :distribution_id, :alias, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#max_items ⇒ Integer
The maximum number of conflicting aliases that you want in the response.
8551 8552 8553 8554 8555 8556 8557 8558 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 8551 class ListConflictingAliasesRequest < Struct.new( :distribution_id, :alias, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |