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§
source§impl AssociateAlias
impl AssociateAlias
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<AssociateAlias, AwsResponseRetryClassifier>, SdkError<AssociateAliasError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<AssociateAlias, AwsResponseRetryClassifier>, SdkError<AssociateAliasError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
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§
source§impl Clone for AssociateAlias
impl Clone for AssociateAlias
source§fn clone(&self) -> AssociateAlias
fn clone(&self) -> AssociateAlias
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more