@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
18 lines (17 loc) • 690 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value, List } from "../../data-types";
export declare class ResourceServerScopeType {
ScopeName: Value<string>;
ScopeDescription: Value<string>;
constructor(properties: ResourceServerScopeType);
}
export interface UserPoolResourceServerProperties {
UserPoolId: Value<string>;
Identifier: Value<string>;
Scopes?: List<ResourceServerScopeType>;
Name: Value<string>;
}
export default class Inner_UserPoolResourceServer extends ResourceBase<UserPoolResourceServerProperties> {
static ResourceServerScopeType: typeof ResourceServerScopeType;
constructor(properties: UserPoolResourceServerProperties);
}