_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 )[] )[] ) ) |
instance_summary
Information about the instance. | STRUCT( "deployment_id" VARCHAR, "instance_id" VARCHAR, "status" VARCHAR, "last_updated_at" TIMESTAMP_S, "lifecycle_events" STRUCT( "lifecycle_event_name" VARCHAR, "diagnostics" STRUCT( "error_code" VARCHAR, "script_name" VARCHAR, "message" VARCHAR, "log_tail" VARCHAR ), "start_time" TIMESTAMP_S, "end_time" TIMESTAMP_S, "status" VARCHAR )[], "instance_type" VARCHAR ) |
Show child fields- instance_summary.deployment_id
The unique ID of a deployment.
- instance_summary.instance_id
The instance ID.
- instance_summary.instance_type
Information about which environment an instance belongs to in a blue/green deployment.
- instance_summary.last_updated_at
A timestamp that indicates when the instance information was last updated.
- instance_summary.lifecycle_events[]
Show child fields- instance_summary.lifecycle_events[].diagnostics
Diagnostic information about the deployment lifecycle event. Show child fields- instance_summary.lifecycle_events[].diagnostics.error_code
The associated error code: -
Success: The specified script ran. -
ScriptMissing: The specified script was not found in the specified location. -
ScriptNotExecutable: The specified script is not a recognized executable file type. -
ScriptTimedOut: The specified script did not finish running in the specified time period. -
ScriptFailed: The specified script failed to run as expected. -
UnknownError: The specified script did not run for an unknown reason.
- instance_summary.lifecycle_events[].diagnostics.log_tail
The last portion of the diagnostic log. If available, CodeDeploy returns up to the last 4 KB of the diagnostic log.
- instance_summary.lifecycle_events[].diagnostics.message
The message associated with the error.
- instance_summary.lifecycle_events[].diagnostics.script_name
The name of the script.
- instance_summary.lifecycle_events[].end_time
A timestamp that indicates when the deployment lifecycle event ended.
- instance_summary.lifecycle_events[].lifecycle_event_name
The deployment lifecycle event name, such as ApplicationStop, BeforeInstall, AfterInstall, ApplicationStart, or ValidateService.
- instance_summary.lifecycle_events[].start_time
A timestamp that indicates when the deployment lifecycle event started.
- instance_summary.lifecycle_events[].status
The deployment lifecycle event status: -
Pending: The deployment lifecycle event is pending. -
InProgress: The deployment lifecycle event is in progress. -
Succeeded: The deployment lifecycle event ran successfully. -
Failed: The deployment lifecycle event has failed. -
Skipped: The deployment lifecycle event has been skipped. -
Unknown: The deployment lifecycle event is unknown.
- instance_summary.status
The deployment status for this instance: -
Pending: The deployment is pending for this instance. -
In Progress: The deployment is in progress for this instance. -
Succeeded: The deployment has succeeded for this instance. -
Failed: The deployment has failed for this instance. -
Skipped: The deployment has been skipped for this instance. -
Unknown: The deployment status is unknown for this instance.
|