sparse-gold-10561
09/22/2022, 2:06 PMARN of the SQS queue specified as the target for the dead-letter queue.
. However, I am trying to set it as a ECS target and I'm a bit confused as to if the documentation is wrong or if I really need a SQS DQL for an ECS target? Any advice would be great. thanks!stocky-restaurant-98004
09/22/2022, 2:13 PMarn
input, correct?arn
inputs which all share the same incorrect description due to the aforementioned bug.)sparse-gold-10561
09/22/2022, 2:26 PMstocky-restaurant-98004
09/22/2022, 3:13 PMsparse-gold-10561
09/22/2022, 3:19 PMstocky-restaurant-98004
09/22/2022, 3:19 PMsparse-gold-10561
09/22/2022, 3:19 PMstocky-restaurant-98004
09/22/2022, 3:20 PMsparse-gold-10561
09/22/2022, 3:20 PMreaction_data_event_target = aws.cloudwatch.EventTarget(
"reaction-data-event-target",
arn=cluster.arn,
rule=reaction_data_event_rule.name,
role_arn=reaction_cloud_event_rule_role.arn,
ecs_target=aws.cloudwatch.EventTargetEcsTargetArgs(
task_definition_arn=reaction_data_task.arn,
enable_execute_command=True,
launch_type="FARGATE",
network_configuration=aws.ecs.ServiceNetworkConfigurationArgs(
assign_public_ip=False,
subnets=vpc.private_subnet_ids,
security_groups=[group.id],
),
task_count=1,
),
)