Class UpdateAliasResponse
- java.lang.Object
-
- software.amazon.awssdk.core.SdkResponse
-
- software.amazon.awssdk.awscore.AwsResponse
-
- software.amazon.awssdk.services.lambda.model.LambdaResponse
-
- software.amazon.awssdk.services.lambda.model.UpdateAliasResponse
-
- All Implemented Interfaces:
SdkPojo
,ToCopyableBuilder<UpdateAliasResponse.Builder,UpdateAliasResponse>
@Generated("software.amazon.awssdk:codegen") public final class UpdateAliasResponse extends LambdaResponse implements ToCopyableBuilder<UpdateAliasResponse.Builder,UpdateAliasResponse>
Provides configuration information about a Lambda function alias.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
UpdateAliasResponse.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
aliasArn()
The Amazon Resource Name (ARN) of the alias.static UpdateAliasResponse.Builder
builder()
String
description()
A description of the alias.boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
String
functionVersion()
The function version that the alias invokes.<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
String
name()
The name of the alias.String
revisionId()
A unique identifier that changes when you update the alias.AliasRoutingConfiguration
routingConfig()
The routing configuration of the alias.List<SdkField<?>>
sdkFields()
static Class<? extends UpdateAliasResponse.Builder>
serializableBuilderClass()
UpdateAliasResponse.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
Methods inherited from class software.amazon.awssdk.services.lambda.model.LambdaResponse
responseMetadata
-
Methods inherited from class software.amazon.awssdk.core.SdkResponse
sdkHttpResponse
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
aliasArn
public final String aliasArn()
The Amazon Resource Name (ARN) of the alias.
- Returns:
- The Amazon Resource Name (ARN) of the alias.
-
name
public final String name()
The name of the alias.
- Returns:
- The name of the alias.
-
functionVersion
public final String functionVersion()
The function version that the alias invokes.
- Returns:
- The function version that the alias invokes.
-
description
public final String description()
A description of the alias.
- Returns:
- A description of the alias.
-
routingConfig
public final AliasRoutingConfiguration routingConfig()
The routing configuration of the alias.
- Returns:
- The routing configuration of the alias.
-
revisionId
public final String revisionId()
A unique identifier that changes when you update the alias.
- Returns:
- A unique identifier that changes when you update the alias.
-
toBuilder
public UpdateAliasResponse.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<UpdateAliasResponse.Builder,UpdateAliasResponse>
- Specified by:
toBuilder
in classAwsResponse
-
builder
public static UpdateAliasResponse.Builder builder()
-
serializableBuilderClass
public static Class<? extends UpdateAliasResponse.Builder> serializableBuilderClass()
-
hashCode
public final int hashCode()
- Overrides:
hashCode
in classAwsResponse
-
equals
public final boolean equals(Object obj)
- Overrides:
equals
in classAwsResponse
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
getValueForField
public final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
- Overrides:
getValueForField
in classSdkResponse
-
-