UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

42 lines (41 loc) 1.82 kB
import { CfnResource, Resolvable } from '../../base'; export declare type ParameterGroup_Type = 'AWS::ElastiCache::ParameterGroup'; export declare const ParameterGroup_Type = "AWS::ElastiCache::ParameterGroup"; /** * Resource Type definition for AWS::ElastiCache::ParameterGroup {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html} */ export default function ParameterGroup(props: ParameterGroup_Properties): CfnResource<ParameterGroup_Properties>; /** * Resource Type definition for AWS::ElastiCache::ParameterGroup {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html} */ export declare type ParameterGroup_Properties = { /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description} */ Description: Resolvable<string>; Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-properties} */ Properties?: { [k: string]: unknown; }; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-tags} */ Tags?: Tag[]; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily} */ CacheParameterGroupFamily: Resolvable<string>; }; export declare type Tag = { Value: Resolvable<string>; Key: Resolvable<string>; };