interface SlackTransmissionTargetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnAssociation.SlackTransmissionTargetProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnAssociation_SlackTransmissionTargetProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnAssociation.SlackTransmissionTargetProperty |
Python | aws_cdk.aws_devopsagent.CfnAssociation.SlackTransmissionTargetProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnAssociation » SlackTransmissionTargetProperty |
Defines the Slack channels where different types of agent notifications will be sent.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as devopsagent } from 'aws-cdk-lib';
const slackTransmissionTargetProperty: devopsagent.CfnAssociation.SlackTransmissionTargetProperty = {
incidentResponseTarget: {
channelId: 'channelId',
// the properties below are optional
channelName: 'channelName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| incident | IResolvable | Slack | Destination for AWS DevOps Agent Incident Response. |
incidentResponseTarget
Type:
IResolvable | Slack
Destination for AWS DevOps Agent Incident Response.

.NET
Go
Java
Python
TypeScript