typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 633 B
JavaScript
;
// CloudFormation Resource AWS::Signer::SigningProfile
Object.defineProperty(exports, "__esModule", { value: true });
exports.SigningProfile_Type = void 0;
const base_1 = require("../../base");
exports.SigningProfile_Type = 'AWS::Signer::SigningProfile';
/**
* A signing profile is a signing template that can be used to carry out
* a pre-defined signing job. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-signer-signingprofile.html}
*/
function SigningProfile(props) {
return new base_1.CfnResource(exports.SigningProfile_Type, props);
}
exports.default = SigningProfile;