typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
42 lines (41 loc) • 1.66 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type Dimension_Type = 'AWS::IoT::Dimension';
export declare const Dimension_Type = "AWS::IoT::Dimension";
/**
* A dimension can be used to limit the scope of a metric used in a
* security profile for AWS IoT Device Defender. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html}
*/
export default function Dimension(props: Dimension_Properties): CfnResource<Dimension_Properties>;
/**
* A dimension can be used to limit the scope of a metric used in a
* security profile for AWS IoT Device Defender. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html}
*/
export declare type Dimension_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html#cfn-iot-dimension-name}
*/
Name?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html#cfn-iot-dimension-type}
*/
Type: Resolvable<'TOPIC_FILTER'>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html#cfn-iot-dimension-stringvalues}
*/
StringValues: Resolvable<string>[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html#cfn-iot-dimension-tags}
*/
Tags?: Tag[];
Arn?: Resolvable<string>;
};
export declare type Tag = {
Key: Resolvable<string>;
Value: Resolvable<string>;
};