UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

136 lines (135 loc) 5.4 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource schema for AWS::Chatbot::MicrosoftTeamsChannelConfiguration. */ export declare class MicrosoftTeamsChannelConfiguration extends pulumi.CustomResource { /** * Get an existing MicrosoftTeamsChannelConfiguration resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): MicrosoftTeamsChannelConfiguration; /** * Returns true if the given object is an instance of MicrosoftTeamsChannelConfiguration. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is MicrosoftTeamsChannelConfiguration; /** * Amazon Resource Name (ARN) of the configuration */ readonly arn: pulumi.Output<string>; /** * The name of the configuration */ readonly configurationName: pulumi.Output<string>; /** * ARNs of Custom Actions to associate with notifications in the provided chat channel. */ readonly customizationResourceArns: pulumi.Output<string[] | undefined>; /** * The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy is applied as a default if this is not set. */ readonly guardrailPolicies: pulumi.Output<string[] | undefined>; /** * The ARN of the IAM role that defines the permissions for AWS Chatbot */ readonly iamRoleArn: pulumi.Output<string>; /** * Specifies the logging level for this configuration:ERROR,INFO or NONE. This property affects the log entries pushed to Amazon CloudWatch logs */ readonly loggingLevel: pulumi.Output<string | undefined>; /** * ARNs of SNS topics which delivers notifications to AWS Chatbot, for example CloudWatch alarm notifications. */ readonly snsTopicArns: pulumi.Output<string[] | undefined>; /** * The tags to add to the configuration */ readonly tags: pulumi.Output<outputs.Tag[] | undefined>; /** * The id of the Microsoft Teams team */ readonly teamId: pulumi.Output<string>; /** * The id of the Microsoft Teams channel */ readonly teamsChannelId: pulumi.Output<string>; /** * The name of the Microsoft Teams channel */ readonly teamsChannelName: pulumi.Output<string | undefined>; /** * The id of the Microsoft Teams tenant */ readonly teamsTenantId: pulumi.Output<string>; /** * Enables use of a user role requirement in your chat configuration */ readonly userRoleRequired: pulumi.Output<boolean | undefined>; /** * Create a MicrosoftTeamsChannelConfiguration resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: MicrosoftTeamsChannelConfigurationArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a MicrosoftTeamsChannelConfiguration resource. */ export interface MicrosoftTeamsChannelConfigurationArgs { /** * The name of the configuration */ configurationName?: pulumi.Input<string>; /** * ARNs of Custom Actions to associate with notifications in the provided chat channel. */ customizationResourceArns?: pulumi.Input<pulumi.Input<string>[]>; /** * The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy is applied as a default if this is not set. */ guardrailPolicies?: pulumi.Input<pulumi.Input<string>[]>; /** * The ARN of the IAM role that defines the permissions for AWS Chatbot */ iamRoleArn: pulumi.Input<string>; /** * Specifies the logging level for this configuration:ERROR,INFO or NONE. This property affects the log entries pushed to Amazon CloudWatch logs */ loggingLevel?: pulumi.Input<string>; /** * ARNs of SNS topics which delivers notifications to AWS Chatbot, for example CloudWatch alarm notifications. */ snsTopicArns?: pulumi.Input<pulumi.Input<string>[]>; /** * The tags to add to the configuration */ tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>; /** * The id of the Microsoft Teams team */ teamId: pulumi.Input<string>; /** * The id of the Microsoft Teams channel */ teamsChannelId: pulumi.Input<string>; /** * The name of the Microsoft Teams channel */ teamsChannelName?: pulumi.Input<string>; /** * The id of the Microsoft Teams tenant */ teamsTenantId: pulumi.Input<string>; /** * Enables use of a user role requirement in your chat configuration */ userRoleRequired?: pulumi.Input<boolean>; }