Interface ITaskDefinitionExtension
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
ITaskDefinitionExtension.Jsii$Default
- All Known Implementing Classes:
ITaskDefinitionExtension.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:09.764Z")
@Stability(Stable)
public interface ITaskDefinitionExtension
extends software.amazon.jsii.JsiiSerializable
An extension for Task Definitions.
Classes that want to make changes to a TaskDefinition (such as adding helper containers) can implement this interface, and can then be "added" to a TaskDefinition like so:
taskDefinition.addExtension(new MyExtension("some_parameter"));
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceInternal default implementation forITaskDefinitionExtension.static final classA proxy class which represents a concrete javascript instance of this type. -
Method Summary
Modifier and TypeMethodDescriptionvoidextend(TaskDefinition taskDefinition) Apply the extension to the given TaskDefinition.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
extend
Apply the extension to the given TaskDefinition.- Parameters:
taskDefinition- [disable-awslint:ref-via-interface]. This parameter is required.
-