Struct aws_sdk_cloudfront::client::fluent_builders::AssociateAlias
source · [−]pub struct AssociateAlias { /* private fields */ }
Expand description
Fluent builder constructing a request to AssociateAlias
.
Associates an alias (also known as a CNAME or an alternate domain name) with a CloudFront distribution.
With this operation you can move an alias that’s already in use on a CloudFront distribution to a different distribution in one step. This prevents the downtime that could occur if you first remove the alias from one distribution and then separately add the alias to another distribution.
To use this operation to associate an alias with a distribution, you provide the alias and the ID of the target distribution for the alias. For more information, including how to set up the target distribution, prerequisites that you must complete, and other restrictions, see Moving an alternate domain name to a different distribution in the Amazon CloudFront Developer Guide.
Implementations
sourceimpl AssociateAlias
impl AssociateAlias
sourcepub async fn send(
self
) -> Result<AssociateAliasOutput, SdkError<AssociateAliasError>>
pub async fn send(
self
) -> Result<AssociateAliasOutput, SdkError<AssociateAliasError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn target_distribution_id(self, input: impl Into<String>) -> Self
pub fn target_distribution_id(self, input: impl Into<String>) -> Self
The ID of the distribution that you’re associating the alias with.
sourcepub fn set_target_distribution_id(self, input: Option<String>) -> Self
pub fn set_target_distribution_id(self, input: Option<String>) -> Self
The ID of the distribution that you’re associating the alias with.
Trait Implementations
sourceimpl Clone for AssociateAlias
impl Clone for AssociateAlias
sourcefn clone(&self) -> AssociateAlias
fn clone(&self) -> AssociateAlias
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl !RefUnwindSafe for AssociateAlias
impl Send for AssociateAlias
impl Sync for AssociateAlias
impl Unpin for AssociateAlias
impl !UnwindSafe for AssociateAlias
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more