typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
43 lines (42 loc) • 1.85 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type KeyGroup_Type = 'AWS::CloudFront::KeyGroup';
export declare const KeyGroup_Type = "AWS::CloudFront::KeyGroup";
/**
* Resource Type definition for AWS::CloudFront::KeyGroup {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-keygroup.html}
*/
export default function KeyGroup(props: KeyGroup_Properties): CfnResource<KeyGroup_Properties>;
/**
* Resource Type definition for AWS::CloudFront::KeyGroup {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-keygroup.html}
*/
export declare type KeyGroup_Properties = {
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-keygroup.html#cfn-cloudfront-keygroup-keygroupconfig}
*/
KeyGroupConfig: KeyGroupConfig;
LastModifiedTime?: Resolvable<string>;
};
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-keygroup-keygroupconfig.html}
*/
export declare type KeyGroupConfig = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-keygroup-keygroupconfig.html#cfn-cloudfront-keygroup-keygroupconfig-comment}
*/
Comment?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-keygroup-keygroupconfig.html#cfn-cloudfront-keygroup-keygroupconfig-items}
*/
Items: Resolvable<string>[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-keygroup-keygroupconfig.html#cfn-cloudfront-keygroup-keygroupconfig-name}
*/
Name: Resolvable<string>;
};