#[non_exhaustive]pub struct ObjectLambdaConfiguration { /* private fields */ }
Expand description
A configuration used when creating an Object Lambda Access Point.
Implementations§
source§impl ObjectLambdaConfiguration
impl ObjectLambdaConfiguration
sourcepub fn supporting_access_point(&self) -> Option<&str>
pub fn supporting_access_point(&self) -> Option<&str>
Standard access point associated with the Object Lambda Access Point.
sourcepub fn cloud_watch_metrics_enabled(&self) -> bool
pub fn cloud_watch_metrics_enabled(&self) -> bool
A container for whether the CloudWatch metrics configuration is enabled.
sourcepub fn allowed_features(&self) -> Option<&[ObjectLambdaAllowedFeature]>
pub fn allowed_features(&self) -> Option<&[ObjectLambdaAllowedFeature]>
A container for allowed features. Valid inputs are GetObject-Range
, GetObject-PartNumber
, HeadObject-Range
, and HeadObject-PartNumber
.
sourcepub fn transformation_configurations(
&self
) -> Option<&[ObjectLambdaTransformationConfiguration]>
pub fn transformation_configurations( &self ) -> Option<&[ObjectLambdaTransformationConfiguration]>
A container for transformation configurations for an Object Lambda Access Point.
source§impl ObjectLambdaConfiguration
impl ObjectLambdaConfiguration
sourcepub fn builder() -> ObjectLambdaConfigurationBuilder
pub fn builder() -> ObjectLambdaConfigurationBuilder
Creates a new builder-style object to manufacture ObjectLambdaConfiguration
.
Trait Implementations§
source§impl Clone for ObjectLambdaConfiguration
impl Clone for ObjectLambdaConfiguration
source§fn clone(&self) -> ObjectLambdaConfiguration
fn clone(&self) -> ObjectLambdaConfiguration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ObjectLambdaConfiguration
impl Debug for ObjectLambdaConfiguration
source§impl PartialEq<ObjectLambdaConfiguration> for ObjectLambdaConfiguration
impl PartialEq<ObjectLambdaConfiguration> for ObjectLambdaConfiguration
source§fn eq(&self, other: &ObjectLambdaConfiguration) -> bool
fn eq(&self, other: &ObjectLambdaConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.