import { _ContainerOverride, _UnmarshalledContainerOverride } from "./_ContainerOverride"; /** *

The overrides associated with a task.

*/ export interface _TaskOverride { /** *

One or more container overrides sent to a task.

*/ containerOverrides?: Array<_ContainerOverride> | Iterable<_ContainerOverride>; /** *

The Amazon Resource Name (ARN) of the IAM role that containers in this task can assume. All containers in this task are granted the permissions that are specified in this role.

*/ taskRoleArn?: string; /** *

The Amazon Resource Name (ARN) of the task execution role that the Amazon ECS container agent and the Docker daemon can assume.

*/ executionRoleArn?: string; } export interface _UnmarshalledTaskOverride extends _TaskOverride { /** *

One or more container overrides sent to a task.

*/ containerOverrides?: Array<_UnmarshalledContainerOverride>; }