interface CfnMicrosoftTeamsChannelConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Chatbot.Mixins.CfnMicrosoftTeamsChannelConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awschatbot/mixins#CfnMicrosoftTeamsChannelConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.chatbot.mixins.CfnMicrosoftTeamsChannelConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_chatbot.mixins.CfnMicrosoftTeamsChannelConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_chatbot » mixins » CfnMicrosoftTeamsChannelConfigurationMixinProps |
Properties for CfnMicrosoftTeamsChannelConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as chatbot_mixins } from '@aws-cdk/mixins-preview/aws-chatbot';
const cfnMicrosoftTeamsChannelConfigurationMixinProps: chatbot_mixins.CfnMicrosoftTeamsChannelConfigurationMixinProps = {
configurationName: 'configurationName',
customizationResourceArns: ['customizationResourceArns'],
guardrailPolicies: ['guardrailPolicies'],
iamRoleArn: 'iamRoleArn',
loggingLevel: 'loggingLevel',
snsTopicArns: ['snsTopicArns'],
tags: [{
key: 'key',
value: 'value',
}],
teamId: 'teamId',
teamsChannelId: 'teamsChannelId',
teamsChannelName: 'teamsChannelName',
teamsTenantId: 'teamsTenantId',
userRoleRequired: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | string | The name of the configuration. |
| customization | string[] | Links a list of resource ARNs (for example, custom action ARNs) to a Microsoft Teams channel configuration for . |
| guardrail | string[] | The list of IAM policy ARNs that are applied as channel guardrails. |
| iam | string | The ARN of the IAM role that defines the permissions for . |
| logging | string | Specifies the logging level for this configuration. This property affects the log entries pushed to Amazon CloudWatch Logs. |
| sns | string[] | The ARNs of the SNS topics that deliver notifications to . |
| tags? | Cfn[] | The tags to add to the configuration. |
| team | string | The ID of the Microsoft Team authorized with . |
| teams | string | The ID of the Microsoft Teams channel. |
| teams | string | The name of the Microsoft Teams channel. |
| teams | string | The ID of the Microsoft Teams tenant. |
| user | boolean | IResolvable | Enables use of a user role requirement in your chat configuration. |
configurationName?
Type:
string
(optional)
The name of the configuration.
customizationResourceArns?
Type:
string[]
(optional)
Links a list of resource ARNs (for example, custom action ARNs) to a Microsoft Teams channel configuration for .
guardrailPolicies?
Type:
string[]
(optional)
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.
iamRoleArn?
Type:
string
(optional)
The ARN of the IAM role that defines the permissions for .
This is a user-defined role that will assume. This is not the service-linked role. For more information, see IAM Policies for in chat applications .
loggingLevel?
Type:
string
(optional, default: "NONE")
Specifies the logging level for this configuration. This property affects the log entries pushed to Amazon CloudWatch Logs.
Logging levels include ERROR , INFO , or NONE .
snsTopicArns?
Type:
string[]
(optional)
The ARNs of the SNS topics that deliver notifications to .
tags?
Type:
Cfn[]
(optional)
The tags to add to the configuration.
teamId?
Type:
string
(optional)
The ID of the Microsoft Team authorized with .
To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the in chat applications console. Then you can copy and paste the team ID from the console. For more details, see steps 1-3 in Tutorial: Get started with Microsoft Teams in the in chat applications Administrator Guide .
teamsChannelId?
Type:
string
(optional)
The ID of the Microsoft Teams channel.
To get the channel ID, open Microsoft Teams, right click on the channel name in the left pane, then choose Copy . An example of the channel ID syntax is: 19%3ab6ef35dc342d56ba5654e6fc6d25a071%40thread.tacv2 .
teamsChannelName?
Type:
string
(optional)
The name of the Microsoft Teams channel.
teamsTenantId?
Type:
string
(optional)
The ID of the Microsoft Teams tenant.
To get the tenant ID, you must perform the initial authorization flow with Microsoft Teams in the in chat applications console. Then you can copy and paste the tenant ID from the console. For more details, see steps 1-3 in Tutorial: Get started with Microsoft Teams in the in chat applications Administrator Guide .
userRoleRequired?
Type:
boolean | IResolvable
(optional, default: false)
Enables use of a user role requirement in your chat configuration.

.NET
Go
Java
Python
TypeScript