1. Packages
  2. AWS
  3. API Docs
  4. chatbot
  5. TeamsChannelConfiguration
AWS v6.54.0 published on Friday, Sep 27, 2024 by Pulumi

aws.chatbot.TeamsChannelConfiguration

Explore with Pulumi AI

aws logo
AWS v6.54.0 published on Friday, Sep 27, 2024 by Pulumi

    Resource for managing an AWS Chatbot Microsoft Teams Channel Configuration.

    NOTE: We provide this resource on a best-effort basis. If you are able to test it and find it useful, we welcome your input at GitHub.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const test = new aws.chatbot.TeamsChannelConfiguration("test", {
        channelId: "C07EZ1ABC23",
        configurationName: "mitt-lags-kanal",
        iamRoleArn: testAwsIamRole.arn,
        teamId: "74361522-da01-538d-aa2e-ac7918c6bb92",
        tenantId: "1234",
        tags: {
            Name: "mitt-lags-kanal",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    test = aws.chatbot.TeamsChannelConfiguration("test",
        channel_id="C07EZ1ABC23",
        configuration_name="mitt-lags-kanal",
        iam_role_arn=test_aws_iam_role["arn"],
        team_id="74361522-da01-538d-aa2e-ac7918c6bb92",
        tenant_id="1234",
        tags={
            "Name": "mitt-lags-kanal",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/chatbot"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := chatbot.NewTeamsChannelConfiguration(ctx, "test", &chatbot.TeamsChannelConfigurationArgs{
    			ChannelId:         pulumi.String("C07EZ1ABC23"),
    			ConfigurationName: pulumi.String("mitt-lags-kanal"),
    			IamRoleArn:        pulumi.Any(testAwsIamRole.Arn),
    			TeamId:            pulumi.String("74361522-da01-538d-aa2e-ac7918c6bb92"),
    			TenantId:          pulumi.String("1234"),
    			Tags: pulumi.StringMap{
    				"Name": pulumi.String("mitt-lags-kanal"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var test = new Aws.Chatbot.TeamsChannelConfiguration("test", new()
        {
            ChannelId = "C07EZ1ABC23",
            ConfigurationName = "mitt-lags-kanal",
            IamRoleArn = testAwsIamRole.Arn,
            TeamId = "74361522-da01-538d-aa2e-ac7918c6bb92",
            TenantId = "1234",
            Tags = 
            {
                { "Name", "mitt-lags-kanal" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.chatbot.TeamsChannelConfiguration;
    import com.pulumi.aws.chatbot.TeamsChannelConfigurationArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var test = new TeamsChannelConfiguration("test", TeamsChannelConfigurationArgs.builder()
                .channelId("C07EZ1ABC23")
                .configurationName("mitt-lags-kanal")
                .iamRoleArn(testAwsIamRole.arn())
                .teamId("74361522-da01-538d-aa2e-ac7918c6bb92")
                .tenantId("1234")
                .tags(Map.of("Name", "mitt-lags-kanal"))
                .build());
    
        }
    }
    
    resources:
      test:
        type: aws:chatbot:TeamsChannelConfiguration
        properties:
          channelId: C07EZ1ABC23
          configurationName: mitt-lags-kanal
          iamRoleArn: ${testAwsIamRole.arn}
          teamId: 74361522-da01-538d-aa2e-ac7918c6bb92
          tenantId: '1234'
          tags:
            Name: mitt-lags-kanal
    

    Create TeamsChannelConfiguration Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new TeamsChannelConfiguration(name: string, args: TeamsChannelConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def TeamsChannelConfiguration(resource_name: str,
                                  args: TeamsChannelConfigurationArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def TeamsChannelConfiguration(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  channel_id: Optional[str] = None,
                                  tenant_id: Optional[str] = None,
                                  configuration_name: Optional[str] = None,
                                  team_id: Optional[str] = None,
                                  iam_role_arn: Optional[str] = None,
                                  sns_topic_arns: Optional[Sequence[str]] = None,
                                  logging_level: Optional[str] = None,
                                  tags: Optional[Mapping[str, str]] = None,
                                  guardrail_policy_arns: Optional[Sequence[str]] = None,
                                  team_name: Optional[str] = None,
                                  channel_name: Optional[str] = None,
                                  timeouts: Optional[TeamsChannelConfigurationTimeoutsArgs] = None,
                                  user_authorization_required: Optional[bool] = None)
    func NewTeamsChannelConfiguration(ctx *Context, name string, args TeamsChannelConfigurationArgs, opts ...ResourceOption) (*TeamsChannelConfiguration, error)
    public TeamsChannelConfiguration(string name, TeamsChannelConfigurationArgs args, CustomResourceOptions? opts = null)
    public TeamsChannelConfiguration(String name, TeamsChannelConfigurationArgs args)
    public TeamsChannelConfiguration(String name, TeamsChannelConfigurationArgs args, CustomResourceOptions options)
    
    type: aws:chatbot:TeamsChannelConfiguration
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args TeamsChannelConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args TeamsChannelConfigurationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args TeamsChannelConfigurationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TeamsChannelConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TeamsChannelConfigurationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var teamsChannelConfigurationResource = new Aws.Chatbot.TeamsChannelConfiguration("teamsChannelConfigurationResource", new()
    {
        ChannelId = "string",
        TenantId = "string",
        ConfigurationName = "string",
        TeamId = "string",
        IamRoleArn = "string",
        SnsTopicArns = new[]
        {
            "string",
        },
        LoggingLevel = "string",
        Tags = 
        {
            { "string", "string" },
        },
        GuardrailPolicyArns = new[]
        {
            "string",
        },
        TeamName = "string",
        ChannelName = "string",
        Timeouts = new Aws.Chatbot.Inputs.TeamsChannelConfigurationTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
        UserAuthorizationRequired = false,
    });
    
    example, err := chatbot.NewTeamsChannelConfiguration(ctx, "teamsChannelConfigurationResource", &chatbot.TeamsChannelConfigurationArgs{
    	ChannelId:         pulumi.String("string"),
    	TenantId:          pulumi.String("string"),
    	ConfigurationName: pulumi.String("string"),
    	TeamId:            pulumi.String("string"),
    	IamRoleArn:        pulumi.String("string"),
    	SnsTopicArns: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	LoggingLevel: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	GuardrailPolicyArns: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	TeamName:    pulumi.String("string"),
    	ChannelName: pulumi.String("string"),
    	Timeouts: &chatbot.TeamsChannelConfigurationTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    	UserAuthorizationRequired: pulumi.Bool(false),
    })
    
    var teamsChannelConfigurationResource = new TeamsChannelConfiguration("teamsChannelConfigurationResource", TeamsChannelConfigurationArgs.builder()
        .channelId("string")
        .tenantId("string")
        .configurationName("string")
        .teamId("string")
        .iamRoleArn("string")
        .snsTopicArns("string")
        .loggingLevel("string")
        .tags(Map.of("string", "string"))
        .guardrailPolicyArns("string")
        .teamName("string")
        .channelName("string")
        .timeouts(TeamsChannelConfigurationTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .userAuthorizationRequired(false)
        .build());
    
    teams_channel_configuration_resource = aws.chatbot.TeamsChannelConfiguration("teamsChannelConfigurationResource",
        channel_id="string",
        tenant_id="string",
        configuration_name="string",
        team_id="string",
        iam_role_arn="string",
        sns_topic_arns=["string"],
        logging_level="string",
        tags={
            "string": "string",
        },
        guardrail_policy_arns=["string"],
        team_name="string",
        channel_name="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        },
        user_authorization_required=False)
    
    const teamsChannelConfigurationResource = new aws.chatbot.TeamsChannelConfiguration("teamsChannelConfigurationResource", {
        channelId: "string",
        tenantId: "string",
        configurationName: "string",
        teamId: "string",
        iamRoleArn: "string",
        snsTopicArns: ["string"],
        loggingLevel: "string",
        tags: {
            string: "string",
        },
        guardrailPolicyArns: ["string"],
        teamName: "string",
        channelName: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
        userAuthorizationRequired: false,
    });
    
    type: aws:chatbot:TeamsChannelConfiguration
    properties:
        channelId: string
        channelName: string
        configurationName: string
        guardrailPolicyArns:
            - string
        iamRoleArn: string
        loggingLevel: string
        snsTopicArns:
            - string
        tags:
            string: string
        teamId: string
        teamName: string
        tenantId: string
        timeouts:
            create: string
            delete: string
            update: string
        userAuthorizationRequired: false
    

    TeamsChannelConfiguration Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The TeamsChannelConfiguration resource accepts the following input properties:

    ChannelId string
    ID of the Microsoft Teams channel.
    ConfigurationName string
    Name of the Microsoft Teams channel configuration.
    IamRoleArn string
    ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS Chatbot will assume. This is not the service-linked role.
    TeamId string
    ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console.
    TenantId string

    ID of the Microsoft Teams tenant.

    The following arguments are optional:

    ChannelName string
    Name of the Microsoft Teams channel.
    GuardrailPolicyArns List<string>
    List of IAM policy ARNs that are applied as channel guardrails. The AWS managed AdministratorAccess policy is applied by default if this is not set.
    LoggingLevel string
    Logging levels include ERROR, INFO, or NONE.
    SnsTopicArns List<string>
    ARNs of the SNS topics that deliver notifications to AWS Chatbot.
    Tags Dictionary<string, string>
    Map of tags assigned to the resource.
    TeamName string
    Name of the Microsoft Teams team.
    Timeouts TeamsChannelConfigurationTimeouts
    UserAuthorizationRequired bool
    Enables use of a user role requirement in your chat configuration.
    ChannelId string
    ID of the Microsoft Teams channel.
    ConfigurationName string
    Name of the Microsoft Teams channel configuration.
    IamRoleArn string
    ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS Chatbot will assume. This is not the service-linked role.
    TeamId string
    ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console.
    TenantId string

    ID of the Microsoft Teams tenant.

    The following arguments are optional:

    ChannelName string
    Name of the Microsoft Teams channel.
    GuardrailPolicyArns []string
    List of IAM policy ARNs that are applied as channel guardrails. The AWS managed AdministratorAccess policy is applied by default if this is not set.
    LoggingLevel string
    Logging levels include ERROR, INFO, or NONE.
    SnsTopicArns []string
    ARNs of the SNS topics that deliver notifications to AWS Chatbot.
    Tags map[string]string
    Map of tags assigned to the resource.
    TeamName string
    Name of the Microsoft Teams team.
    Timeouts TeamsChannelConfigurationTimeoutsArgs
    UserAuthorizationRequired bool
    Enables use of a user role requirement in your chat configuration.
    channelId String
    ID of the Microsoft Teams channel.
    configurationName String
    Name of the Microsoft Teams channel configuration.
    iamRoleArn String
    ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS Chatbot will assume. This is not the service-linked role.
    teamId String
    ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console.
    tenantId String

    ID of the Microsoft Teams tenant.

    The following arguments are optional:

    channelName String
    Name of the Microsoft Teams channel.
    guardrailPolicyArns List<String>
    List of IAM policy ARNs that are applied as channel guardrails. The AWS managed AdministratorAccess policy is applied by default if this is not set.
    loggingLevel String
    Logging levels include ERROR, INFO, or NONE.
    snsTopicArns List<String>
    ARNs of the SNS topics that deliver notifications to AWS Chatbot.
    tags Map<String,String>
    Map of tags assigned to the resource.
    teamName String
    Name of the Microsoft Teams team.
    timeouts TeamsChannelConfigurationTimeouts
    userAuthorizationRequired Boolean
    Enables use of a user role requirement in your chat configuration.
    channelId string
    ID of the Microsoft Teams channel.
    configurationName string
    Name of the Microsoft Teams channel configuration.
    iamRoleArn string
    ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS Chatbot will assume. This is not the service-linked role.
    teamId string
    ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console.
    tenantId string

    ID of the Microsoft Teams tenant.

    The following arguments are optional:

    channelName string
    Name of the Microsoft Teams channel.
    guardrailPolicyArns string[]
    List of IAM policy ARNs that are applied as channel guardrails. The AWS managed AdministratorAccess policy is applied by default if this is not set.
    loggingLevel string
    Logging levels include ERROR, INFO, or NONE.
    snsTopicArns string[]
    ARNs of the SNS topics that deliver notifications to AWS Chatbot.
    tags {[key: string]: string}
    Map of tags assigned to the resource.
    teamName string
    Name of the Microsoft Teams team.
    timeouts TeamsChannelConfigurationTimeouts
    userAuthorizationRequired boolean
    Enables use of a user role requirement in your chat configuration.
    channel_id str
    ID of the Microsoft Teams channel.
    configuration_name str
    Name of the Microsoft Teams channel configuration.
    iam_role_arn str
    ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS Chatbot will assume. This is not the service-linked role.
    team_id str
    ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console.
    tenant_id str

    ID of the Microsoft Teams tenant.

    The following arguments are optional:

    channel_name str
    Name of the Microsoft Teams channel.
    guardrail_policy_arns Sequence[str]
    List of IAM policy ARNs that are applied as channel guardrails. The AWS managed AdministratorAccess policy is applied by default if this is not set.
    logging_level str
    Logging levels include ERROR, INFO, or NONE.
    sns_topic_arns Sequence[str]
    ARNs of the SNS topics that deliver notifications to AWS Chatbot.
    tags Mapping[str, str]
    Map of tags assigned to the resource.
    team_name str
    Name of the Microsoft Teams team.
    timeouts TeamsChannelConfigurationTimeoutsArgs
    user_authorization_required bool
    Enables use of a user role requirement in your chat configuration.
    channelId String
    ID of the Microsoft Teams channel.
    configurationName String
    Name of the Microsoft Teams channel configuration.
    iamRoleArn String
    ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS Chatbot will assume. This is not the service-linked role.
    teamId String
    ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console.
    tenantId String

    ID of the Microsoft Teams tenant.

    The following arguments are optional:

    channelName String
    Name of the Microsoft Teams channel.
    guardrailPolicyArns List<String>
    List of IAM policy ARNs that are applied as channel guardrails. The AWS managed AdministratorAccess policy is applied by default if this is not set.
    loggingLevel String
    Logging levels include ERROR, INFO, or NONE.
    snsTopicArns List<String>
    ARNs of the SNS topics that deliver notifications to AWS Chatbot.
    tags Map<String>
    Map of tags assigned to the resource.
    teamName String
    Name of the Microsoft Teams team.
    timeouts Property Map
    userAuthorizationRequired Boolean
    Enables use of a user role requirement in your chat configuration.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TeamsChannelConfiguration resource produces the following output properties:

    ChatConfigurationArn string
    ARN of the Microsoft Teams channel configuration.
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    ChatConfigurationArn string
    ARN of the Microsoft Teams channel configuration.
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    chatConfigurationArn String
    ARN of the Microsoft Teams channel configuration.
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    chatConfigurationArn string
    ARN of the Microsoft Teams channel configuration.
    id string
    The provider-assigned unique ID for this managed resource.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    chat_configuration_arn str
    ARN of the Microsoft Teams channel configuration.
    id str
    The provider-assigned unique ID for this managed resource.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    chatConfigurationArn String
    ARN of the Microsoft Teams channel configuration.
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Look up Existing TeamsChannelConfiguration Resource

    Get an existing TeamsChannelConfiguration resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: TeamsChannelConfigurationState, opts?: CustomResourceOptions): TeamsChannelConfiguration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            channel_id: Optional[str] = None,
            channel_name: Optional[str] = None,
            chat_configuration_arn: Optional[str] = None,
            configuration_name: Optional[str] = None,
            guardrail_policy_arns: Optional[Sequence[str]] = None,
            iam_role_arn: Optional[str] = None,
            logging_level: Optional[str] = None,
            sns_topic_arns: Optional[Sequence[str]] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            team_id: Optional[str] = None,
            team_name: Optional[str] = None,
            tenant_id: Optional[str] = None,
            timeouts: Optional[TeamsChannelConfigurationTimeoutsArgs] = None,
            user_authorization_required: Optional[bool] = None) -> TeamsChannelConfiguration
    func GetTeamsChannelConfiguration(ctx *Context, name string, id IDInput, state *TeamsChannelConfigurationState, opts ...ResourceOption) (*TeamsChannelConfiguration, error)
    public static TeamsChannelConfiguration Get(string name, Input<string> id, TeamsChannelConfigurationState? state, CustomResourceOptions? opts = null)
    public static TeamsChannelConfiguration get(String name, Output<String> id, TeamsChannelConfigurationState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ChannelId string
    ID of the Microsoft Teams channel.
    ChannelName string
    Name of the Microsoft Teams channel.
    ChatConfigurationArn string
    ARN of the Microsoft Teams channel configuration.
    ConfigurationName string
    Name of the Microsoft Teams channel configuration.
    GuardrailPolicyArns List<string>
    List of IAM policy ARNs that are applied as channel guardrails. The AWS managed AdministratorAccess policy is applied by default if this is not set.
    IamRoleArn string
    ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS Chatbot will assume. This is not the service-linked role.
    LoggingLevel string
    Logging levels include ERROR, INFO, or NONE.
    SnsTopicArns List<string>
    ARNs of the SNS topics that deliver notifications to AWS Chatbot.
    Tags Dictionary<string, string>
    Map of tags assigned to the resource.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    TeamId string
    ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console.
    TeamName string
    Name of the Microsoft Teams team.
    TenantId string

    ID of the Microsoft Teams tenant.

    The following arguments are optional:

    Timeouts TeamsChannelConfigurationTimeouts
    UserAuthorizationRequired bool
    Enables use of a user role requirement in your chat configuration.
    ChannelId string
    ID of the Microsoft Teams channel.
    ChannelName string
    Name of the Microsoft Teams channel.
    ChatConfigurationArn string
    ARN of the Microsoft Teams channel configuration.
    ConfigurationName string
    Name of the Microsoft Teams channel configuration.
    GuardrailPolicyArns []string
    List of IAM policy ARNs that are applied as channel guardrails. The AWS managed AdministratorAccess policy is applied by default if this is not set.
    IamRoleArn string
    ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS Chatbot will assume. This is not the service-linked role.
    LoggingLevel string
    Logging levels include ERROR, INFO, or NONE.
    SnsTopicArns []string
    ARNs of the SNS topics that deliver notifications to AWS Chatbot.
    Tags map[string]string
    Map of tags assigned to the resource.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    TeamId string
    ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console.
    TeamName string
    Name of the Microsoft Teams team.
    TenantId string

    ID of the Microsoft Teams tenant.

    The following arguments are optional:

    Timeouts TeamsChannelConfigurationTimeoutsArgs
    UserAuthorizationRequired bool
    Enables use of a user role requirement in your chat configuration.
    channelId String
    ID of the Microsoft Teams channel.
    channelName String
    Name of the Microsoft Teams channel.
    chatConfigurationArn String
    ARN of the Microsoft Teams channel configuration.
    configurationName String
    Name of the Microsoft Teams channel configuration.
    guardrailPolicyArns List<String>
    List of IAM policy ARNs that are applied as channel guardrails. The AWS managed AdministratorAccess policy is applied by default if this is not set.
    iamRoleArn String
    ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS Chatbot will assume. This is not the service-linked role.
    loggingLevel String
    Logging levels include ERROR, INFO, or NONE.
    snsTopicArns List<String>
    ARNs of the SNS topics that deliver notifications to AWS Chatbot.
    tags Map<String,String>
    Map of tags assigned to the resource.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    teamId String
    ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console.
    teamName String
    Name of the Microsoft Teams team.
    tenantId String

    ID of the Microsoft Teams tenant.

    The following arguments are optional:

    timeouts TeamsChannelConfigurationTimeouts
    userAuthorizationRequired Boolean
    Enables use of a user role requirement in your chat configuration.
    channelId string
    ID of the Microsoft Teams channel.
    channelName string
    Name of the Microsoft Teams channel.
    chatConfigurationArn string
    ARN of the Microsoft Teams channel configuration.
    configurationName string
    Name of the Microsoft Teams channel configuration.
    guardrailPolicyArns string[]
    List of IAM policy ARNs that are applied as channel guardrails. The AWS managed AdministratorAccess policy is applied by default if this is not set.
    iamRoleArn string
    ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS Chatbot will assume. This is not the service-linked role.
    loggingLevel string
    Logging levels include ERROR, INFO, or NONE.
    snsTopicArns string[]
    ARNs of the SNS topics that deliver notifications to AWS Chatbot.
    tags {[key: string]: string}
    Map of tags assigned to the resource.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    teamId string
    ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console.
    teamName string
    Name of the Microsoft Teams team.
    tenantId string

    ID of the Microsoft Teams tenant.

    The following arguments are optional:

    timeouts TeamsChannelConfigurationTimeouts
    userAuthorizationRequired boolean
    Enables use of a user role requirement in your chat configuration.
    channel_id str
    ID of the Microsoft Teams channel.
    channel_name str
    Name of the Microsoft Teams channel.
    chat_configuration_arn str
    ARN of the Microsoft Teams channel configuration.
    configuration_name str
    Name of the Microsoft Teams channel configuration.
    guardrail_policy_arns Sequence[str]
    List of IAM policy ARNs that are applied as channel guardrails. The AWS managed AdministratorAccess policy is applied by default if this is not set.
    iam_role_arn str
    ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS Chatbot will assume. This is not the service-linked role.
    logging_level str
    Logging levels include ERROR, INFO, or NONE.
    sns_topic_arns Sequence[str]
    ARNs of the SNS topics that deliver notifications to AWS Chatbot.
    tags Mapping[str, str]
    Map of tags assigned to the resource.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    team_id str
    ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console.
    team_name str
    Name of the Microsoft Teams team.
    tenant_id str

    ID of the Microsoft Teams tenant.

    The following arguments are optional:

    timeouts TeamsChannelConfigurationTimeoutsArgs
    user_authorization_required bool
    Enables use of a user role requirement in your chat configuration.
    channelId String
    ID of the Microsoft Teams channel.
    channelName String
    Name of the Microsoft Teams channel.
    chatConfigurationArn String
    ARN of the Microsoft Teams channel configuration.
    configurationName String
    Name of the Microsoft Teams channel configuration.
    guardrailPolicyArns List<String>
    List of IAM policy ARNs that are applied as channel guardrails. The AWS managed AdministratorAccess policy is applied by default if this is not set.
    iamRoleArn String
    ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS Chatbot will assume. This is not the service-linked role.
    loggingLevel String
    Logging levels include ERROR, INFO, or NONE.
    snsTopicArns List<String>
    ARNs of the SNS topics that deliver notifications to AWS Chatbot.
    tags Map<String>
    Map of tags assigned to the resource.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    teamId String
    ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console.
    teamName String
    Name of the Microsoft Teams team.
    tenantId String

    ID of the Microsoft Teams tenant.

    The following arguments are optional:

    timeouts Property Map
    userAuthorizationRequired Boolean
    Enables use of a user role requirement in your chat configuration.

    Supporting Types

    TeamsChannelConfigurationTimeouts, TeamsChannelConfigurationTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Using pulumi import, import Chatbot Microsoft Teams Channel Configuration using the team_id. For example:

    $ pulumi import aws:chatbot/teamsChannelConfiguration:TeamsChannelConfiguration example 5f4f15d2-b958-522a-8333-124aa8bf0925
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    AWS v6.54.0 published on Friday, Sep 27, 2024 by Pulumi