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

ServiceSpecificCredentialMetadata

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

Contains additional details about a service-specific credential.

interface ServiceSpecificCredentialMetadata {
CreateDate: Date | number;
ServiceName: string;
ServiceSpecificCredentialId: string;
ServiceUserName: string;
Status: statusType;
UserName: string;
}

§Properties

§
CreateDate: Date | number
[src]

The date and time, in ISO 8601 date-time format, when the service-specific credential were created.

§
ServiceName: string
[src]

The name of the service associated with the service-specific credential.

§
ServiceSpecificCredentialId: string
[src]

The unique identifier for the service-specific credential.

§
ServiceUserName: string
[src]

The generated user name for the service-specific credential.

§

The status of the service-specific credential. Active means that the key is valid for API calls, while Inactive means it is not.

§
UserName: string
[src]

The name of the IAM user associated with the service-specific credential.