@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.375Z") @Stability(value=Stable) public interface AliasOptions extends software.amazon.jsii.JsiiSerializable, EventInvokeConfigOptions
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.*;
import software.amazon.awscdk.services.lambda.*;
IDestination destination;
Version version;
AliasOptions aliasOptions = AliasOptions.builder()
.additionalVersions(List.of(VersionWeight.builder()
.version(version)
.weight(123)
.build()))
.description("description")
.maxEventAge(Duration.minutes(30))
.onFailure(destination)
.onSuccess(destination)
.provisionedConcurrentExecutions(123)
.retryAttempts(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
AliasOptions.Builder
A builder for
AliasOptions |
static class |
AliasOptions.Jsii$Proxy
An implementation for
AliasOptions |
| Modifier and Type | Method and Description |
|---|---|
static AliasOptions.Builder |
builder() |
default List<VersionWeight> |
getAdditionalVersions()
Additional versions with individual weights this alias points to.
|
default String |
getDescription()
Description for the alias.
|
default Number |
getProvisionedConcurrentExecutions()
Specifies a provisioned concurrency configuration for a function's alias.
|
getMaxEventAge, getOnFailure, getOnSuccess, getRetryAttempts@Stability(value=Stable) @Nullable default List<VersionWeight> getAdditionalVersions()
Individual additional version weights specified here should add up to (less than) one. All remaining weight is routed to the default version.
For example, the config is
version: "1"
additionalVersions: [{ version: "2", weight: 0.05 }]
Then 5% of traffic will be routed to function version 2, while the remaining 95% of traffic will be routed to function version 1.
Default: No additional versions
@Stability(value=Stable) @Nullable default String getDescription()
Default: No description
@Stability(value=Stable) @Nullable default Number getProvisionedConcurrentExecutions()
Default: No provisioned concurrency
@Stability(value=Stable) static AliasOptions.Builder builder()
builder in interface EventInvokeConfigOptionsAliasOptions.Builder of AliasOptionsCopyright © 2022. All rights reserved.