1. Packages
  2. AWS Classic
  3. API Docs
  4. devopsguru
  5. ServiceIntegration

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.36.0 published on Wednesday, May 15, 2024 by Pulumi

aws.devopsguru.ServiceIntegration

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.36.0 published on Wednesday, May 15, 2024 by Pulumi

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.devopsguru.ServiceIntegration("example", {
        kmsServerSideEncryption: {
            optInStatus: "ENABLED",
            type: "AWS_OWNED_KMS_KEY",
        },
        logsAnomalyDetection: {
            optInStatus: "ENABLED",
        },
        opsCenter: {
            optInStatus: "ENABLED",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.devopsguru.ServiceIntegration("example",
        kms_server_side_encryption=aws.devopsguru.ServiceIntegrationKmsServerSideEncryptionArgs(
            opt_in_status="ENABLED",
            type="AWS_OWNED_KMS_KEY",
        ),
        logs_anomaly_detection=aws.devopsguru.ServiceIntegrationLogsAnomalyDetectionArgs(
            opt_in_status="ENABLED",
        ),
        ops_center=aws.devopsguru.ServiceIntegrationOpsCenterArgs(
            opt_in_status="ENABLED",
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/devopsguru"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := devopsguru.NewServiceIntegration(ctx, "example", &devopsguru.ServiceIntegrationArgs{
    			KmsServerSideEncryption: &devopsguru.ServiceIntegrationKmsServerSideEncryptionArgs{
    				OptInStatus: pulumi.String("ENABLED"),
    				Type:        pulumi.String("AWS_OWNED_KMS_KEY"),
    			},
    			LogsAnomalyDetection: &devopsguru.ServiceIntegrationLogsAnomalyDetectionArgs{
    				OptInStatus: pulumi.String("ENABLED"),
    			},
    			OpsCenter: &devopsguru.ServiceIntegrationOpsCenterArgs{
    				OptInStatus: pulumi.String("ENABLED"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.DevOpsGuru.ServiceIntegration("example", new()
        {
            KmsServerSideEncryption = new Aws.DevOpsGuru.Inputs.ServiceIntegrationKmsServerSideEncryptionArgs
            {
                OptInStatus = "ENABLED",
                Type = "AWS_OWNED_KMS_KEY",
            },
            LogsAnomalyDetection = new Aws.DevOpsGuru.Inputs.ServiceIntegrationLogsAnomalyDetectionArgs
            {
                OptInStatus = "ENABLED",
            },
            OpsCenter = new Aws.DevOpsGuru.Inputs.ServiceIntegrationOpsCenterArgs
            {
                OptInStatus = "ENABLED",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.devopsguru.ServiceIntegration;
    import com.pulumi.aws.devopsguru.ServiceIntegrationArgs;
    import com.pulumi.aws.devopsguru.inputs.ServiceIntegrationKmsServerSideEncryptionArgs;
    import com.pulumi.aws.devopsguru.inputs.ServiceIntegrationLogsAnomalyDetectionArgs;
    import com.pulumi.aws.devopsguru.inputs.ServiceIntegrationOpsCenterArgs;
    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 example = new ServiceIntegration("example", ServiceIntegrationArgs.builder()        
                .kmsServerSideEncryption(ServiceIntegrationKmsServerSideEncryptionArgs.builder()
                    .optInStatus("ENABLED")
                    .type("AWS_OWNED_KMS_KEY")
                    .build())
                .logsAnomalyDetection(ServiceIntegrationLogsAnomalyDetectionArgs.builder()
                    .optInStatus("ENABLED")
                    .build())
                .opsCenter(ServiceIntegrationOpsCenterArgs.builder()
                    .optInStatus("ENABLED")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:devopsguru:ServiceIntegration
        properties:
          kmsServerSideEncryption:
            optInStatus: ENABLED
            type: AWS_OWNED_KMS_KEY
          logsAnomalyDetection:
            optInStatus: ENABLED
          opsCenter:
            optInStatus: ENABLED
    

    Customer Managed KMS Key

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.kms.Key("example", {});
    const exampleServiceIntegration = new aws.devopsguru.ServiceIntegration("example", {
        kmsServerSideEncryption: {
            kmsKeyId: test.arn,
            optInStatus: "ENABLED",
            type: "CUSTOMER_MANAGED_KEY",
        },
        logsAnomalyDetection: {
            optInStatus: "DISABLED",
        },
        opsCenter: {
            optInStatus: "DISABLED",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.kms.Key("example")
    example_service_integration = aws.devopsguru.ServiceIntegration("example",
        kms_server_side_encryption=aws.devopsguru.ServiceIntegrationKmsServerSideEncryptionArgs(
            kms_key_id=test["arn"],
            opt_in_status="ENABLED",
            type="CUSTOMER_MANAGED_KEY",
        ),
        logs_anomaly_detection=aws.devopsguru.ServiceIntegrationLogsAnomalyDetectionArgs(
            opt_in_status="DISABLED",
        ),
        ops_center=aws.devopsguru.ServiceIntegrationOpsCenterArgs(
            opt_in_status="DISABLED",
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/devopsguru"
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/kms"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := kms.NewKey(ctx, "example", nil)
    		if err != nil {
    			return err
    		}
    		_, err = devopsguru.NewServiceIntegration(ctx, "example", &devopsguru.ServiceIntegrationArgs{
    			KmsServerSideEncryption: &devopsguru.ServiceIntegrationKmsServerSideEncryptionArgs{
    				KmsKeyId:    pulumi.Any(test.Arn),
    				OptInStatus: pulumi.String("ENABLED"),
    				Type:        pulumi.String("CUSTOMER_MANAGED_KEY"),
    			},
    			LogsAnomalyDetection: &devopsguru.ServiceIntegrationLogsAnomalyDetectionArgs{
    				OptInStatus: pulumi.String("DISABLED"),
    			},
    			OpsCenter: &devopsguru.ServiceIntegrationOpsCenterArgs{
    				OptInStatus: pulumi.String("DISABLED"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.Kms.Key("example");
    
        var exampleServiceIntegration = new Aws.DevOpsGuru.ServiceIntegration("example", new()
        {
            KmsServerSideEncryption = new Aws.DevOpsGuru.Inputs.ServiceIntegrationKmsServerSideEncryptionArgs
            {
                KmsKeyId = test.Arn,
                OptInStatus = "ENABLED",
                Type = "CUSTOMER_MANAGED_KEY",
            },
            LogsAnomalyDetection = new Aws.DevOpsGuru.Inputs.ServiceIntegrationLogsAnomalyDetectionArgs
            {
                OptInStatus = "DISABLED",
            },
            OpsCenter = new Aws.DevOpsGuru.Inputs.ServiceIntegrationOpsCenterArgs
            {
                OptInStatus = "DISABLED",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.kms.Key;
    import com.pulumi.aws.devopsguru.ServiceIntegration;
    import com.pulumi.aws.devopsguru.ServiceIntegrationArgs;
    import com.pulumi.aws.devopsguru.inputs.ServiceIntegrationKmsServerSideEncryptionArgs;
    import com.pulumi.aws.devopsguru.inputs.ServiceIntegrationLogsAnomalyDetectionArgs;
    import com.pulumi.aws.devopsguru.inputs.ServiceIntegrationOpsCenterArgs;
    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 example = new Key("example");
    
            var exampleServiceIntegration = new ServiceIntegration("exampleServiceIntegration", ServiceIntegrationArgs.builder()        
                .kmsServerSideEncryption(ServiceIntegrationKmsServerSideEncryptionArgs.builder()
                    .kmsKeyId(test.arn())
                    .optInStatus("ENABLED")
                    .type("CUSTOMER_MANAGED_KEY")
                    .build())
                .logsAnomalyDetection(ServiceIntegrationLogsAnomalyDetectionArgs.builder()
                    .optInStatus("DISABLED")
                    .build())
                .opsCenter(ServiceIntegrationOpsCenterArgs.builder()
                    .optInStatus("DISABLED")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:kms:Key
      exampleServiceIntegration:
        type: aws:devopsguru:ServiceIntegration
        name: example
        properties:
          kmsServerSideEncryption:
            kmsKeyId: ${test.arn}
            optInStatus: ENABLED
            type: CUSTOMER_MANAGED_KEY
          logsAnomalyDetection:
            optInStatus: DISABLED
          opsCenter:
            optInStatus: DISABLED
    

    Create ServiceIntegration Resource

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

    Constructor syntax

    new ServiceIntegration(name: string, args?: ServiceIntegrationArgs, opts?: CustomResourceOptions);
    @overload
    def ServiceIntegration(resource_name: str,
                           args: Optional[ServiceIntegrationArgs] = None,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServiceIntegration(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           kms_server_side_encryption: Optional[ServiceIntegrationKmsServerSideEncryptionArgs] = None,
                           logs_anomaly_detection: Optional[ServiceIntegrationLogsAnomalyDetectionArgs] = None,
                           ops_center: Optional[ServiceIntegrationOpsCenterArgs] = None)
    func NewServiceIntegration(ctx *Context, name string, args *ServiceIntegrationArgs, opts ...ResourceOption) (*ServiceIntegration, error)
    public ServiceIntegration(string name, ServiceIntegrationArgs? args = null, CustomResourceOptions? opts = null)
    public ServiceIntegration(String name, ServiceIntegrationArgs args)
    public ServiceIntegration(String name, ServiceIntegrationArgs args, CustomResourceOptions options)
    
    type: aws:devopsguru:ServiceIntegration
    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 ServiceIntegrationArgs
    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 ServiceIntegrationArgs
    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 ServiceIntegrationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServiceIntegrationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServiceIntegrationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var serviceIntegrationResource = new Aws.DevOpsGuru.ServiceIntegration("serviceIntegrationResource", new()
    {
        KmsServerSideEncryption = new Aws.DevOpsGuru.Inputs.ServiceIntegrationKmsServerSideEncryptionArgs
        {
            KmsKeyId = "string",
            OptInStatus = "string",
            Type = "string",
        },
        LogsAnomalyDetection = new Aws.DevOpsGuru.Inputs.ServiceIntegrationLogsAnomalyDetectionArgs
        {
            OptInStatus = "string",
        },
        OpsCenter = new Aws.DevOpsGuru.Inputs.ServiceIntegrationOpsCenterArgs
        {
            OptInStatus = "string",
        },
    });
    
    example, err := devopsguru.NewServiceIntegration(ctx, "serviceIntegrationResource", &devopsguru.ServiceIntegrationArgs{
    	KmsServerSideEncryption: &devopsguru.ServiceIntegrationKmsServerSideEncryptionArgs{
    		KmsKeyId:    pulumi.String("string"),
    		OptInStatus: pulumi.String("string"),
    		Type:        pulumi.String("string"),
    	},
    	LogsAnomalyDetection: &devopsguru.ServiceIntegrationLogsAnomalyDetectionArgs{
    		OptInStatus: pulumi.String("string"),
    	},
    	OpsCenter: &devopsguru.ServiceIntegrationOpsCenterArgs{
    		OptInStatus: pulumi.String("string"),
    	},
    })
    
    var serviceIntegrationResource = new ServiceIntegration("serviceIntegrationResource", ServiceIntegrationArgs.builder()        
        .kmsServerSideEncryption(ServiceIntegrationKmsServerSideEncryptionArgs.builder()
            .kmsKeyId("string")
            .optInStatus("string")
            .type("string")
            .build())
        .logsAnomalyDetection(ServiceIntegrationLogsAnomalyDetectionArgs.builder()
            .optInStatus("string")
            .build())
        .opsCenter(ServiceIntegrationOpsCenterArgs.builder()
            .optInStatus("string")
            .build())
        .build());
    
    service_integration_resource = aws.devopsguru.ServiceIntegration("serviceIntegrationResource",
        kms_server_side_encryption=aws.devopsguru.ServiceIntegrationKmsServerSideEncryptionArgs(
            kms_key_id="string",
            opt_in_status="string",
            type="string",
        ),
        logs_anomaly_detection=aws.devopsguru.ServiceIntegrationLogsAnomalyDetectionArgs(
            opt_in_status="string",
        ),
        ops_center=aws.devopsguru.ServiceIntegrationOpsCenterArgs(
            opt_in_status="string",
        ))
    
    const serviceIntegrationResource = new aws.devopsguru.ServiceIntegration("serviceIntegrationResource", {
        kmsServerSideEncryption: {
            kmsKeyId: "string",
            optInStatus: "string",
            type: "string",
        },
        logsAnomalyDetection: {
            optInStatus: "string",
        },
        opsCenter: {
            optInStatus: "string",
        },
    });
    
    type: aws:devopsguru:ServiceIntegration
    properties:
        kmsServerSideEncryption:
            kmsKeyId: string
            optInStatus: string
            type: string
        logsAnomalyDetection:
            optInStatus: string
        opsCenter:
            optInStatus: string
    

    ServiceIntegration Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ServiceIntegration resource accepts the following input properties:

    KmsServerSideEncryption ServiceIntegrationKmsServerSideEncryption
    Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See kms_server_side_encryption below.
    LogsAnomalyDetection ServiceIntegrationLogsAnomalyDetection
    Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See logs_anomaly_detection below.
    OpsCenter ServiceIntegrationOpsCenter
    Information about whether DevOps Guru is configured to create an OpsItem in AWS Systems Manager OpsCenter for each created insight. See ops_center below.
    KmsServerSideEncryption ServiceIntegrationKmsServerSideEncryptionArgs
    Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See kms_server_side_encryption below.
    LogsAnomalyDetection ServiceIntegrationLogsAnomalyDetectionArgs
    Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See logs_anomaly_detection below.
    OpsCenter ServiceIntegrationOpsCenterArgs
    Information about whether DevOps Guru is configured to create an OpsItem in AWS Systems Manager OpsCenter for each created insight. See ops_center below.
    kmsServerSideEncryption ServiceIntegrationKmsServerSideEncryption
    Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See kms_server_side_encryption below.
    logsAnomalyDetection ServiceIntegrationLogsAnomalyDetection
    Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See logs_anomaly_detection below.
    opsCenter ServiceIntegrationOpsCenter
    Information about whether DevOps Guru is configured to create an OpsItem in AWS Systems Manager OpsCenter for each created insight. See ops_center below.
    kmsServerSideEncryption ServiceIntegrationKmsServerSideEncryption
    Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See kms_server_side_encryption below.
    logsAnomalyDetection ServiceIntegrationLogsAnomalyDetection
    Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See logs_anomaly_detection below.
    opsCenter ServiceIntegrationOpsCenter
    Information about whether DevOps Guru is configured to create an OpsItem in AWS Systems Manager OpsCenter for each created insight. See ops_center below.
    kms_server_side_encryption ServiceIntegrationKmsServerSideEncryptionArgs
    Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See kms_server_side_encryption below.
    logs_anomaly_detection ServiceIntegrationLogsAnomalyDetectionArgs
    Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See logs_anomaly_detection below.
    ops_center ServiceIntegrationOpsCenterArgs
    Information about whether DevOps Guru is configured to create an OpsItem in AWS Systems Manager OpsCenter for each created insight. See ops_center below.
    kmsServerSideEncryption Property Map
    Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See kms_server_side_encryption below.
    logsAnomalyDetection Property Map
    Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See logs_anomaly_detection below.
    opsCenter Property Map
    Information about whether DevOps Guru is configured to create an OpsItem in AWS Systems Manager OpsCenter for each created insight. See ops_center below.

    Outputs

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

    Get an existing ServiceIntegration 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?: ServiceIntegrationState, opts?: CustomResourceOptions): ServiceIntegration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            kms_server_side_encryption: Optional[ServiceIntegrationKmsServerSideEncryptionArgs] = None,
            logs_anomaly_detection: Optional[ServiceIntegrationLogsAnomalyDetectionArgs] = None,
            ops_center: Optional[ServiceIntegrationOpsCenterArgs] = None) -> ServiceIntegration
    func GetServiceIntegration(ctx *Context, name string, id IDInput, state *ServiceIntegrationState, opts ...ResourceOption) (*ServiceIntegration, error)
    public static ServiceIntegration Get(string name, Input<string> id, ServiceIntegrationState? state, CustomResourceOptions? opts = null)
    public static ServiceIntegration get(String name, Output<String> id, ServiceIntegrationState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    KmsServerSideEncryption ServiceIntegrationKmsServerSideEncryption
    Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See kms_server_side_encryption below.
    LogsAnomalyDetection ServiceIntegrationLogsAnomalyDetection
    Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See logs_anomaly_detection below.
    OpsCenter ServiceIntegrationOpsCenter
    Information about whether DevOps Guru is configured to create an OpsItem in AWS Systems Manager OpsCenter for each created insight. See ops_center below.
    KmsServerSideEncryption ServiceIntegrationKmsServerSideEncryptionArgs
    Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See kms_server_side_encryption below.
    LogsAnomalyDetection ServiceIntegrationLogsAnomalyDetectionArgs
    Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See logs_anomaly_detection below.
    OpsCenter ServiceIntegrationOpsCenterArgs
    Information about whether DevOps Guru is configured to create an OpsItem in AWS Systems Manager OpsCenter for each created insight. See ops_center below.
    kmsServerSideEncryption ServiceIntegrationKmsServerSideEncryption
    Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See kms_server_side_encryption below.
    logsAnomalyDetection ServiceIntegrationLogsAnomalyDetection
    Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See logs_anomaly_detection below.
    opsCenter ServiceIntegrationOpsCenter
    Information about whether DevOps Guru is configured to create an OpsItem in AWS Systems Manager OpsCenter for each created insight. See ops_center below.
    kmsServerSideEncryption ServiceIntegrationKmsServerSideEncryption
    Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See kms_server_side_encryption below.
    logsAnomalyDetection ServiceIntegrationLogsAnomalyDetection
    Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See logs_anomaly_detection below.
    opsCenter ServiceIntegrationOpsCenter
    Information about whether DevOps Guru is configured to create an OpsItem in AWS Systems Manager OpsCenter for each created insight. See ops_center below.
    kms_server_side_encryption ServiceIntegrationKmsServerSideEncryptionArgs
    Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See kms_server_side_encryption below.
    logs_anomaly_detection ServiceIntegrationLogsAnomalyDetectionArgs
    Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See logs_anomaly_detection below.
    ops_center ServiceIntegrationOpsCenterArgs
    Information about whether DevOps Guru is configured to create an OpsItem in AWS Systems Manager OpsCenter for each created insight. See ops_center below.
    kmsServerSideEncryption Property Map
    Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See kms_server_side_encryption below.
    logsAnomalyDetection Property Map
    Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See logs_anomaly_detection below.
    opsCenter Property Map
    Information about whether DevOps Guru is configured to create an OpsItem in AWS Systems Manager OpsCenter for each created insight. See ops_center below.

    Supporting Types

    ServiceIntegrationKmsServerSideEncryption, ServiceIntegrationKmsServerSideEncryptionArgs

    KmsKeyId string
    KMS key ID. This value can be a key ID, key ARN, alias name, or alias ARN.
    OptInStatus string
    Specifies whether KMS integration is enabled. Valid values are DISABLED and ENABLED.
    Type string
    Type of KMS key used. Valid values are CUSTOMER_MANAGED_KEY and AWS_OWNED_KMS_KEY.
    KmsKeyId string
    KMS key ID. This value can be a key ID, key ARN, alias name, or alias ARN.
    OptInStatus string
    Specifies whether KMS integration is enabled. Valid values are DISABLED and ENABLED.
    Type string
    Type of KMS key used. Valid values are CUSTOMER_MANAGED_KEY and AWS_OWNED_KMS_KEY.
    kmsKeyId String
    KMS key ID. This value can be a key ID, key ARN, alias name, or alias ARN.
    optInStatus String
    Specifies whether KMS integration is enabled. Valid values are DISABLED and ENABLED.
    type String
    Type of KMS key used. Valid values are CUSTOMER_MANAGED_KEY and AWS_OWNED_KMS_KEY.
    kmsKeyId string
    KMS key ID. This value can be a key ID, key ARN, alias name, or alias ARN.
    optInStatus string
    Specifies whether KMS integration is enabled. Valid values are DISABLED and ENABLED.
    type string
    Type of KMS key used. Valid values are CUSTOMER_MANAGED_KEY and AWS_OWNED_KMS_KEY.
    kms_key_id str
    KMS key ID. This value can be a key ID, key ARN, alias name, or alias ARN.
    opt_in_status str
    Specifies whether KMS integration is enabled. Valid values are DISABLED and ENABLED.
    type str
    Type of KMS key used. Valid values are CUSTOMER_MANAGED_KEY and AWS_OWNED_KMS_KEY.
    kmsKeyId String
    KMS key ID. This value can be a key ID, key ARN, alias name, or alias ARN.
    optInStatus String
    Specifies whether KMS integration is enabled. Valid values are DISABLED and ENABLED.
    type String
    Type of KMS key used. Valid values are CUSTOMER_MANAGED_KEY and AWS_OWNED_KMS_KEY.

    ServiceIntegrationLogsAnomalyDetection, ServiceIntegrationLogsAnomalyDetectionArgs

    OptInStatus string
    Specifies if DevOps Guru is configured to perform log anomaly detection on CloudWatch log groups. Valid values are DISABLED and ENABLED.
    OptInStatus string
    Specifies if DevOps Guru is configured to perform log anomaly detection on CloudWatch log groups. Valid values are DISABLED and ENABLED.
    optInStatus String
    Specifies if DevOps Guru is configured to perform log anomaly detection on CloudWatch log groups. Valid values are DISABLED and ENABLED.
    optInStatus string
    Specifies if DevOps Guru is configured to perform log anomaly detection on CloudWatch log groups. Valid values are DISABLED and ENABLED.
    opt_in_status str
    Specifies if DevOps Guru is configured to perform log anomaly detection on CloudWatch log groups. Valid values are DISABLED and ENABLED.
    optInStatus String
    Specifies if DevOps Guru is configured to perform log anomaly detection on CloudWatch log groups. Valid values are DISABLED and ENABLED.

    ServiceIntegrationOpsCenter, ServiceIntegrationOpsCenterArgs

    OptInStatus string
    Specifies if DevOps Guru is enabled to create an AWS Systems Manager OpsItem for each created insight. Valid values are DISABLED and ENABLED.
    OptInStatus string
    Specifies if DevOps Guru is enabled to create an AWS Systems Manager OpsItem for each created insight. Valid values are DISABLED and ENABLED.
    optInStatus String
    Specifies if DevOps Guru is enabled to create an AWS Systems Manager OpsItem for each created insight. Valid values are DISABLED and ENABLED.
    optInStatus string
    Specifies if DevOps Guru is enabled to create an AWS Systems Manager OpsItem for each created insight. Valid values are DISABLED and ENABLED.
    opt_in_status str
    Specifies if DevOps Guru is enabled to create an AWS Systems Manager OpsItem for each created insight. Valid values are DISABLED and ENABLED.
    optInStatus String
    Specifies if DevOps Guru is enabled to create an AWS Systems Manager OpsItem for each created insight. Valid values are DISABLED and ENABLED.

    Import

    Using pulumi import, import DevOps Guru Service Integration using the id. For example:

    $ pulumi import aws:devopsguru/serviceIntegration:ServiceIntegration example us-east-1
    

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

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.36.0 published on Wednesday, May 15, 2024 by Pulumi