UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

28 lines (27 loc) 1.33 kB
import { CfnResource, Resolvable } from '../../base'; export declare type PolicyPrincipalAttachment_Type = 'AWS::IoT::PolicyPrincipalAttachment'; export declare const PolicyPrincipalAttachment_Type = "AWS::IoT::PolicyPrincipalAttachment"; /** * Resource Type definition for AWS::IoT::PolicyPrincipalAttachment * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html} */ export default function PolicyPrincipalAttachment(props: PolicyPrincipalAttachment_Properties): CfnResource<PolicyPrincipalAttachment_Properties>; /** * Resource Type definition for AWS::IoT::PolicyPrincipalAttachment * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html} */ export declare type PolicyPrincipalAttachment_Properties = { Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname} */ PolicyName: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal} */ Principal: Resolvable<string>; };