Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AwsApiCallAction

import type { AwsApiCallAction } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

Provided if ActionType is AWS_API_CALL. It provides details about the API call that was detected.

interface AwsApiCallAction {
AffectedResources?: {
[key: string]: string | null | undefined;
}
| null;
Api?: string | null;
CallerType?: string | null;
DomainDetails?: AwsApiCallActionDomainDetails | null;
FirstSeen?: string | null;
LastSeen?: string | null;
RemoteIpDetails?: ActionRemoteIpDetails | null;
ServiceName?: string | null;
}

§Properties

§
AffectedResources?: {
[key: string]: string | null | undefined;
}
| null
[src]

Identifies the resources that were affected by the API call.

§
Api?: string | null
[src]

The name of the API method that was issued.

§
CallerType?: string | null
[src]

Indicates whether the API call originated from a remote IP address (remoteip) or from a DNS domain (domain).

§
DomainDetails?: AwsApiCallActionDomainDetails | null
[src]

Provided if CallerType is domain. Provides information about the DNS domain that the API call originated from.

§
FirstSeen?: string | null
[src]

An ISO8601-formatted timestamp that indicates when the API call was first observed.

A correctly formatted example is 2020-05-21T20:16:34.724Z. The value cannot contain spaces, and date and time should be separated by T. For more information, see RFC 3339 section 5.6, Internet Date/Time Format.

§
LastSeen?: string | null
[src]

An ISO8601-formatted timestamp that indicates when the API call was most recently observed.

A correctly formatted example is 2020-05-21T20:16:34.724Z. The value cannot contain spaces, and date and time should be separated by T. For more information, see RFC 3339 section 5.6, Internet Date/Time Format.

§
RemoteIpDetails?: ActionRemoteIpDetails | null
[src]

Provided if CallerType is remoteIp. Provides information about the remote IP address that the API call originated from.

§
ServiceName?: string | null
[src]

The name of the Amazon Web Services service that the API method belongs to.