Skip to content

Submit Attachment State Changes

ecs_submit_attachment_state_changes R Documentation

This action is only used by the Amazon ECS agent, and it is not intended for use outside of the agent

Description

This action is only used by the Amazon ECS agent, and it is not intended for use outside of the agent.

Sent to acknowledge that an attachment changed states.

Usage

ecs_submit_attachment_state_changes(cluster, attachments)

Arguments

cluster

The short name or full ARN of the cluster that hosts the container instance the attachment belongs to.

attachments

[required] Any attachments associated with the state change request.

Value

A list with the following syntax:

list(
  acknowledgment = "string"
)

Request syntax

svc$submit_attachment_state_changes(
  cluster = "string",
  attachments = list(
    list(
      attachmentArn = "string",
      status = "string"
    )
  )
)