honeycombio.SlackRecipient
Explore with Pulumi AI
# Resource: honeycombio.SlackRecipient
honeycombio.SlackRecipient
allows you to define and manage a Slack channel or user recipient that can be used by Triggers or BurnAlerts notifications.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as honeycombio from "@pulumi/honeycombio";
const alerts = new honeycombio.SlackRecipient("alerts", {channel: "#alerts"});
import pulumi
import pulumi_honeycombio as honeycombio
alerts = honeycombio.SlackRecipient("alerts", channel="#alerts")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/honeycombio/honeycombio"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := honeycombio.NewSlackRecipient(ctx, "alerts", &honeycombio.SlackRecipientArgs{
Channel: pulumi.String("#alerts"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Honeycombio = Pulumi.Honeycombio;
return await Deployment.RunAsync(() =>
{
var alerts = new Honeycombio.SlackRecipient("alerts", new()
{
Channel = "#alerts",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.honeycombio.SlackRecipient;
import com.pulumi.honeycombio.SlackRecipientArgs;
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 alerts = new SlackRecipient("alerts", SlackRecipientArgs.builder()
.channel("#alerts")
.build());
}
}
resources:
alerts:
type: honeycombio:SlackRecipient
properties:
channel: '#alerts'
Create SlackRecipient Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SlackRecipient(name: string, args: SlackRecipientArgs, opts?: CustomResourceOptions);
@overload
def SlackRecipient(resource_name: str,
args: SlackRecipientArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SlackRecipient(resource_name: str,
opts: Optional[ResourceOptions] = None,
channel: Optional[str] = None,
slack_recipient_id: Optional[str] = None)
func NewSlackRecipient(ctx *Context, name string, args SlackRecipientArgs, opts ...ResourceOption) (*SlackRecipient, error)
public SlackRecipient(string name, SlackRecipientArgs args, CustomResourceOptions? opts = null)
public SlackRecipient(String name, SlackRecipientArgs args)
public SlackRecipient(String name, SlackRecipientArgs args, CustomResourceOptions options)
type: honeycombio:SlackRecipient
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 SlackRecipientArgs
- 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 SlackRecipientArgs
- 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 SlackRecipientArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SlackRecipientArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SlackRecipientArgs
- 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 slackRecipientResource = new Honeycombio.SlackRecipient("slackRecipientResource", new()
{
Channel = "string",
SlackRecipientId = "string",
});
example, err := honeycombio.NewSlackRecipient(ctx, "slackRecipientResource", &honeycombio.SlackRecipientArgs{
Channel: pulumi.String("string"),
SlackRecipientId: pulumi.String("string"),
})
var slackRecipientResource = new SlackRecipient("slackRecipientResource", SlackRecipientArgs.builder()
.channel("string")
.slackRecipientId("string")
.build());
slack_recipient_resource = honeycombio.SlackRecipient("slackRecipientResource",
channel="string",
slack_recipient_id="string")
const slackRecipientResource = new honeycombio.SlackRecipient("slackRecipientResource", {
channel: "string",
slackRecipientId: "string",
});
type: honeycombio:SlackRecipient
properties:
channel: string
slackRecipientId: string
SlackRecipient Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SlackRecipient resource accepts the following input properties:
- Channel string
- The Slack channel or username to send the notification to. Must begin with
#
or@
or be a valid channel id e.g. `CABC123DEF. - Slack
Recipient stringId - The ID of the recipient.
- Channel string
- The Slack channel or username to send the notification to. Must begin with
#
or@
or be a valid channel id e.g. `CABC123DEF. - Slack
Recipient stringId - The ID of the recipient.
- channel String
- The Slack channel or username to send the notification to. Must begin with
#
or@
or be a valid channel id e.g. `CABC123DEF. - slack
Recipient StringId - The ID of the recipient.
- channel string
- The Slack channel or username to send the notification to. Must begin with
#
or@
or be a valid channel id e.g. `CABC123DEF. - slack
Recipient stringId - The ID of the recipient.
- channel str
- The Slack channel or username to send the notification to. Must begin with
#
or@
or be a valid channel id e.g. `CABC123DEF. - slack_
recipient_ strid - The ID of the recipient.
- channel String
- The Slack channel or username to send the notification to. Must begin with
#
or@
or be a valid channel id e.g. `CABC123DEF. - slack
Recipient StringId - The ID of the recipient.
Outputs
All input properties are implicitly available as output properties. Additionally, the SlackRecipient resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing SlackRecipient Resource
Get an existing SlackRecipient 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?: SlackRecipientState, opts?: CustomResourceOptions): SlackRecipient
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
channel: Optional[str] = None,
slack_recipient_id: Optional[str] = None) -> SlackRecipient
func GetSlackRecipient(ctx *Context, name string, id IDInput, state *SlackRecipientState, opts ...ResourceOption) (*SlackRecipient, error)
public static SlackRecipient Get(string name, Input<string> id, SlackRecipientState? state, CustomResourceOptions? opts = null)
public static SlackRecipient get(String name, Output<String> id, SlackRecipientState state, CustomResourceOptions options)
resources: _: type: honeycombio:SlackRecipient get: id: ${id}
- 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.
- Channel string
- The Slack channel or username to send the notification to. Must begin with
#
or@
or be a valid channel id e.g. `CABC123DEF. - Slack
Recipient stringId - The ID of the recipient.
- Channel string
- The Slack channel or username to send the notification to. Must begin with
#
or@
or be a valid channel id e.g. `CABC123DEF. - Slack
Recipient stringId - The ID of the recipient.
- channel String
- The Slack channel or username to send the notification to. Must begin with
#
or@
or be a valid channel id e.g. `CABC123DEF. - slack
Recipient StringId - The ID of the recipient.
- channel string
- The Slack channel or username to send the notification to. Must begin with
#
or@
or be a valid channel id e.g. `CABC123DEF. - slack
Recipient stringId - The ID of the recipient.
- channel str
- The Slack channel or username to send the notification to. Must begin with
#
or@
or be a valid channel id e.g. `CABC123DEF. - slack_
recipient_ strid - The ID of the recipient.
- channel String
- The Slack channel or username to send the notification to. Must begin with
#
or@
or be a valid channel id e.g. `CABC123DEF. - slack
Recipient StringId - The ID of the recipient.
Import
Slack Recipients can be imported by their ID, e.g.
$ pulumi import honeycombio:index/slackRecipient:SlackRecipient my_recipient nx2zsegA0dZ
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- honeycombio honeycombio/terraform-provider-honeycombio
- License
- Notes
- This Pulumi package is based on the
honeycombio
Terraform Provider.