typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
54 lines (53 loc) • 2.56 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type UserPoolResourceServer_Type = 'AWS::Cognito::UserPoolResourceServer';
export declare const UserPoolResourceServer_Type = "AWS::Cognito::UserPoolResourceServer";
/**
* Resource Type definition for AWS::Cognito::UserPoolResourceServer
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html}
*/
export default function UserPoolResourceServer(props: UserPoolResourceServer_Properties): CfnResource<UserPoolResourceServer_Properties>;
/**
* Resource Type definition for AWS::Cognito::UserPoolResourceServer
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html}
*/
export declare type UserPoolResourceServer_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-userpoolid}
*/
UserPoolId: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-identifier}
*/
Identifier: Resolvable<string>;
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-scopes}
*/
Scopes?: ResourceServerScopeType[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#cfn-cognito-userpoolresourceserver-name}
*/
Name: Resolvable<string>;
};
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolresourceserver-resourceserverscopetype.html}
*/
export declare type ResourceServerScopeType = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolresourceserver-resourceserverscopetype.html#cfn-cognito-userpoolresourceserver-resourceserverscopetype-scopename}
*/
ScopeName: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolresourceserver-resourceserverscopetype.html#cfn-cognito-userpoolresourceserver-resourceserverscopetype-scopedescription}
*/
ScopeDescription: Resolvable<string>;
};