Struct aws_sdk_cloudfront::operation::create_function::builders::CreateFunctionFluentBuilder
source · pub struct CreateFunctionFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateFunction
.
Creates a CloudFront function.
To create a function, you provide the function code and some configuration information about the function. The response contains an Amazon Resource Name (ARN) that uniquely identifies the function.
When you create a function, it's in the DEVELOPMENT
stage. In this stage, you can test the function with TestFunction
, and update it with UpdateFunction
.
When you're ready to use your function with a CloudFront distribution, use PublishFunction
to copy the function from the DEVELOPMENT
stage to LIVE
. When it's live, you can attach the function to a distribution's cache behavior, using the function's ARN.
Implementations§
source§impl CreateFunctionFluentBuilder
impl CreateFunctionFluentBuilder
sourcepub fn as_input(&self) -> &CreateFunctionInputBuilder
pub fn as_input(&self) -> &CreateFunctionInputBuilder
Access the CreateFunction as a reference.
sourcepub async fn send(
self
) -> Result<CreateFunctionOutput, SdkError<CreateFunctionError, HttpResponse>>
pub async fn send( self ) -> Result<CreateFunctionOutput, SdkError<CreateFunctionError, 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<CreateFunctionOutput, CreateFunctionError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateFunctionOutput, CreateFunctionError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn function_config(self, input: FunctionConfig) -> Self
pub fn function_config(self, input: FunctionConfig) -> Self
Configuration information about the function, including an optional comment and the function's runtime.
sourcepub fn set_function_config(self, input: Option<FunctionConfig>) -> Self
pub fn set_function_config(self, input: Option<FunctionConfig>) -> Self
Configuration information about the function, including an optional comment and the function's runtime.
sourcepub fn get_function_config(&self) -> &Option<FunctionConfig>
pub fn get_function_config(&self) -> &Option<FunctionConfig>
Configuration information about the function, including an optional comment and the function's runtime.
sourcepub fn function_code(self, input: Blob) -> Self
pub fn function_code(self, input: Blob) -> Self
The function code. For more information about writing a CloudFront function, see Writing function code for CloudFront Functions in the Amazon CloudFront Developer Guide.
sourcepub fn set_function_code(self, input: Option<Blob>) -> Self
pub fn set_function_code(self, input: Option<Blob>) -> Self
The function code. For more information about writing a CloudFront function, see Writing function code for CloudFront Functions in the Amazon CloudFront Developer Guide.
sourcepub fn get_function_code(&self) -> &Option<Blob>
pub fn get_function_code(&self) -> &Option<Blob>
The function code. For more information about writing a CloudFront function, see Writing function code for CloudFront Functions in the Amazon CloudFront Developer Guide.
Trait Implementations§
source§impl Clone for CreateFunctionFluentBuilder
impl Clone for CreateFunctionFluentBuilder
source§fn clone(&self) -> CreateFunctionFluentBuilder
fn clone(&self) -> CreateFunctionFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for CreateFunctionFluentBuilder
impl !RefUnwindSafe for CreateFunctionFluentBuilder
impl Send for CreateFunctionFluentBuilder
impl Sync for CreateFunctionFluentBuilder
impl Unpin for CreateFunctionFluentBuilder
impl !UnwindSafe for CreateFunctionFluentBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more