1. Packages
  2. Ibm Provider
  3. API Docs
  4. EnSubscriptionEmail
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.EnSubscriptionEmail

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Create, update, or delete a Email subscription by using IBM Cloud™ Event Notifications.

    Example Usage

    Email Subscription Updation

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const emailSubscription = new ibm.EnSubscriptionEmail("emailSubscription", {
        attributes: {
            adds: ["productionuser@ibm.com"],
            addNotificationPayload: true,
            fromName: "en@ibm.com",
            removes: ["testuser@gamil.com"],
            replyToMail: "compliancealert@ibm.com",
            replyToName: "Compliance User",
        },
        description: "Subscription for Certificate expiration alert",
        destinationId: "email_destination_id",
        instanceGuid: "my_instance_guid",
        topicId: "topicId",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    email_subscription = ibm.EnSubscriptionEmail("emailSubscription",
        attributes={
            "adds": ["productionuser@ibm.com"],
            "add_notification_payload": True,
            "from_name": "en@ibm.com",
            "removes": ["testuser@gamil.com"],
            "reply_to_mail": "compliancealert@ibm.com",
            "reply_to_name": "Compliance User",
        },
        description="Subscription for Certificate expiration alert",
        destination_id="email_destination_id",
        instance_guid="my_instance_guid",
        topic_id="topicId")
    
    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.NewEnSubscriptionEmail(ctx, "emailSubscription", &ibm.EnSubscriptionEmailArgs{
    			Attributes: &ibm.EnSubscriptionEmailAttributesArgs{
    				Adds: pulumi.StringArray{
    					pulumi.String("productionuser@ibm.com"),
    				},
    				AddNotificationPayload: pulumi.Bool(true),
    				FromName:               pulumi.String("en@ibm.com"),
    				Removes: pulumi.StringArray{
    					pulumi.String("testuser@gamil.com"),
    				},
    				ReplyToMail: pulumi.String("compliancealert@ibm.com"),
    				ReplyToName: pulumi.String("Compliance User"),
    			},
    			Description:   pulumi.String("Subscription for Certificate expiration alert"),
    			DestinationId: pulumi.String("email_destination_id"),
    			InstanceGuid:  pulumi.String("my_instance_guid"),
    			TopicId:       pulumi.String("topicId"),
    		})
    		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 emailSubscription = new Ibm.EnSubscriptionEmail("emailSubscription", new()
        {
            Attributes = new Ibm.Inputs.EnSubscriptionEmailAttributesArgs
            {
                Adds = new[]
                {
                    "productionuser@ibm.com",
                },
                AddNotificationPayload = true,
                FromName = "en@ibm.com",
                Removes = new[]
                {
                    "testuser@gamil.com",
                },
                ReplyToMail = "compliancealert@ibm.com",
                ReplyToName = "Compliance User",
            },
            Description = "Subscription for Certificate expiration alert",
            DestinationId = "email_destination_id",
            InstanceGuid = "my_instance_guid",
            TopicId = "topicId",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.EnSubscriptionEmail;
    import com.pulumi.ibm.EnSubscriptionEmailArgs;
    import com.pulumi.ibm.inputs.EnSubscriptionEmailAttributesArgs;
    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 emailSubscription = new EnSubscriptionEmail("emailSubscription", EnSubscriptionEmailArgs.builder()
                .attributes(EnSubscriptionEmailAttributesArgs.builder()
                    .adds("productionuser@ibm.com")
                    .addNotificationPayload(true)
                    .fromName("en@ibm.com")
                    .removes("testuser@gamil.com")
                    .replyToMail("compliancealert@ibm.com")
                    .replyToName("Compliance User")
                    .build())
                .description("Subscription for Certificate expiration alert")
                .destinationId("email_destination_id")
                .instanceGuid("my_instance_guid")
                .topicId("topicId")
                .build());
    
        }
    }
    
    resources:
      emailSubscription:
        type: ibm:EnSubscriptionEmail
        properties:
          attributes:
            adds:
              - productionuser@ibm.com
            addNotificationPayload: true
            fromName: en@ibm.com
            removes:
              - testuser@gamil.com
            replyToMail: compliancealert@ibm.com
            replyToName: Compliance User
          description: Subscription for Certificate expiration alert
          destinationId: email_destination_id
          instanceGuid: my_instance_guid
          topicId: topicId
    

    Create EnSubscriptionEmail Resource

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

    Constructor syntax

    new EnSubscriptionEmail(name: string, args: EnSubscriptionEmailArgs, opts?: CustomResourceOptions);
    @overload
    def EnSubscriptionEmail(resource_name: str,
                            args: EnSubscriptionEmailArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def EnSubscriptionEmail(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            destination_id: Optional[str] = None,
                            instance_guid: Optional[str] = None,
                            topic_id: Optional[str] = None,
                            attributes: Optional[EnSubscriptionEmailAttributesArgs] = None,
                            description: Optional[str] = None,
                            en_subscription_email_id: Optional[str] = None,
                            name: Optional[str] = None)
    func NewEnSubscriptionEmail(ctx *Context, name string, args EnSubscriptionEmailArgs, opts ...ResourceOption) (*EnSubscriptionEmail, error)
    public EnSubscriptionEmail(string name, EnSubscriptionEmailArgs args, CustomResourceOptions? opts = null)
    public EnSubscriptionEmail(String name, EnSubscriptionEmailArgs args)
    public EnSubscriptionEmail(String name, EnSubscriptionEmailArgs args, CustomResourceOptions options)
    
    type: ibm:EnSubscriptionEmail
    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 EnSubscriptionEmailArgs
    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 EnSubscriptionEmailArgs
    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 EnSubscriptionEmailArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EnSubscriptionEmailArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EnSubscriptionEmailArgs
    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 enSubscriptionEmailResource = new Ibm.EnSubscriptionEmail("enSubscriptionEmailResource", new()
    {
        DestinationId = "string",
        InstanceGuid = "string",
        TopicId = "string",
        Attributes = new Ibm.Inputs.EnSubscriptionEmailAttributesArgs
        {
            AddNotificationPayload = false,
            Adds = new[]
            {
                "string",
            },
            FromName = "string",
            Inviteds = new[]
            {
                "string",
            },
            Removes = new[]
            {
                "string",
            },
            ReplyToMail = "string",
            ReplyToName = "string",
        },
        Description = "string",
        EnSubscriptionEmailId = "string",
        Name = "string",
    });
    
    example, err := ibm.NewEnSubscriptionEmail(ctx, "enSubscriptionEmailResource", &ibm.EnSubscriptionEmailArgs{
    	DestinationId: pulumi.String("string"),
    	InstanceGuid:  pulumi.String("string"),
    	TopicId:       pulumi.String("string"),
    	Attributes: &ibm.EnSubscriptionEmailAttributesArgs{
    		AddNotificationPayload: pulumi.Bool(false),
    		Adds: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		FromName: pulumi.String("string"),
    		Inviteds: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		Removes: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		ReplyToMail: pulumi.String("string"),
    		ReplyToName: pulumi.String("string"),
    	},
    	Description:           pulumi.String("string"),
    	EnSubscriptionEmailId: pulumi.String("string"),
    	Name:                  pulumi.String("string"),
    })
    
    var enSubscriptionEmailResource = new EnSubscriptionEmail("enSubscriptionEmailResource", EnSubscriptionEmailArgs.builder()
        .destinationId("string")
        .instanceGuid("string")
        .topicId("string")
        .attributes(EnSubscriptionEmailAttributesArgs.builder()
            .addNotificationPayload(false)
            .adds("string")
            .fromName("string")
            .inviteds("string")
            .removes("string")
            .replyToMail("string")
            .replyToName("string")
            .build())
        .description("string")
        .enSubscriptionEmailId("string")
        .name("string")
        .build());
    
    en_subscription_email_resource = ibm.EnSubscriptionEmail("enSubscriptionEmailResource",
        destination_id="string",
        instance_guid="string",
        topic_id="string",
        attributes={
            "add_notification_payload": False,
            "adds": ["string"],
            "from_name": "string",
            "inviteds": ["string"],
            "removes": ["string"],
            "reply_to_mail": "string",
            "reply_to_name": "string",
        },
        description="string",
        en_subscription_email_id="string",
        name="string")
    
    const enSubscriptionEmailResource = new ibm.EnSubscriptionEmail("enSubscriptionEmailResource", {
        destinationId: "string",
        instanceGuid: "string",
        topicId: "string",
        attributes: {
            addNotificationPayload: false,
            adds: ["string"],
            fromName: "string",
            inviteds: ["string"],
            removes: ["string"],
            replyToMail: "string",
            replyToName: "string",
        },
        description: "string",
        enSubscriptionEmailId: "string",
        name: "string",
    });
    
    type: ibm:EnSubscriptionEmail
    properties:
        attributes:
            addNotificationPayload: false
            adds:
                - string
            fromName: string
            inviteds:
                - string
            removes:
                - string
            replyToMail: string
            replyToName: string
        description: string
        destinationId: string
        enSubscriptionEmailId: string
        instanceGuid: string
        name: string
        topicId: string
    

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

    DestinationId string
    Destination ID.
    InstanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    TopicId string
    Topic ID.
    Attributes EnSubscriptionEmailAttributes
    Subscription attributes. Nested scheme for attributes:
    Description string
    Subscription description.
    EnSubscriptionEmailId string
    (String) The unique identifier of the email_subscription.
    Name string
    Subscription name.
    DestinationId string
    Destination ID.
    InstanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    TopicId string
    Topic ID.
    Attributes EnSubscriptionEmailAttributesArgs
    Subscription attributes. Nested scheme for attributes:
    Description string
    Subscription description.
    EnSubscriptionEmailId string
    (String) The unique identifier of the email_subscription.
    Name string
    Subscription name.
    destinationId String
    Destination ID.
    instanceGuid String
    Unique identifier for IBM Cloud Event Notifications instance.
    topicId String
    Topic ID.
    attributes EnSubscriptionEmailAttributes
    Subscription attributes. Nested scheme for attributes:
    description String
    Subscription description.
    enSubscriptionEmailId String
    (String) The unique identifier of the email_subscription.
    name String
    Subscription name.
    destinationId string
    Destination ID.
    instanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    topicId string
    Topic ID.
    attributes EnSubscriptionEmailAttributes
    Subscription attributes. Nested scheme for attributes:
    description string
    Subscription description.
    enSubscriptionEmailId string
    (String) The unique identifier of the email_subscription.
    name string
    Subscription name.
    destination_id str
    Destination ID.
    instance_guid str
    Unique identifier for IBM Cloud Event Notifications instance.
    topic_id str
    Topic ID.
    attributes EnSubscriptionEmailAttributesArgs
    Subscription attributes. Nested scheme for attributes:
    description str
    Subscription description.
    en_subscription_email_id str
    (String) The unique identifier of the email_subscription.
    name str
    Subscription name.
    destinationId String
    Destination ID.
    instanceGuid String
    Unique identifier for IBM Cloud Event Notifications instance.
    topicId String
    Topic ID.
    attributes Property Map
    Subscription attributes. Nested scheme for attributes:
    description String
    Subscription description.
    enSubscriptionEmailId String
    (String) The unique identifier of the email_subscription.
    name String
    Subscription name.

    Outputs

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

    DestinationName string
    The Destintion name.
    DestinationType string
    The type of Destination.
    From string
    From Email ID (it will be displayed only in case of smtp_ibm destination type).
    Id string
    The provider-assigned unique ID for this managed resource.
    SubscriptionId string
    (String) The unique identifier of the created subscription.
    TopicName string
    Name of the topic.
    UpdatedAt string
    (String) Last updated time.
    DestinationName string
    The Destintion name.
    DestinationType string
    The type of Destination.
    From string
    From Email ID (it will be displayed only in case of smtp_ibm destination type).
    Id string
    The provider-assigned unique ID for this managed resource.
    SubscriptionId string
    (String) The unique identifier of the created subscription.
    TopicName string
    Name of the topic.
    UpdatedAt string
    (String) Last updated time.
    destinationName String
    The Destintion name.
    destinationType String
    The type of Destination.
    from String
    From Email ID (it will be displayed only in case of smtp_ibm destination type).
    id String
    The provider-assigned unique ID for this managed resource.
    subscriptionId String
    (String) The unique identifier of the created subscription.
    topicName String
    Name of the topic.
    updatedAt String
    (String) Last updated time.
    destinationName string
    The Destintion name.
    destinationType string
    The type of Destination.
    from string
    From Email ID (it will be displayed only in case of smtp_ibm destination type).
    id string
    The provider-assigned unique ID for this managed resource.
    subscriptionId string
    (String) The unique identifier of the created subscription.
    topicName string
    Name of the topic.
    updatedAt string
    (String) Last updated time.
    destination_name str
    The Destintion name.
    destination_type str
    The type of Destination.
    from_ str
    From Email ID (it will be displayed only in case of smtp_ibm destination type).
    id str
    The provider-assigned unique ID for this managed resource.
    subscription_id str
    (String) The unique identifier of the created subscription.
    topic_name str
    Name of the topic.
    updated_at str
    (String) Last updated time.
    destinationName String
    The Destintion name.
    destinationType String
    The type of Destination.
    from String
    From Email ID (it will be displayed only in case of smtp_ibm destination type).
    id String
    The provider-assigned unique ID for this managed resource.
    subscriptionId String
    (String) The unique identifier of the created subscription.
    topicName String
    Name of the topic.
    updatedAt String
    (String) Last updated time.

    Look up Existing EnSubscriptionEmail Resource

    Get an existing EnSubscriptionEmail 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?: EnSubscriptionEmailState, opts?: CustomResourceOptions): EnSubscriptionEmail
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            attributes: Optional[EnSubscriptionEmailAttributesArgs] = None,
            description: Optional[str] = None,
            destination_id: Optional[str] = None,
            destination_name: Optional[str] = None,
            destination_type: Optional[str] = None,
            en_subscription_email_id: Optional[str] = None,
            from_: Optional[str] = None,
            instance_guid: Optional[str] = None,
            name: Optional[str] = None,
            subscription_id: Optional[str] = None,
            topic_id: Optional[str] = None,
            topic_name: Optional[str] = None,
            updated_at: Optional[str] = None) -> EnSubscriptionEmail
    func GetEnSubscriptionEmail(ctx *Context, name string, id IDInput, state *EnSubscriptionEmailState, opts ...ResourceOption) (*EnSubscriptionEmail, error)
    public static EnSubscriptionEmail Get(string name, Input<string> id, EnSubscriptionEmailState? state, CustomResourceOptions? opts = null)
    public static EnSubscriptionEmail get(String name, Output<String> id, EnSubscriptionEmailState state, CustomResourceOptions options)
    resources:  _:    type: ibm:EnSubscriptionEmail    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:
    Attributes EnSubscriptionEmailAttributes
    Subscription attributes. Nested scheme for attributes:
    Description string
    Subscription description.
    DestinationId string
    Destination ID.
    DestinationName string
    The Destintion name.
    DestinationType string
    The type of Destination.
    EnSubscriptionEmailId string
    (String) The unique identifier of the email_subscription.
    From string
    From Email ID (it will be displayed only in case of smtp_ibm destination type).
    InstanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    Name string
    Subscription name.
    SubscriptionId string
    (String) The unique identifier of the created subscription.
    TopicId string
    Topic ID.
    TopicName string
    Name of the topic.
    UpdatedAt string
    (String) Last updated time.
    Attributes EnSubscriptionEmailAttributesArgs
    Subscription attributes. Nested scheme for attributes:
    Description string
    Subscription description.
    DestinationId string
    Destination ID.
    DestinationName string
    The Destintion name.
    DestinationType string
    The type of Destination.
    EnSubscriptionEmailId string
    (String) The unique identifier of the email_subscription.
    From string
    From Email ID (it will be displayed only in case of smtp_ibm destination type).
    InstanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    Name string
    Subscription name.
    SubscriptionId string
    (String) The unique identifier of the created subscription.
    TopicId string
    Topic ID.
    TopicName string
    Name of the topic.
    UpdatedAt string
    (String) Last updated time.
    attributes EnSubscriptionEmailAttributes
    Subscription attributes. Nested scheme for attributes:
    description String
    Subscription description.
    destinationId String
    Destination ID.
    destinationName String
    The Destintion name.
    destinationType String
    The type of Destination.
    enSubscriptionEmailId String
    (String) The unique identifier of the email_subscription.
    from String
    From Email ID (it will be displayed only in case of smtp_ibm destination type).
    instanceGuid String
    Unique identifier for IBM Cloud Event Notifications instance.
    name String
    Subscription name.
    subscriptionId String
    (String) The unique identifier of the created subscription.
    topicId String
    Topic ID.
    topicName String
    Name of the topic.
    updatedAt String
    (String) Last updated time.
    attributes EnSubscriptionEmailAttributes
    Subscription attributes. Nested scheme for attributes:
    description string
    Subscription description.
    destinationId string
    Destination ID.
    destinationName string
    The Destintion name.
    destinationType string
    The type of Destination.
    enSubscriptionEmailId string
    (String) The unique identifier of the email_subscription.
    from string
    From Email ID (it will be displayed only in case of smtp_ibm destination type).
    instanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    name string
    Subscription name.
    subscriptionId string
    (String) The unique identifier of the created subscription.
    topicId string
    Topic ID.
    topicName string
    Name of the topic.
    updatedAt string
    (String) Last updated time.
    attributes EnSubscriptionEmailAttributesArgs
    Subscription attributes. Nested scheme for attributes:
    description str
    Subscription description.
    destination_id str
    Destination ID.
    destination_name str
    The Destintion name.
    destination_type str
    The type of Destination.
    en_subscription_email_id str
    (String) The unique identifier of the email_subscription.
    from_ str
    From Email ID (it will be displayed only in case of smtp_ibm destination type).
    instance_guid str
    Unique identifier for IBM Cloud Event Notifications instance.
    name str
    Subscription name.
    subscription_id str
    (String) The unique identifier of the created subscription.
    topic_id str
    Topic ID.
    topic_name str
    Name of the topic.
    updated_at str
    (String) Last updated time.
    attributes Property Map
    Subscription attributes. Nested scheme for attributes:
    description String
    Subscription description.
    destinationId String
    Destination ID.
    destinationName String
    The Destintion name.
    destinationType String
    The type of Destination.
    enSubscriptionEmailId String
    (String) The unique identifier of the email_subscription.
    from String
    From Email ID (it will be displayed only in case of smtp_ibm destination type).
    instanceGuid String
    Unique identifier for IBM Cloud Event Notifications instance.
    name String
    Subscription name.
    subscriptionId String
    (String) The unique identifier of the created subscription.
    topicId String
    Topic ID.
    topicName String
    Name of the topic.
    updatedAt String
    (String) Last updated time.

    Supporting Types

    EnSubscriptionEmailAttributes, EnSubscriptionEmailAttributesArgs

    AddNotificationPayload bool
    Whether to add the notification payload to the email.
    Adds List<string>
    The Email address to add in case of updating the list of email addressses
    FromName string
    The email address user from which email is addressed.
    Inviteds List<string>
    The Email address to send the email to.
    Removes List<string>
    The email id to be removed in case of smtp_ibm destination type.
    ReplyToMail string
    The email address to reply to.
    ReplyToName string
    The Email User Name to reply to.
    AddNotificationPayload bool
    Whether to add the notification payload to the email.
    Adds []string
    The Email address to add in case of updating the list of email addressses
    FromName string
    The email address user from which email is addressed.
    Inviteds []string
    The Email address to send the email to.
    Removes []string
    The email id to be removed in case of smtp_ibm destination type.
    ReplyToMail string
    The email address to reply to.
    ReplyToName string
    The Email User Name to reply to.
    addNotificationPayload Boolean
    Whether to add the notification payload to the email.
    adds List<String>
    The Email address to add in case of updating the list of email addressses
    fromName String
    The email address user from which email is addressed.
    inviteds List<String>
    The Email address to send the email to.
    removes List<String>
    The email id to be removed in case of smtp_ibm destination type.
    replyToMail String
    The email address to reply to.
    replyToName String
    The Email User Name to reply to.
    addNotificationPayload boolean
    Whether to add the notification payload to the email.
    adds string[]
    The Email address to add in case of updating the list of email addressses
    fromName string
    The email address user from which email is addressed.
    inviteds string[]
    The Email address to send the email to.
    removes string[]
    The email id to be removed in case of smtp_ibm destination type.
    replyToMail string
    The email address to reply to.
    replyToName string
    The Email User Name to reply to.
    add_notification_payload bool
    Whether to add the notification payload to the email.
    adds Sequence[str]
    The Email address to add in case of updating the list of email addressses
    from_name str
    The email address user from which email is addressed.
    inviteds Sequence[str]
    The Email address to send the email to.
    removes Sequence[str]
    The email id to be removed in case of smtp_ibm destination type.
    reply_to_mail str
    The email address to reply to.
    reply_to_name str
    The Email User Name to reply to.
    addNotificationPayload Boolean
    Whether to add the notification payload to the email.
    adds List<String>
    The Email address to add in case of updating the list of email addressses
    fromName String
    The email address user from which email is addressed.
    inviteds List<String>
    The Email address to send the email to.
    removes List<String>
    The email id to be removed in case of smtp_ibm destination type.
    replyToMail String
    The email address to reply to.
    replyToName String
    The Email User Name to reply to.

    Import

    You can import the ibm_en_subscription_email resource by using id.

    The id property can be formed from instance_guid, and subscription_id in the following format:

    <instance_guid>/<subscription_id>

    • instance_guid: A string. Unique identifier for IBM Cloud Event Notifications instance.

    • subscription_id: A string. Unique identifier for Subscription.

    Example

    $ pulumi import ibm:index/enSubscriptionEmail:EnSubscriptionEmail email_en_subscription <instance_guid>/<subscription_id>
    

    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.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud