#[non_exhaustive]pub struct ObjectLambdaConfiguration {
pub supporting_access_point: Option<String>,
pub cloud_watch_metrics_enabled: bool,
pub allowed_features: Option<Vec<ObjectLambdaAllowedFeature>>,
pub transformation_configurations: Option<Vec<ObjectLambdaTransformationConfiguration>>,
}
Expand description
A configuration used when creating an Object Lambda Access Point.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.supporting_access_point: Option<String>
Standard access point associated with the Object Lambda Access Point.
cloud_watch_metrics_enabled: bool
A container for whether the CloudWatch metrics configuration is enabled.
allowed_features: Option<Vec<ObjectLambdaAllowedFeature>>
A container for allowed features. Valid inputs are GetObject-Range
, GetObject-PartNumber
, HeadObject-Range
, and HeadObject-PartNumber
.
transformation_configurations: Option<Vec<ObjectLambdaTransformationConfiguration>>
A container for transformation configurations for 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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
self
and other
values to be equal, and is used
by ==
.