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

AwsIamAccessKeyDetails

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

IAM access key details related to a finding.

interface AwsIamAccessKeyDetails {
AccessKeyId?: string | null;
AccountId?: string | null;
CreatedAt?: string | null;
PrincipalId?: string | null;
PrincipalName?: string | null;
PrincipalType?: string | null;
SessionContext?: AwsIamAccessKeySessionContext | null;
Status?: AwsIamAccessKeyStatus | null;
UserName?: string | null;
}

§Properties

§
AccessKeyId?: string | null
[src]

The identifier of the access key.

§
AccountId?: string | null
[src]

The Amazon Web Services account ID of the account for the key.

§
CreatedAt?: string | null
[src]

Indicates when the IAM access key was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be separated by T. For example, 2020-03-22T13:22:13.933Z.

§
PrincipalId?: string | null
[src]

The ID of the principal associated with an access key.

§
PrincipalName?: string | null
[src]

The name of the principal.

§
PrincipalType?: string | null
[src]

The type of principal associated with an access key.

§
SessionContext?: AwsIamAccessKeySessionContext | null
[src]

Information about the session that the key was used for.

§

The status of the IAM access key related to a finding.

§
UserName?: string | null
[src]

The user associated with the IAM access key related to a finding.

The UserName parameter has been replaced with the PrincipalName parameter because access keys can also be assigned to principals that are not IAM users.