Class CfnSchedulePropsMixin.EcsParametersProperty
The templated target type for the Amazon ECS RunTask API operation.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Scheduler
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnSchedulePropsMixin.EcsParametersProperty : CfnSchedulePropsMixin.IEcsParametersProperty
Syntax (vb)
Public Class CfnSchedulePropsMixin.EcsParametersProperty Implements CfnSchedulePropsMixin.IEcsParametersProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Scheduler;
var tags;
var ecsParametersProperty = new EcsParametersProperty {
CapacityProviderStrategy = new [] { new CapacityProviderStrategyItemProperty {
Base = 123,
CapacityProvider = "capacityProvider",
Weight = 123
} },
EnableEcsManagedTags = false,
EnableExecuteCommand = false,
Group = "group",
LaunchType = "launchType",
NetworkConfiguration = new NetworkConfigurationProperty {
AwsvpcConfiguration = new AwsVpcConfigurationProperty {
AssignPublicIp = "assignPublicIp",
SecurityGroups = new [] { "securityGroups" },
Subnets = new [] { "subnets" }
}
},
PlacementConstraints = new [] { new PlacementConstraintProperty {
Expression = "expression",
Type = "type"
} },
PlacementStrategy = new [] { new PlacementStrategyProperty {
Field = "field",
Type = "type"
} },
PlatformVersion = "platformVersion",
PropagateTags = "propagateTags",
ReferenceId = "referenceId",
Tags = tags,
TaskCount = 123,
TaskDefinitionArn = "taskDefinitionArn"
};
Synopsis
Constructors
| EcsParametersProperty() | The templated target type for the Amazon ECS |
Properties
| CapacityProviderStrategy | The capacity provider strategy to use for the task. |
| EnableEcsManagedTags | Specifies whether to enable Amazon ECS managed tags for the task. |
| EnableExecuteCommand | Whether or not to enable the execute command functionality for the containers in this task. |
| Group | Specifies an Amazon ECS task group for the task. |
| LaunchType | Specifies the launch type on which your task is running. |
| NetworkConfiguration | This structure specifies the network configuration for an ECS task. |
| PlacementConstraints | An array of placement constraint objects to use for the task. |
| PlacementStrategy | The task placement strategy for a task or service. |
| PlatformVersion | Specifies the platform version for the task. |
| PropagateTags | Specifies whether to propagate the tags from the task definition to the task. |
| ReferenceId | The reference ID to use for the task. |
| Tags | The metadata that you apply to the task to help you categorize and organize them. |
| TaskCount | The number of tasks to create based on |
| TaskDefinitionArn | The Amazon Resource Name (ARN) of the task definition to use if the event target is an Amazon ECS task. |
Constructors
EcsParametersProperty()
The templated target type for the Amazon ECS RunTask API operation.
public EcsParametersProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Scheduler;
var tags;
var ecsParametersProperty = new EcsParametersProperty {
CapacityProviderStrategy = new [] { new CapacityProviderStrategyItemProperty {
Base = 123,
CapacityProvider = "capacityProvider",
Weight = 123
} },
EnableEcsManagedTags = false,
EnableExecuteCommand = false,
Group = "group",
LaunchType = "launchType",
NetworkConfiguration = new NetworkConfigurationProperty {
AwsvpcConfiguration = new AwsVpcConfigurationProperty {
AssignPublicIp = "assignPublicIp",
SecurityGroups = new [] { "securityGroups" },
Subnets = new [] { "subnets" }
}
},
PlacementConstraints = new [] { new PlacementConstraintProperty {
Expression = "expression",
Type = "type"
} },
PlacementStrategy = new [] { new PlacementStrategyProperty {
Field = "field",
Type = "type"
} },
PlatformVersion = "platformVersion",
PropagateTags = "propagateTags",
ReferenceId = "referenceId",
Tags = tags,
TaskCount = 123,
TaskDefinitionArn = "taskDefinitionArn"
};
Properties
CapacityProviderStrategy
The capacity provider strategy to use for the task.
public object? CapacityProviderStrategy { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnSchedulePropsMixin.ICapacityProviderStrategyItemProperty)[]
EnableEcsManagedTags
Specifies whether to enable Amazon ECS managed tags for the task.
public object? EnableEcsManagedTags { get; set; }
Property Value
Remarks
For more information, see Tagging Your Amazon ECS Resources in the Amazon ECS Developer Guide .
Type union: either bool or IResolvable
EnableExecuteCommand
Whether or not to enable the execute command functionality for the containers in this task.
public object? EnableExecuteCommand { get; set; }
Property Value
Remarks
If true, this enables execute command functionality on all containers in the task.
Type union: either bool or IResolvable
Group
Specifies an Amazon ECS task group for the task.
public string? Group { get; set; }
Property Value
Remarks
The maximum length is 255 characters.
LaunchType
Specifies the launch type on which your task is running.
public string? LaunchType { get; set; }
Property Value
Remarks
The launch type that you specify here must match one of the launch type (compatibilities) of the target task. The FARGATE value is supported only in the Regions where Fargate with Amazon ECS is supported. For more information, see AWS Fargate on Amazon ECS in the Amazon ECS Developer Guide .
NetworkConfiguration
This structure specifies the network configuration for an ECS task.
public object? NetworkConfiguration { get; set; }
Property Value
Remarks
PlacementConstraints
An array of placement constraint objects to use for the task.
public object? PlacementConstraints { get; set; }
Property Value
Remarks
You can specify up to 10 constraints per task (including constraints in the task definition and those specified at runtime).
Type union: either IResolvable or (either IResolvable or CfnSchedulePropsMixin.IPlacementConstraintProperty)[]
PlacementStrategy
The task placement strategy for a task or service.
public object? PlacementStrategy { get; set; }
Property Value
Remarks
PlatformVersion
Specifies the platform version for the task.
public string? PlatformVersion { get; set; }
Property Value
Remarks
Specify only the numeric portion of the platform version, such as 1.1.0 .
PropagateTags
Specifies whether to propagate the tags from the task definition to the task.
public string? PropagateTags { get; set; }
Property Value
Remarks
If no value is specified, the tags are not propagated. Tags can only be propagated to the task during task creation. To add tags to a task after task creation, use the Amazon ECS TagResource API action.
ReferenceId
The reference ID to use for the task.
public string? ReferenceId { get; set; }
Property Value
Remarks
Tags
The metadata that you apply to the task to help you categorize and organize them.
public object? Tags { get; set; }
Property Value
Remarks
Each tag consists of a key and an optional value, both of which you define. For more information, see RunTask in the Amazon ECS API Reference .
TaskCount
The number of tasks to create based on TaskDefinition .
public double? TaskCount { get; set; }
Property Value
Remarks
TaskDefinitionArn
The Amazon Resource Name (ARN) of the task definition to use if the event target is an Amazon ECS task.
public string? TaskDefinitionArn { get; set; }