@Generated(value="software.amazon.awssdk:codegen") public final class AliasConfiguration extends Object implements SdkPojo, Serializable, ToCopyableBuilder<AliasConfiguration.Builder,AliasConfiguration>
Provides configuration information about a Lambda function version alias.
Modifier and Type | Class and Description |
---|---|
static interface |
AliasConfiguration.Builder |
Modifier and Type | Method and Description |
---|---|
String |
aliasArn()
Lambda function ARN that is qualified using the alias name as the suffix.
|
static AliasConfiguration.Builder |
builder() |
String |
description()
Alias description.
|
boolean |
equals(Object obj) |
String |
functionVersion()
Function version to which the alias points.
|
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
int |
hashCode() |
String |
name()
Alias name.
|
String |
revisionId()
Represents the latest updated revision of the function or alias.
|
AliasRoutingConfiguration |
routingConfig()
Specifies an additional function versions the alias points to, allowing you to dictate what percentage of traffic
will invoke each version.
|
List<SdkField<?>> |
sdkFields() |
static Class<? extends AliasConfiguration.Builder> |
serializableBuilderClass() |
AliasConfiguration.Builder |
toBuilder()
Take this object and create a builder that contains all of the current property values of this object.
|
String |
toString() |
copy
public String aliasArn()
Lambda function ARN that is qualified using the alias name as the suffix. For example, if you create an alias
called BETA
that points to a helloworld function version, the ARN is
arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA
.
BETA
that points to a helloworld function version, the ARN is
arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA
.public String name()
Alias name.
public String functionVersion()
Function version to which the alias points.
public String description()
Alias description.
public AliasRoutingConfiguration routingConfig()
Specifies an additional function versions the alias points to, allowing you to dictate what percentage of traffic will invoke each version.
public String revisionId()
Represents the latest updated revision of the function or alias.
public AliasConfiguration.Builder toBuilder()
ToCopyableBuilder
toBuilder
in interface ToCopyableBuilder<AliasConfiguration.Builder,AliasConfiguration>
public static AliasConfiguration.Builder builder()
public static Class<? extends AliasConfiguration.Builder> serializableBuilderClass()
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.