Struct aws_sdk_cloudfront::client::fluent_builders::CreateKeyGroup
source · pub struct CreateKeyGroup { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateKeyGroup
.
Creates a key group that you can use with CloudFront signed URLs and signed cookies.
To create a key group, you must specify at least one public key for the key group. After you create a key group, you can reference it from one or more cache behaviors. When you reference a key group in a cache behavior, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.
Implementations§
source§impl CreateKeyGroup
impl CreateKeyGroup
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateKeyGroup, AwsResponseRetryClassifier>, SdkError<CreateKeyGroupError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateKeyGroup, AwsResponseRetryClassifier>, SdkError<CreateKeyGroupError>>
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<CreateKeyGroupOutput, SdkError<CreateKeyGroupError>>
pub async fn send(
self
) -> Result<CreateKeyGroupOutput, SdkError<CreateKeyGroupError>>
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 key_group_config(self, input: KeyGroupConfig) -> Self
pub fn key_group_config(self, input: KeyGroupConfig) -> Self
A key group configuration.
sourcepub fn set_key_group_config(self, input: Option<KeyGroupConfig>) -> Self
pub fn set_key_group_config(self, input: Option<KeyGroupConfig>) -> Self
A key group configuration.
Trait Implementations§
source§impl Clone for CreateKeyGroup
impl Clone for CreateKeyGroup
source§fn clone(&self) -> CreateKeyGroup
fn clone(&self) -> CreateKeyGroup
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more