1. Packages
  2. Ibm Provider
  3. API Docs
  4. NotificationDistributionListDestination
ibm 1.88.0 published on Friday, Feb 6, 2026 by ibm-cloud
ibm logo
ibm 1.88.0 published on Friday, Feb 6, 2026 by ibm-cloud

    Note - This resource is currently in beta and subject to change without notice.

    Create, update, and delete notification distribution list destinations with this resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const notificationDistributionListDestinationInstance = new ibm.NotificationDistributionListDestination("notification_distribution_list_destination_instance", {
        accountId: "your_account_id",
        destinationId: "12345678-1234-1234-1234-123456789012",
        destinationType: "event_notifications",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    notification_distribution_list_destination_instance = ibm.NotificationDistributionListDestination("notification_distribution_list_destination_instance",
        account_id="your_account_id",
        destination_id="12345678-1234-1234-1234-123456789012",
        destination_type="event_notifications")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.NewNotificationDistributionListDestination(ctx, "notification_distribution_list_destination_instance", &ibm.NotificationDistributionListDestinationArgs{
    			AccountId:       pulumi.String("your_account_id"),
    			DestinationId:   pulumi.String("12345678-1234-1234-1234-123456789012"),
    			DestinationType: pulumi.String("event_notifications"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var notificationDistributionListDestinationInstance = new Ibm.NotificationDistributionListDestination("notification_distribution_list_destination_instance", new()
        {
            AccountId = "your_account_id",
            DestinationId = "12345678-1234-1234-1234-123456789012",
            DestinationType = "event_notifications",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.NotificationDistributionListDestination;
    import com.pulumi.ibm.NotificationDistributionListDestinationArgs;
    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 notificationDistributionListDestinationInstance = new NotificationDistributionListDestination("notificationDistributionListDestinationInstance", NotificationDistributionListDestinationArgs.builder()
                .accountId("your_account_id")
                .destinationId("12345678-1234-1234-1234-123456789012")
                .destinationType("event_notifications")
                .build());
    
        }
    }
    
    resources:
      notificationDistributionListDestinationInstance:
        type: ibm:NotificationDistributionListDestination
        name: notification_distribution_list_destination_instance
        properties:
          accountId: your_account_id
          destinationId: 12345678-1234-1234-1234-123456789012
          destinationType: event_notifications
    

    Create NotificationDistributionListDestination Resource

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

    Constructor syntax

    new NotificationDistributionListDestination(name: string, args: NotificationDistributionListDestinationArgs, opts?: CustomResourceOptions);
    @overload
    def NotificationDistributionListDestination(resource_name: str,
                                                args: NotificationDistributionListDestinationArgs,
                                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def NotificationDistributionListDestination(resource_name: str,
                                                opts: Optional[ResourceOptions] = None,
                                                account_id: Optional[str] = None,
                                                destination_type: Optional[str] = None,
                                                destination_id: Optional[str] = None,
                                                notification_distribution_list_destination_id: Optional[str] = None)
    func NewNotificationDistributionListDestination(ctx *Context, name string, args NotificationDistributionListDestinationArgs, opts ...ResourceOption) (*NotificationDistributionListDestination, error)
    public NotificationDistributionListDestination(string name, NotificationDistributionListDestinationArgs args, CustomResourceOptions? opts = null)
    public NotificationDistributionListDestination(String name, NotificationDistributionListDestinationArgs args)
    public NotificationDistributionListDestination(String name, NotificationDistributionListDestinationArgs args, CustomResourceOptions options)
    
    type: ibm:NotificationDistributionListDestination
    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 NotificationDistributionListDestinationArgs
    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 NotificationDistributionListDestinationArgs
    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 NotificationDistributionListDestinationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NotificationDistributionListDestinationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NotificationDistributionListDestinationArgs
    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 notificationDistributionListDestinationResource = new Ibm.NotificationDistributionListDestination("notificationDistributionListDestinationResource", new()
    {
        AccountId = "string",
        DestinationType = "string",
        DestinationId = "string",
        NotificationDistributionListDestinationId = "string",
    });
    
    example, err := ibm.NewNotificationDistributionListDestination(ctx, "notificationDistributionListDestinationResource", &ibm.NotificationDistributionListDestinationArgs{
    	AccountId:       pulumi.String("string"),
    	DestinationType: pulumi.String("string"),
    	DestinationId:   pulumi.String("string"),
    	NotificationDistributionListDestinationId: pulumi.String("string"),
    })
    
    var notificationDistributionListDestinationResource = new NotificationDistributionListDestination("notificationDistributionListDestinationResource", NotificationDistributionListDestinationArgs.builder()
        .accountId("string")
        .destinationType("string")
        .destinationId("string")
        .notificationDistributionListDestinationId("string")
        .build());
    
    notification_distribution_list_destination_resource = ibm.NotificationDistributionListDestination("notificationDistributionListDestinationResource",
        account_id="string",
        destination_type="string",
        destination_id="string",
        notification_distribution_list_destination_id="string")
    
    const notificationDistributionListDestinationResource = new ibm.NotificationDistributionListDestination("notificationDistributionListDestinationResource", {
        accountId: "string",
        destinationType: "string",
        destinationId: "string",
        notificationDistributionListDestinationId: "string",
    });
    
    type: ibm:NotificationDistributionListDestination
    properties:
        accountId: string
        destinationId: string
        destinationType: string
        notificationDistributionListDestinationId: string
    

    NotificationDistributionListDestination 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 NotificationDistributionListDestination resource accepts the following input properties:

    AccountId string
    The IBM Cloud account ID.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-zA-Z]{1,100}$/.
    DestinationType string
    The type of the destination.

    • Constraints: Allowable values are: event_notifications.
    DestinationId string
    The GUID of the Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    NotificationDistributionListDestinationId string
    The unique identifier of the notification_distribution_list_destination in the format account_id/destination_id.
    AccountId string
    The IBM Cloud account ID.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-zA-Z]{1,100}$/.
    DestinationType string
    The type of the destination.

    • Constraints: Allowable values are: event_notifications.
    DestinationId string
    The GUID of the Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    NotificationDistributionListDestinationId string
    The unique identifier of the notification_distribution_list_destination in the format account_id/destination_id.
    accountId String
    The IBM Cloud account ID.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-zA-Z]{1,100}$/.
    destinationType String
    The type of the destination.

    • Constraints: Allowable values are: event_notifications.
    destinationId String
    The GUID of the Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    notificationDistributionListDestinationId String
    The unique identifier of the notification_distribution_list_destination in the format account_id/destination_id.
    accountId string
    The IBM Cloud account ID.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-zA-Z]{1,100}$/.
    destinationType string
    The type of the destination.

    • Constraints: Allowable values are: event_notifications.
    destinationId string
    The GUID of the Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    notificationDistributionListDestinationId string
    The unique identifier of the notification_distribution_list_destination in the format account_id/destination_id.
    account_id str
    The IBM Cloud account ID.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-zA-Z]{1,100}$/.
    destination_type str
    The type of the destination.

    • Constraints: Allowable values are: event_notifications.
    destination_id str
    The GUID of the Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    notification_distribution_list_destination_id str
    The unique identifier of the notification_distribution_list_destination in the format account_id/destination_id.
    accountId String
    The IBM Cloud account ID.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-zA-Z]{1,100}$/.
    destinationType String
    The type of the destination.

    • Constraints: Allowable values are: event_notifications.
    destinationId String
    The GUID of the Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    notificationDistributionListDestinationId String
    The unique identifier of the notification_distribution_list_destination in the format account_id/destination_id.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NotificationDistributionListDestination 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 NotificationDistributionListDestination Resource

    Get an existing NotificationDistributionListDestination 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?: NotificationDistributionListDestinationState, opts?: CustomResourceOptions): NotificationDistributionListDestination
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            destination_id: Optional[str] = None,
            destination_type: Optional[str] = None,
            notification_distribution_list_destination_id: Optional[str] = None) -> NotificationDistributionListDestination
    func GetNotificationDistributionListDestination(ctx *Context, name string, id IDInput, state *NotificationDistributionListDestinationState, opts ...ResourceOption) (*NotificationDistributionListDestination, error)
    public static NotificationDistributionListDestination Get(string name, Input<string> id, NotificationDistributionListDestinationState? state, CustomResourceOptions? opts = null)
    public static NotificationDistributionListDestination get(String name, Output<String> id, NotificationDistributionListDestinationState state, CustomResourceOptions options)
    resources:  _:    type: ibm:NotificationDistributionListDestination    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.
    The following state arguments are supported:
    AccountId string
    The IBM Cloud account ID.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-zA-Z]{1,100}$/.
    DestinationId string
    The GUID of the Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    DestinationType string
    The type of the destination.

    • Constraints: Allowable values are: event_notifications.
    NotificationDistributionListDestinationId string
    The unique identifier of the notification_distribution_list_destination in the format account_id/destination_id.
    AccountId string
    The IBM Cloud account ID.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-zA-Z]{1,100}$/.
    DestinationId string
    The GUID of the Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    DestinationType string
    The type of the destination.

    • Constraints: Allowable values are: event_notifications.
    NotificationDistributionListDestinationId string
    The unique identifier of the notification_distribution_list_destination in the format account_id/destination_id.
    accountId String
    The IBM Cloud account ID.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-zA-Z]{1,100}$/.
    destinationId String
    The GUID of the Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    destinationType String
    The type of the destination.

    • Constraints: Allowable values are: event_notifications.
    notificationDistributionListDestinationId String
    The unique identifier of the notification_distribution_list_destination in the format account_id/destination_id.
    accountId string
    The IBM Cloud account ID.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-zA-Z]{1,100}$/.
    destinationId string
    The GUID of the Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    destinationType string
    The type of the destination.

    • Constraints: Allowable values are: event_notifications.
    notificationDistributionListDestinationId string
    The unique identifier of the notification_distribution_list_destination in the format account_id/destination_id.
    account_id str
    The IBM Cloud account ID.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-zA-Z]{1,100}$/.
    destination_id str
    The GUID of the Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    destination_type str
    The type of the destination.

    • Constraints: Allowable values are: event_notifications.
    notification_distribution_list_destination_id str
    The unique identifier of the notification_distribution_list_destination in the format account_id/destination_id.
    accountId String
    The IBM Cloud account ID.

    • Constraints: The maximum length is 100 characters. The minimum length is 1 character. The value must match regular expression /^[0-9a-zA-Z]{1,100}$/.
    destinationId String
    The GUID of the Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    destinationType String
    The type of the destination.

    • Constraints: Allowable values are: event_notifications.
    notificationDistributionListDestinationId String
    The unique identifier of the notification_distribution_list_destination in the format account_id/destination_id.

    Import

    You can import the ibm_notification_distribution_list_destination resource by using id. The ID is a combination of the account ID and destination ID.

    Syntax

    
    ```sh
    $ pulumi import ibm:index/notificationDistributionListDestination:NotificationDistributionListDestination notification_distribution_list_destination_instance /
    ```
    
    

    Example

    
    ```sh
    $ pulumi import ibm:index/notificationDistributionListDestination:NotificationDistributionListDestination notification_distribution_list_destination_instance your_account_id/12345678-1234-1234-1234-123456789012
    ```
    
    

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

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.88.0 published on Friday, Feb 6, 2026 by ibm-cloud
      Meet Neo: Your AI Platform Teammate