_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 )[] )[] ) ) |
operation
A complex type that contains information about the operation. | STRUCT( "id" VARCHAR, "type" VARCHAR, "status" VARCHAR, "error_message" VARCHAR, "error_code" VARCHAR, "create_date" TIMESTAMP_S, "update_date" TIMESTAMP_S, "targets" MAP(VARCHAR, VARCHAR) ) |
Show child fields- operation.create_date
The date and time that the request was submitted, in Unix date/time format and Coordinated Universal Time (UTC). The value of CreateDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
- operation.error_code
The code associated with ErrorMessage. Values for ErrorCode include the following:
- operation.error_message
If the value of Status is FAIL, the reason that the operation failed.
- operation.id
The ID of the operation that you want to get information about.
- operation.status
The status of the operation. Values include the following: - SUBMITTED
-
This is the initial state that occurs immediately after you submit a request. - PENDING
-
Cloud Map is performing the operation. - SUCCESS
-
The operation succeeded. - FAIL
-
The operation failed. For the failure reason, see ErrorMessage.
- operation.targets
The name of the target entity that's associated with the operation: - NAMESPACE
-
The namespace ID is returned in the ResourceId property. - SERVICE
-
The service ID is returned in the ResourceId property. - INSTANCE
-
The instance ID is returned in the ResourceId property.
- operation.type
The name of the operation that's associated with the specified ID.
- operation.update_date
The date and time that the value of Status changed to the current value, in Unix date/time format and Coordinated Universal Time (UTC). The value of UpdateDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
|