_aws_profile Input Column
The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( "type" VARCHAR, "name" VARCHAR, "account_id" VARCHAR, "via_profile_name" VARCHAR, "assumed_role_arn" VARCHAR, "organization" STRUCT( "account_name" VARCHAR, "id" VARCHAR, "tags" STRUCT( "key" VARCHAR, "value" VARCHAR )[], "master_account" STRUCT( "id" VARCHAR, "email" VARCHAR ), "parents" STRUCT( "type" VARCHAR, "id" VARCHAR, "name" VARCHAR, "tags" STRUCT( "key" VARCHAR, "value" VARCHAR )[] )[] ) ) |
deployments
An array of objects that describe deployments for a container service. | STRUCT( "version" BIGINT, "state" VARCHAR, "containers" MAP(VARCHAR, STRUCT( "image" VARCHAR, "command" VARCHAR[], "environment" MAP(VARCHAR, VARCHAR), "ports" MAP(VARCHAR, VARCHAR) )), "public_endpoint" STRUCT( "container_name" VARCHAR, "container_port" BIGINT, "health_check" STRUCT( "healthy_threshold" BIGINT, "unhealthy_threshold" BIGINT, "timeout_seconds" BIGINT, "interval_seconds" BIGINT, "path" VARCHAR, "success_codes" VARCHAR ) ), "created_at" TIMESTAMP_S )[] |
Show child fields- deployments[]
Show child fields- deployments[].containers
An object that describes the configuration for the containers of the deployment.
- deployments[].created_at
The timestamp when the deployment was created.
- deployments[].public_endpoint
An object that describes the endpoint of the deployment. Show child fields- deployments[].public_endpoint.container_name
The name of the container entry of the deployment that the endpoint configuration applies to.
- deployments[].public_endpoint.container_port
The port of the specified container to which traffic is forwarded to.
- deployments[].public_endpoint.health_check
An object that describes the health check configuration of the container. Show child fields- deployments[].public_endpoint.health_check.healthy_threshold
The number of consecutive health checks successes required before moving the container to the Healthy state. The default value is 2.
- deployments[].public_endpoint.health_check.interval_seconds
The approximate interval, in seconds, between health checks of an individual container. You can specify between 5 and 300 seconds. The default value is 5.
- deployments[].public_endpoint.health_check.path
The path on the container on which to perform the health check. The default value is /.
- deployments[].public_endpoint.health_check.success_codes
The HTTP codes to use when checking for a successful response from a container. You can specify values between 200 and 499. You can specify multiple values (for example, 200,202) or a range of values (for example, 200-299).
- deployments[].public_endpoint.health_check.timeout_seconds
The amount of time, in seconds, during which no response means a failed health check. You can specify between 2 and 60 seconds. The default value is 2.
- deployments[].public_endpoint.health_check.unhealthy_threshold
The number of consecutive health check failures required before moving the container to the Unhealthy state. The default value is 2.
- deployments[].state
The state of the deployment. A deployment can be in one of the following states: -
ACTIVATING - The deployment is being created. -
ACTIVE - The deployment was successfully created, and it's currently running on the container service. The container service can have only one deployment in an active state at a time. -
INACTIVE - The deployment was previously successfully created, but it is not currently running on the container service. -
FAILED - The deployment failed. Use the GetContainerLog action to view the log events for the containers in the deployment to try to determine the reason for the failure.
- deployments[].version
The version number of the deployment.
|