#[non_exhaustive]pub struct ListConflictingAliasesInput {
pub distribution_id: Option<String>,
pub alias: Option<String>,
pub marker: Option<String>,
pub max_items: Option<i32>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.distribution_id: Option<String>The ID of a distribution in your account that has an attached SSL/TLS certificate that includes the provided alias.
alias: Option<String>The alias (also called a CNAME) to search for conflicting aliases.
marker: Option<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.
max_items: Option<i32>The maximum number of conflicting aliases that you want in the response.
Implementations§
source§impl ListConflictingAliasesInput
impl ListConflictingAliasesInput
sourcepub fn distribution_id(&self) -> Option<&str>
pub fn distribution_id(&self) -> Option<&str>
The ID of a distribution in your account that has an attached SSL/TLS certificate that includes the provided alias.
sourcepub fn alias(&self) -> Option<&str>
pub fn alias(&self) -> Option<&str>
The alias (also called a CNAME) to search for conflicting aliases.
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
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.
source§impl ListConflictingAliasesInput
impl ListConflictingAliasesInput
sourcepub fn builder() -> ListConflictingAliasesInputBuilder
pub fn builder() -> ListConflictingAliasesInputBuilder
Creates a new builder-style object to manufacture ListConflictingAliasesInput.
Trait Implementations§
source§impl Clone for ListConflictingAliasesInput
impl Clone for ListConflictingAliasesInput
source§fn clone(&self) -> ListConflictingAliasesInput
fn clone(&self) -> ListConflictingAliasesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListConflictingAliasesInput
impl Debug for ListConflictingAliasesInput
source§impl PartialEq for ListConflictingAliasesInput
impl PartialEq for ListConflictingAliasesInput
source§fn eq(&self, other: &ListConflictingAliasesInput) -> bool
fn eq(&self, other: &ListConflictingAliasesInput) -> bool
self and other values to be equal, and is used
by ==.