@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
12 lines (11 loc) • 407 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface SourceCredentialProperties {
ServerType: Value<string>;
Username?: Value<string>;
Token: Value<string>;
AuthType: Value<string>;
}
export default class Inner_SourceCredential extends ResourceBase<SourceCredentialProperties> {
constructor(properties: SourceCredentialProperties);
}