#[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: StringStandard access point associated with the Object Lambda Access Point.
cloud_watch_metrics_enabled: boolA 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 ==.impl StructuralPartialEq for ObjectLambdaConfiguration
Auto Trait Implementations§
impl Freeze for ObjectLambdaConfiguration
impl RefUnwindSafe for ObjectLambdaConfiguration
impl Send for ObjectLambdaConfiguration
impl Sync for ObjectLambdaConfiguration
impl Unpin for ObjectLambdaConfiguration
impl UnwindSafe for ObjectLambdaConfiguration
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