1. Packages
  2. Ibm Provider
  3. API Docs
  4. EnDestinationAppConfiguration
ibm 1.85.0-beta0 published on Wednesday, Oct 29, 2025 by ibm-cloud

ibm.EnDestinationAppConfiguration

Get Started
ibm logo
ibm 1.85.0-beta0 published on Wednesday, Oct 29, 2025 by ibm-cloud

    Create, update, or delete a App Configuration destination by using IBM Cloud™ Event Notifications.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const acDestination = new ibm.EnDestinationAppConfiguration("acDestination", {
        instanceGuid: ibm_resource_instance.en_terraform_test_resource.guid,
        type: "app_configuration",
        collectFailedEvents: false,
        description: "Destination App Configuration for event notification",
        config: {
            params: {
                type: "features",
                crn: "crn:v1:bluemix:public:apprapp:us-south:a/4a74f2c31f554afc88156b73a1d577c6:dbxxxx93-0xxa-4xx5-axcf-c2faxxxd::",
                featureId: "test",
                environmentId: "stage",
            },
        },
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    ac_destination = ibm.EnDestinationAppConfiguration("acDestination",
        instance_guid=ibm_resource_instance["en_terraform_test_resource"]["guid"],
        type="app_configuration",
        collect_failed_events=False,
        description="Destination App Configuration for event notification",
        config={
            "params": {
                "type": "features",
                "crn": "crn:v1:bluemix:public:apprapp:us-south:a/4a74f2c31f554afc88156b73a1d577c6:dbxxxx93-0xxa-4xx5-axcf-c2faxxxd::",
                "feature_id": "test",
                "environment_id": "stage",
            },
        })
    
    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.NewEnDestinationAppConfiguration(ctx, "acDestination", &ibm.EnDestinationAppConfigurationArgs{
    			InstanceGuid:        pulumi.Any(ibm_resource_instance.En_terraform_test_resource.Guid),
    			Type:                pulumi.String("app_configuration"),
    			CollectFailedEvents: pulumi.Bool(false),
    			Description:         pulumi.String("Destination App Configuration for event notification"),
    			Config: &ibm.EnDestinationAppConfigurationConfigArgs{
    				Params: &ibm.EnDestinationAppConfigurationConfigParamsArgs{
    					Type:          pulumi.String("features"),
    					Crn:           pulumi.String("crn:v1:bluemix:public:apprapp:us-south:a/4a74f2c31f554afc88156b73a1d577c6:dbxxxx93-0xxa-4xx5-axcf-c2faxxxd::"),
    					FeatureId:     pulumi.String("test"),
    					EnvironmentId: pulumi.String("stage"),
    				},
    			},
    		})
    		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 acDestination = new Ibm.EnDestinationAppConfiguration("acDestination", new()
        {
            InstanceGuid = ibm_resource_instance.En_terraform_test_resource.Guid,
            Type = "app_configuration",
            CollectFailedEvents = false,
            Description = "Destination App Configuration for event notification",
            Config = new Ibm.Inputs.EnDestinationAppConfigurationConfigArgs
            {
                Params = new Ibm.Inputs.EnDestinationAppConfigurationConfigParamsArgs
                {
                    Type = "features",
                    Crn = "crn:v1:bluemix:public:apprapp:us-south:a/4a74f2c31f554afc88156b73a1d577c6:dbxxxx93-0xxa-4xx5-axcf-c2faxxxd::",
                    FeatureId = "test",
                    EnvironmentId = "stage",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.EnDestinationAppConfiguration;
    import com.pulumi.ibm.EnDestinationAppConfigurationArgs;
    import com.pulumi.ibm.inputs.EnDestinationAppConfigurationConfigArgs;
    import com.pulumi.ibm.inputs.EnDestinationAppConfigurationConfigParamsArgs;
    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 acDestination = new EnDestinationAppConfiguration("acDestination", EnDestinationAppConfigurationArgs.builder()
                .instanceGuid(ibm_resource_instance.en_terraform_test_resource().guid())
                .type("app_configuration")
                .collectFailedEvents(false)
                .description("Destination App Configuration for event notification")
                .config(EnDestinationAppConfigurationConfigArgs.builder()
                    .params(EnDestinationAppConfigurationConfigParamsArgs.builder()
                        .type("features")
                        .crn("crn:v1:bluemix:public:apprapp:us-south:a/4a74f2c31f554afc88156b73a1d577c6:dbxxxx93-0xxa-4xx5-axcf-c2faxxxd::")
                        .featureId("test")
                        .environmentId("stage")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      acDestination:
        type: ibm:EnDestinationAppConfiguration
        properties:
          instanceGuid: ${ibm_resource_instance.en_terraform_test_resource.guid}
          type: app_configuration
          collectFailedEvents: false
          description: Destination App Configuration for event notification
          config:
            params:
              type: features
              crn: 'crn:v1:bluemix:public:apprapp:us-south:a/4a74f2c31f554afc88156b73a1d577c6:dbxxxx93-0xxa-4xx5-axcf-c2faxxxd::'
              featureId: test
              environmentId: stage
    

    Create EnDestinationAppConfiguration Resource

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

    Constructor syntax

    new EnDestinationAppConfiguration(name: string, args: EnDestinationAppConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def EnDestinationAppConfiguration(resource_name: str,
                                      args: EnDestinationAppConfigurationArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def EnDestinationAppConfiguration(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      config: Optional[EnDestinationAppConfigurationConfigArgs] = None,
                                      instance_guid: Optional[str] = None,
                                      type: Optional[str] = None,
                                      collect_failed_events: Optional[bool] = None,
                                      description: Optional[str] = None,
                                      en_destination_app_configuration_id: Optional[str] = None,
                                      name: Optional[str] = None)
    func NewEnDestinationAppConfiguration(ctx *Context, name string, args EnDestinationAppConfigurationArgs, opts ...ResourceOption) (*EnDestinationAppConfiguration, error)
    public EnDestinationAppConfiguration(string name, EnDestinationAppConfigurationArgs args, CustomResourceOptions? opts = null)
    public EnDestinationAppConfiguration(String name, EnDestinationAppConfigurationArgs args)
    public EnDestinationAppConfiguration(String name, EnDestinationAppConfigurationArgs args, CustomResourceOptions options)
    
    type: ibm:EnDestinationAppConfiguration
    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 EnDestinationAppConfigurationArgs
    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 EnDestinationAppConfigurationArgs
    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 EnDestinationAppConfigurationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EnDestinationAppConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EnDestinationAppConfigurationArgs
    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 enDestinationAppConfigurationResource = new Ibm.EnDestinationAppConfiguration("enDestinationAppConfigurationResource", new()
    {
        Config = new Ibm.Inputs.EnDestinationAppConfigurationConfigArgs
        {
            Params = new Ibm.Inputs.EnDestinationAppConfigurationConfigParamsArgs
            {
                Crn = "string",
                EnvironmentId = "string",
                FeatureId = "string",
                Type = "string",
            },
        },
        InstanceGuid = "string",
        Type = "string",
        CollectFailedEvents = false,
        Description = "string",
        EnDestinationAppConfigurationId = "string",
        Name = "string",
    });
    
    example, err := ibm.NewEnDestinationAppConfiguration(ctx, "enDestinationAppConfigurationResource", &ibm.EnDestinationAppConfigurationArgs{
    	Config: &ibm.EnDestinationAppConfigurationConfigArgs{
    		Params: &ibm.EnDestinationAppConfigurationConfigParamsArgs{
    			Crn:           pulumi.String("string"),
    			EnvironmentId: pulumi.String("string"),
    			FeatureId:     pulumi.String("string"),
    			Type:          pulumi.String("string"),
    		},
    	},
    	InstanceGuid:                    pulumi.String("string"),
    	Type:                            pulumi.String("string"),
    	CollectFailedEvents:             pulumi.Bool(false),
    	Description:                     pulumi.String("string"),
    	EnDestinationAppConfigurationId: pulumi.String("string"),
    	Name:                            pulumi.String("string"),
    })
    
    var enDestinationAppConfigurationResource = new EnDestinationAppConfiguration("enDestinationAppConfigurationResource", EnDestinationAppConfigurationArgs.builder()
        .config(EnDestinationAppConfigurationConfigArgs.builder()
            .params(EnDestinationAppConfigurationConfigParamsArgs.builder()
                .crn("string")
                .environmentId("string")
                .featureId("string")
                .type("string")
                .build())
            .build())
        .instanceGuid("string")
        .type("string")
        .collectFailedEvents(false)
        .description("string")
        .enDestinationAppConfigurationId("string")
        .name("string")
        .build());
    
    en_destination_app_configuration_resource = ibm.EnDestinationAppConfiguration("enDestinationAppConfigurationResource",
        config={
            "params": {
                "crn": "string",
                "environment_id": "string",
                "feature_id": "string",
                "type": "string",
            },
        },
        instance_guid="string",
        type="string",
        collect_failed_events=False,
        description="string",
        en_destination_app_configuration_id="string",
        name="string")
    
    const enDestinationAppConfigurationResource = new ibm.EnDestinationAppConfiguration("enDestinationAppConfigurationResource", {
        config: {
            params: {
                crn: "string",
                environmentId: "string",
                featureId: "string",
                type: "string",
            },
        },
        instanceGuid: "string",
        type: "string",
        collectFailedEvents: false,
        description: "string",
        enDestinationAppConfigurationId: "string",
        name: "string",
    });
    
    type: ibm:EnDestinationAppConfiguration
    properties:
        collectFailedEvents: false
        config:
            params:
                crn: string
                environmentId: string
                featureId: string
                type: string
        description: string
        enDestinationAppConfigurationId: string
        instanceGuid: string
        name: string
        type: string
    

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

    Config EnDestinationAppConfigurationConfig

    Payload describing a destination configuration.

    Nested scheme for config:

    InstanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    Type string
    msteams.
    CollectFailedEvents bool
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    Description string
    The Destination description.
    EnDestinationAppConfigurationId string
    (String) The unique identifier of the ac_destination.
    Name string
    The Destintion name.
    Config EnDestinationAppConfigurationConfigArgs

    Payload describing a destination configuration.

    Nested scheme for config:

    InstanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    Type string
    msteams.
    CollectFailedEvents bool
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    Description string
    The Destination description.
    EnDestinationAppConfigurationId string
    (String) The unique identifier of the ac_destination.
    Name string
    The Destintion name.
    config EnDestinationAppConfigurationConfig

    Payload describing a destination configuration.

    Nested scheme for config:

    instanceGuid String
    Unique identifier for IBM Cloud Event Notifications instance.
    type String
    msteams.
    collectFailedEvents Boolean
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    description String
    The Destination description.
    enDestinationAppConfigurationId String
    (String) The unique identifier of the ac_destination.
    name String
    The Destintion name.
    config EnDestinationAppConfigurationConfig

    Payload describing a destination configuration.

    Nested scheme for config:

    instanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    type string
    msteams.
    collectFailedEvents boolean
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    description string
    The Destination description.
    enDestinationAppConfigurationId string
    (String) The unique identifier of the ac_destination.
    name string
    The Destintion name.
    config EnDestinationAppConfigurationConfigArgs

    Payload describing a destination configuration.

    Nested scheme for config:

    instance_guid str
    Unique identifier for IBM Cloud Event Notifications instance.
    type str
    msteams.
    collect_failed_events bool
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    description str
    The Destination description.
    en_destination_app_configuration_id str
    (String) The unique identifier of the ac_destination.
    name str
    The Destintion name.
    config Property Map

    Payload describing a destination configuration.

    Nested scheme for config:

    instanceGuid String
    Unique identifier for IBM Cloud Event Notifications instance.
    type String
    msteams.
    collectFailedEvents Boolean
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    description String
    The Destination description.
    enDestinationAppConfigurationId String
    (String) The unique identifier of the ac_destination.
    name String
    The Destintion name.

    Outputs

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

    DestinationId string
    (String) The unique identifier of the created destination.
    Id string
    The provider-assigned unique ID for this managed resource.
    SubscriptionCount double
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    SubscriptionNames List<string>
    (List) List of subscriptions.
    UpdatedAt string
    (String) Last updated time.
    DestinationId string
    (String) The unique identifier of the created destination.
    Id string
    The provider-assigned unique ID for this managed resource.
    SubscriptionCount float64
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    SubscriptionNames []string
    (List) List of subscriptions.
    UpdatedAt string
    (String) Last updated time.
    destinationId String
    (String) The unique identifier of the created destination.
    id String
    The provider-assigned unique ID for this managed resource.
    subscriptionCount Double
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    subscriptionNames List<String>
    (List) List of subscriptions.
    updatedAt String
    (String) Last updated time.
    destinationId string
    (String) The unique identifier of the created destination.
    id string
    The provider-assigned unique ID for this managed resource.
    subscriptionCount number
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    subscriptionNames string[]
    (List) List of subscriptions.
    updatedAt string
    (String) Last updated time.
    destination_id str
    (String) The unique identifier of the created destination.
    id str
    The provider-assigned unique ID for this managed resource.
    subscription_count float
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    subscription_names Sequence[str]
    (List) List of subscriptions.
    updated_at str
    (String) Last updated time.
    destinationId String
    (String) The unique identifier of the created destination.
    id String
    The provider-assigned unique ID for this managed resource.
    subscriptionCount Number
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    subscriptionNames List<String>
    (List) List of subscriptions.
    updatedAt String
    (String) Last updated time.

    Look up Existing EnDestinationAppConfiguration Resource

    Get an existing EnDestinationAppConfiguration 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?: EnDestinationAppConfigurationState, opts?: CustomResourceOptions): EnDestinationAppConfiguration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            collect_failed_events: Optional[bool] = None,
            config: Optional[EnDestinationAppConfigurationConfigArgs] = None,
            description: Optional[str] = None,
            destination_id: Optional[str] = None,
            en_destination_app_configuration_id: Optional[str] = None,
            instance_guid: Optional[str] = None,
            name: Optional[str] = None,
            subscription_count: Optional[float] = None,
            subscription_names: Optional[Sequence[str]] = None,
            type: Optional[str] = None,
            updated_at: Optional[str] = None) -> EnDestinationAppConfiguration
    func GetEnDestinationAppConfiguration(ctx *Context, name string, id IDInput, state *EnDestinationAppConfigurationState, opts ...ResourceOption) (*EnDestinationAppConfiguration, error)
    public static EnDestinationAppConfiguration Get(string name, Input<string> id, EnDestinationAppConfigurationState? state, CustomResourceOptions? opts = null)
    public static EnDestinationAppConfiguration get(String name, Output<String> id, EnDestinationAppConfigurationState state, CustomResourceOptions options)
    resources:  _:    type: ibm:EnDestinationAppConfiguration    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:
    CollectFailedEvents bool
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    Config EnDestinationAppConfigurationConfig

    Payload describing a destination configuration.

    Nested scheme for config:

    Description string
    The Destination description.
    DestinationId string
    (String) The unique identifier of the created destination.
    EnDestinationAppConfigurationId string
    (String) The unique identifier of the ac_destination.
    InstanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    Name string
    The Destintion name.
    SubscriptionCount double
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    SubscriptionNames List<string>
    (List) List of subscriptions.
    Type string
    msteams.
    UpdatedAt string
    (String) Last updated time.
    CollectFailedEvents bool
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    Config EnDestinationAppConfigurationConfigArgs

    Payload describing a destination configuration.

    Nested scheme for config:

    Description string
    The Destination description.
    DestinationId string
    (String) The unique identifier of the created destination.
    EnDestinationAppConfigurationId string
    (String) The unique identifier of the ac_destination.
    InstanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    Name string
    The Destintion name.
    SubscriptionCount float64
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    SubscriptionNames []string
    (List) List of subscriptions.
    Type string
    msteams.
    UpdatedAt string
    (String) Last updated time.
    collectFailedEvents Boolean
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    config EnDestinationAppConfigurationConfig

    Payload describing a destination configuration.

    Nested scheme for config:

    description String
    The Destination description.
    destinationId String
    (String) The unique identifier of the created destination.
    enDestinationAppConfigurationId String
    (String) The unique identifier of the ac_destination.
    instanceGuid String
    Unique identifier for IBM Cloud Event Notifications instance.
    name String
    The Destintion name.
    subscriptionCount Double
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    subscriptionNames List<String>
    (List) List of subscriptions.
    type String
    msteams.
    updatedAt String
    (String) Last updated time.
    collectFailedEvents boolean
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    config EnDestinationAppConfigurationConfig

    Payload describing a destination configuration.

    Nested scheme for config:

    description string
    The Destination description.
    destinationId string
    (String) The unique identifier of the created destination.
    enDestinationAppConfigurationId string
    (String) The unique identifier of the ac_destination.
    instanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    name string
    The Destintion name.
    subscriptionCount number
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    subscriptionNames string[]
    (List) List of subscriptions.
    type string
    msteams.
    updatedAt string
    (String) Last updated time.
    collect_failed_events bool
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    config EnDestinationAppConfigurationConfigArgs

    Payload describing a destination configuration.

    Nested scheme for config:

    description str
    The Destination description.
    destination_id str
    (String) The unique identifier of the created destination.
    en_destination_app_configuration_id str
    (String) The unique identifier of the ac_destination.
    instance_guid str
    Unique identifier for IBM Cloud Event Notifications instance.
    name str
    The Destintion name.
    subscription_count float
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    subscription_names Sequence[str]
    (List) List of subscriptions.
    type str
    msteams.
    updated_at str
    (String) Last updated time.
    collectFailedEvents Boolean
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    config Property Map

    Payload describing a destination configuration.

    Nested scheme for config:

    description String
    The Destination description.
    destinationId String
    (String) The unique identifier of the created destination.
    enDestinationAppConfigurationId String
    (String) The unique identifier of the ac_destination.
    instanceGuid String
    Unique identifier for IBM Cloud Event Notifications instance.
    name String
    The Destintion name.
    subscriptionCount Number
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    subscriptionNames List<String>
    (List) List of subscriptions.
    type String
    msteams.
    updatedAt String
    (String) Last updated time.

    Supporting Types

    EnDestinationAppConfigurationConfig, EnDestinationAppConfigurationConfigArgs

    params Property Map
    Nested scheme for params:

    EnDestinationAppConfigurationConfigParams, EnDestinationAppConfigurationConfigParamsArgs

    Crn string
    CRN of the App Configuration instance
    EnvironmentId string
    Environment ID of App Configuration
    FeatureId string
    Feature ID of App Configuration
    Type string
    msteams.
    Crn string
    CRN of the App Configuration instance
    EnvironmentId string
    Environment ID of App Configuration
    FeatureId string
    Feature ID of App Configuration
    Type string
    msteams.
    crn String
    CRN of the App Configuration instance
    environmentId String
    Environment ID of App Configuration
    featureId String
    Feature ID of App Configuration
    type String
    msteams.
    crn string
    CRN of the App Configuration instance
    environmentId string
    Environment ID of App Configuration
    featureId string
    Feature ID of App Configuration
    type string
    msteams.
    crn str
    CRN of the App Configuration instance
    environment_id str
    Environment ID of App Configuration
    feature_id str
    Feature ID of App Configuration
    type str
    msteams.
    crn String
    CRN of the App Configuration instance
    environmentId String
    Environment ID of App Configuration
    featureId String
    Feature ID of App Configuration
    type String
    msteams.

    Import

    You can import the ibm_en_destination_app_configuration resource by using id.

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

    <instance_guid>/<destination_id>

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

    • destination_id: A string. Unique identifier for Destination.

    Example

    $ pulumi import ibm:index/enDestinationAppConfiguration:EnDestinationAppConfiguration ac_destination <instance_guid>/<destination_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.85.0-beta0 published on Wednesday, Oct 29, 2025 by ibm-cloud
      Meet Neo: Your AI Platform Teammate