#[non_exhaustive]pub struct ObjectLambdaConfiguration {
pub supporting_access_point: String,
pub cloud_watch_metrics_enabled: bool,
pub allowed_features: Option<Vec<ObjectLambdaAllowedFeature>>,
pub transformation_configurations: 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: 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: 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) -> &str
pub fn supporting_access_point(&self) -> &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) -> &[ObjectLambdaAllowedFeature]
pub fn allowed_features(&self) -> &[ObjectLambdaAllowedFeature]
A container for allowed features. Valid inputs are GetObject-Range
, GetObject-PartNumber
, HeadObject-Range
, and HeadObject-PartNumber
.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .allowed_features.is_none()
.
sourcepub fn transformation_configurations(
&self
) -> &[ObjectLambdaTransformationConfiguration]
pub fn transformation_configurations( &self ) -> &[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 for ObjectLambdaConfiguration
impl PartialEq 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 ==
.