typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 721 B
JavaScript
;
// CloudFormation Resource AWS::Redshift::EndpointAuthorization
Object.defineProperty(exports, "__esModule", { value: true });
exports.EndpointAuthorization_Type = void 0;
const base_1 = require("../../base");
exports.EndpointAuthorization_Type = 'AWS::Redshift::EndpointAuthorization';
/**
* Describes an endpoint authorization for authorizing Redshift-managed
* VPC endpoint access to a cluster across AWS accounts. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-endpointauthorization.html}
*/
function EndpointAuthorization(props) {
return new base_1.CfnResource(exports.EndpointAuthorization_Type, props);
}
exports.default = EndpointAuthorization;