#[non_exhaustive]pub struct ObjectLambdaAccessPointAlias {
pub value: Option<String>,
pub status: Option<ObjectLambdaAccessPointAliasStatus>,
}
Expand description
The alias of an Object Lambda Access Point. For more information, see How to use a bucket-style alias for your S3 bucket 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.value: Option<String>
The alias value of the Object Lambda Access Point.
status: Option<ObjectLambdaAccessPointAliasStatus>
The status of the Object Lambda Access Point alias. If the status is PROVISIONING
, the Object Lambda Access Point is provisioning the alias and the alias is not ready for use yet. If the status is READY
, the Object Lambda Access Point alias is successfully provisioned and ready for use.
Implementations§
source§impl ObjectLambdaAccessPointAlias
impl ObjectLambdaAccessPointAlias
sourcepub fn status(&self) -> Option<&ObjectLambdaAccessPointAliasStatus>
pub fn status(&self) -> Option<&ObjectLambdaAccessPointAliasStatus>
The status of the Object Lambda Access Point alias. If the status is PROVISIONING
, the Object Lambda Access Point is provisioning the alias and the alias is not ready for use yet. If the status is READY
, the Object Lambda Access Point alias is successfully provisioned and ready for use.
source§impl ObjectLambdaAccessPointAlias
impl ObjectLambdaAccessPointAlias
sourcepub fn builder() -> ObjectLambdaAccessPointAliasBuilder
pub fn builder() -> ObjectLambdaAccessPointAliasBuilder
Creates a new builder-style object to manufacture ObjectLambdaAccessPointAlias
.
Trait Implementations§
source§impl Clone for ObjectLambdaAccessPointAlias
impl Clone for ObjectLambdaAccessPointAlias
source§fn clone(&self) -> ObjectLambdaAccessPointAlias
fn clone(&self) -> ObjectLambdaAccessPointAlias
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ObjectLambdaAccessPointAlias
impl Debug for ObjectLambdaAccessPointAlias
source§impl PartialEq for ObjectLambdaAccessPointAlias
impl PartialEq for ObjectLambdaAccessPointAlias
source§fn eq(&self, other: &ObjectLambdaAccessPointAlias) -> bool
fn eq(&self, other: &ObjectLambdaAccessPointAlias) -> bool
self
and other
values to be equal, and is used
by ==
.