Class ProvisionedConcurrencyConfigListItem
- java.lang.Object
-
- software.amazon.awssdk.services.lambda.model.ProvisionedConcurrencyConfigListItem
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<ProvisionedConcurrencyConfigListItem.Builder,ProvisionedConcurrencyConfigListItem>
@Generated("software.amazon.awssdk:codegen") public final class ProvisionedConcurrencyConfigListItem extends Object implements SdkPojo, Serializable, ToCopyableBuilder<ProvisionedConcurrencyConfigListItem.Builder,ProvisionedConcurrencyConfigListItem>
Details about the provisioned concurrency configuration for a function alias or version.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
ProvisionedConcurrencyConfigListItem.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
allocatedProvisionedConcurrentExecutions()
The amount of provisioned concurrency allocated.Integer
availableProvisionedConcurrentExecutions()
The amount of provisioned concurrency available.static ProvisionedConcurrencyConfigListItem.Builder
builder()
boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
String
functionArn()
The Amazon Resource Name (ARN) of the alias or version.<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
String
lastModified()
The date and time that a user last updated the configuration, in ISO 8601 format.Integer
requestedProvisionedConcurrentExecutions()
The amount of provisioned concurrency requested.List<SdkField<?>>
sdkFields()
static Class<? extends ProvisionedConcurrencyConfigListItem.Builder>
serializableBuilderClass()
ProvisionedConcurrencyStatusEnum
status()
The status of the allocation process.String
statusAsString()
The status of the allocation process.String
statusReason()
For failed allocations, the reason that provisioned concurrency could not be allocated.ProvisionedConcurrencyConfigListItem.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
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
-
functionArn
public final String functionArn()
The Amazon Resource Name (ARN) of the alias or version.
- Returns:
- The Amazon Resource Name (ARN) of the alias or version.
-
requestedProvisionedConcurrentExecutions
public final Integer requestedProvisionedConcurrentExecutions()
The amount of provisioned concurrency requested.
- Returns:
- The amount of provisioned concurrency requested.
-
availableProvisionedConcurrentExecutions
public final Integer availableProvisionedConcurrentExecutions()
The amount of provisioned concurrency available.
- Returns:
- The amount of provisioned concurrency available.
-
allocatedProvisionedConcurrentExecutions
public final Integer allocatedProvisionedConcurrentExecutions()
The amount of provisioned concurrency allocated. When a weighted alias is used during linear and canary deployments, this value fluctuates depending on the amount of concurrency that is provisioned for the function versions.
- Returns:
- The amount of provisioned concurrency allocated. When a weighted alias is used during linear and canary deployments, this value fluctuates depending on the amount of concurrency that is provisioned for the function versions.
-
status
public final ProvisionedConcurrencyStatusEnum status()
The status of the allocation process.
If the service returns an enum value that is not available in the current SDK version,
status
will returnProvisionedConcurrencyStatusEnum.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromstatusAsString()
.- Returns:
- The status of the allocation process.
- See Also:
ProvisionedConcurrencyStatusEnum
-
statusAsString
public final String statusAsString()
The status of the allocation process.
If the service returns an enum value that is not available in the current SDK version,
status
will returnProvisionedConcurrencyStatusEnum.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromstatusAsString()
.- Returns:
- The status of the allocation process.
- See Also:
ProvisionedConcurrencyStatusEnum
-
statusReason
public final String statusReason()
For failed allocations, the reason that provisioned concurrency could not be allocated.
- Returns:
- For failed allocations, the reason that provisioned concurrency could not be allocated.
-
lastModified
public final String lastModified()
The date and time that a user last updated the configuration, in ISO 8601 format.
- Returns:
- The date and time that a user last updated the configuration, in ISO 8601 format.
-
toBuilder
public ProvisionedConcurrencyConfigListItem.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<ProvisionedConcurrencyConfigListItem.Builder,ProvisionedConcurrencyConfigListItem>
-
builder
public static ProvisionedConcurrencyConfigListItem.Builder builder()
-
serializableBuilderClass
public static Class<? extends ProvisionedConcurrencyConfigListItem.Builder> serializableBuilderClass()
-
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.
-
-