Struct aws_sdk_lambda::output::CreateAliasOutput [−][src]
#[non_exhaustive]pub struct CreateAliasOutput {
pub alias_arn: Option<String>,
pub name: Option<String>,
pub function_version: Option<String>,
pub description: Option<String>,
pub routing_config: Option<AliasRoutingConfiguration>,
pub revision_id: Option<String>,
}
Expand description
Provides configuration information about a Lambda function alias.
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.alias_arn: Option<String>
The Amazon Resource Name (ARN) of the alias.
name: Option<String>
The name of the alias.
function_version: Option<String>
The function version that the alias invokes.
description: Option<String>
A description of the alias.
routing_config: Option<AliasRoutingConfiguration>
The routing configuration of the alias.
revision_id: Option<String>
A unique identifier that changes when you update the alias.
Implementations
The function version that the alias invokes.
A description of the alias.
The routing configuration of the alias.
A unique identifier that changes when you update the alias.
Creates a new builder-style object to manufacture CreateAliasOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateAliasOutput
impl Send for CreateAliasOutput
impl Sync for CreateAliasOutput
impl Unpin for CreateAliasOutput
impl UnwindSafe for CreateAliasOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more