Struct aws_sdk_cloudfront::client::fluent_builders::CreateFunction
source · pub struct CreateFunction { /* 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 CreateFunction
impl CreateFunction
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateFunction, AwsResponseRetryClassifier>, SdkError<CreateFunctionError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateFunction, AwsResponseRetryClassifier>, SdkError<CreateFunctionError>>
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<CreateFunctionOutput, SdkError<CreateFunctionError>>
pub async fn send(
self
) -> Result<CreateFunctionOutput, SdkError<CreateFunctionError>>
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 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 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.
Trait Implementations§
source§impl Clone for CreateFunction
impl Clone for CreateFunction
source§fn clone(&self) -> CreateFunction
fn clone(&self) -> CreateFunction
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more