Struct aws_sdk_cloudfront::operation::create_key_group::builders::CreateKeyGroupFluentBuilder
source · pub struct CreateKeyGroupFluentBuilder { /* 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 CreateKeyGroupFluentBuilder
impl CreateKeyGroupFluentBuilder
sourcepub fn as_input(&self) -> &CreateKeyGroupInputBuilder
pub fn as_input(&self) -> &CreateKeyGroupInputBuilder
Access the CreateKeyGroup as a reference.
sourcepub async fn send(
self
) -> Result<CreateKeyGroupOutput, SdkError<CreateKeyGroupError, HttpResponse>>
pub async fn send( self ) -> Result<CreateKeyGroupOutput, SdkError<CreateKeyGroupError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<CreateKeyGroupOutput, CreateKeyGroupError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateKeyGroupOutput, CreateKeyGroupError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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.
sourcepub fn get_key_group_config(&self) -> &Option<KeyGroupConfig>
pub fn get_key_group_config(&self) -> &Option<KeyGroupConfig>
A key group configuration.
Trait Implementations§
source§impl Clone for CreateKeyGroupFluentBuilder
impl Clone for CreateKeyGroupFluentBuilder
source§fn clone(&self) -> CreateKeyGroupFluentBuilder
fn clone(&self) -> CreateKeyGroupFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more