Show / Hide Table of Contents

Interface ITaskDefinitionExtension

An extension for Task Definitions.

Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.AWS.ECS.dll
Syntax (csharp)
public interface ITaskDefinitionExtension
Syntax (vb)
Public Interface ITaskDefinitionExtension
Remarks

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"));

Synopsis

Methods

Extend(TaskDefinition)

Apply the extension to the given TaskDefinition.

Methods

Extend(TaskDefinition)

Apply the extension to the given TaskDefinition.

void Extend(TaskDefinition taskDefinition)
Parameters
taskDefinition TaskDefinition

[disable-awslint:ref-via-interface].

Back to top Generated by DocFX