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

ServiceSpecificCredential

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

Contains the details of a service-specific credential.

interface ServiceSpecificCredential {
CreateDate: Date | number;
ServiceName: string;
ServicePassword: 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.

§
ServicePassword: string
[src]

The generated password for 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. This value is generated by combining the IAM user's name combined with the ID number of the Amazon Web Services account, as in jane-at-123456789012, for example. This value cannot be configured by the user.

§

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.