UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

35 lines (34 loc) 1.4 kB
import { CfnResource, Resolvable } from '../../base'; export declare type SAMLProvider_Type = 'AWS::IAM::SAMLProvider'; export declare const SAMLProvider_Type = "AWS::IAM::SAMLProvider"; /** * Resource Type definition for AWS::IAM::SAMLProvider {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-samlprovider.html} */ export default function SAMLProvider(props: SAMLProvider_Properties): CfnResource<SAMLProvider_Properties>; /** * Resource Type definition for AWS::IAM::SAMLProvider {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-samlprovider.html} */ export declare type SAMLProvider_Properties = { /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-samlprovider.html#cfn-iam-samlprovider-name} */ Name?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-samlprovider.html#cfn-iam-samlprovider-samlmetadatadocument} */ SamlMetadataDocument: Resolvable<string>; Arn?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-samlprovider.html#cfn-iam-samlprovider-tags} */ Tags?: Tag[]; }; export declare type Tag = { Value: Resolvable<string>; Key: Resolvable<string>; };