Try AWS Native preview for resources not in the classic version.
aws.devopsguru.ServiceIntegration
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
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={
"optInStatus": "ENABLED",
"type": "AWS_OWNED_KMS_KEY",
},
logs_anomaly_detection={
"optInStatus": "ENABLED",
},
ops_center={
"optInStatus": "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={
"kmsKeyId": test["arn"],
"optInStatus": "ENABLED",
"type": "CUSTOMER_MANAGED_KEY",
},
logs_anomaly_detection={
"optInStatus": "DISABLED",
},
ops_center={
"optInStatus": "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.
Constructor 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={
"kmsKeyId": "string",
"optInStatus": "string",
"type": "string",
},
logs_anomaly_detection={
"optInStatus": "string",
},
ops_center={
"optInStatus": "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:
- Kms
Server ServiceSide Encryption Integration Kms Server Side Encryption - Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See
kms_server_side_encryption
below. - Logs
Anomaly ServiceDetection Integration Logs Anomaly Detection - Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See
logs_anomaly_detection
below. - Ops
Center ServiceIntegration Ops Center - 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 ServiceSide Encryption Integration Kms Server Side Encryption Args - Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See
kms_server_side_encryption
below. - Logs
Anomaly ServiceDetection Integration Logs Anomaly Detection Args - Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See
logs_anomaly_detection
below. - Ops
Center ServiceIntegration Ops Center Args - 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 ServiceSide Encryption Integration Kms Server Side Encryption - Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See
kms_server_side_encryption
below. - logs
Anomaly ServiceDetection Integration Logs Anomaly Detection - Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See
logs_anomaly_detection
below. - ops
Center ServiceIntegration Ops Center - 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 ServiceSide Encryption Integration Kms Server Side Encryption - Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See
kms_server_side_encryption
below. - logs
Anomaly ServiceDetection Integration Logs Anomaly Detection - Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See
logs_anomaly_detection
below. - ops
Center ServiceIntegration Ops Center - 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_ Serviceside_ encryption Integration Kms Server Side Encryption Args - Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See
kms_server_side_encryption
below. - logs_
anomaly_ Servicedetection Integration Logs Anomaly Detection Args - Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See
logs_anomaly_detection
below. - ops_
center ServiceIntegration Ops Center Args - 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 Property MapSide Encryption - Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See
kms_server_side_encryption
below. - logs
Anomaly Property MapDetection - Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See
logs_anomaly_detection
below. - ops
Center 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.
- Kms
Server ServiceSide Encryption Integration Kms Server Side Encryption - Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See
kms_server_side_encryption
below. - Logs
Anomaly ServiceDetection Integration Logs Anomaly Detection - Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See
logs_anomaly_detection
below. - Ops
Center ServiceIntegration Ops Center - 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 ServiceSide Encryption Integration Kms Server Side Encryption Args - Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See
kms_server_side_encryption
below. - Logs
Anomaly ServiceDetection Integration Logs Anomaly Detection Args - Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See
logs_anomaly_detection
below. - Ops
Center ServiceIntegration Ops Center Args - 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 ServiceSide Encryption Integration Kms Server Side Encryption - Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See
kms_server_side_encryption
below. - logs
Anomaly ServiceDetection Integration Logs Anomaly Detection - Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See
logs_anomaly_detection
below. - ops
Center ServiceIntegration Ops Center - 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 ServiceSide Encryption Integration Kms Server Side Encryption - Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See
kms_server_side_encryption
below. - logs
Anomaly ServiceDetection Integration Logs Anomaly Detection - Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See
logs_anomaly_detection
below. - ops
Center ServiceIntegration Ops Center - 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_ Serviceside_ encryption Integration Kms Server Side Encryption Args - Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See
kms_server_side_encryption
below. - logs_
anomaly_ Servicedetection Integration Logs Anomaly Detection Args - Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See
logs_anomaly_detection
below. - ops_
center ServiceIntegration Ops Center Args - 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 Property MapSide Encryption - Information about whether DevOps Guru is configured to encrypt server-side data using KMS. See
kms_server_side_encryption
below. - logs
Anomaly Property MapDetection - Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. See
logs_anomaly_detection
below. - ops
Center 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
- Kms
Key stringId - KMS key ID. This value can be a key ID, key ARN, alias name, or alias ARN.
- Opt
In stringStatus - Specifies whether KMS integration is enabled. Valid values are
DISABLED
andENABLED
. - Type string
- Type of KMS key used. Valid values are
CUSTOMER_MANAGED_KEY
andAWS_OWNED_KMS_KEY
.
- Kms
Key stringId - KMS key ID. This value can be a key ID, key ARN, alias name, or alias ARN.
- Opt
In stringStatus - Specifies whether KMS integration is enabled. Valid values are
DISABLED
andENABLED
. - Type string
- Type of KMS key used. Valid values are
CUSTOMER_MANAGED_KEY
andAWS_OWNED_KMS_KEY
.
- kms
Key StringId - KMS key ID. This value can be a key ID, key ARN, alias name, or alias ARN.
- opt
In StringStatus - Specifies whether KMS integration is enabled. Valid values are
DISABLED
andENABLED
. - type String
- Type of KMS key used. Valid values are
CUSTOMER_MANAGED_KEY
andAWS_OWNED_KMS_KEY
.
- kms
Key stringId - KMS key ID. This value can be a key ID, key ARN, alias name, or alias ARN.
- opt
In stringStatus - Specifies whether KMS integration is enabled. Valid values are
DISABLED
andENABLED
. - type string
- Type of KMS key used. Valid values are
CUSTOMER_MANAGED_KEY
andAWS_OWNED_KMS_KEY
.
- kms_
key_ strid - KMS key ID. This value can be a key ID, key ARN, alias name, or alias ARN.
- opt_
in_ strstatus - Specifies whether KMS integration is enabled. Valid values are
DISABLED
andENABLED
. - type str
- Type of KMS key used. Valid values are
CUSTOMER_MANAGED_KEY
andAWS_OWNED_KMS_KEY
.
- kms
Key StringId - KMS key ID. This value can be a key ID, key ARN, alias name, or alias ARN.
- opt
In StringStatus - Specifies whether KMS integration is enabled. Valid values are
DISABLED
andENABLED
. - type String
- Type of KMS key used. Valid values are
CUSTOMER_MANAGED_KEY
andAWS_OWNED_KMS_KEY
.
ServiceIntegrationLogsAnomalyDetection, ServiceIntegrationLogsAnomalyDetectionArgs
- Opt
In stringStatus - Specifies if DevOps Guru is configured to perform log anomaly detection on CloudWatch log groups. Valid values are
DISABLED
andENABLED
.
- Opt
In stringStatus - Specifies if DevOps Guru is configured to perform log anomaly detection on CloudWatch log groups. Valid values are
DISABLED
andENABLED
.
- opt
In StringStatus - Specifies if DevOps Guru is configured to perform log anomaly detection on CloudWatch log groups. Valid values are
DISABLED
andENABLED
.
- opt
In stringStatus - Specifies if DevOps Guru is configured to perform log anomaly detection on CloudWatch log groups. Valid values are
DISABLED
andENABLED
.
- opt_
in_ strstatus - Specifies if DevOps Guru is configured to perform log anomaly detection on CloudWatch log groups. Valid values are
DISABLED
andENABLED
.
- opt
In StringStatus - Specifies if DevOps Guru is configured to perform log anomaly detection on CloudWatch log groups. Valid values are
DISABLED
andENABLED
.
ServiceIntegrationOpsCenter, ServiceIntegrationOpsCenterArgs
- Opt
In stringStatus - Specifies if DevOps Guru is enabled to create an AWS Systems Manager OpsItem for each created insight. Valid values are
DISABLED
andENABLED
.
- Opt
In stringStatus - Specifies if DevOps Guru is enabled to create an AWS Systems Manager OpsItem for each created insight. Valid values are
DISABLED
andENABLED
.
- opt
In StringStatus - Specifies if DevOps Guru is enabled to create an AWS Systems Manager OpsItem for each created insight. Valid values are
DISABLED
andENABLED
.
- opt
In stringStatus - Specifies if DevOps Guru is enabled to create an AWS Systems Manager OpsItem for each created insight. Valid values are
DISABLED
andENABLED
.
- opt_
in_ strstatus - Specifies if DevOps Guru is enabled to create an AWS Systems Manager OpsItem for each created insight. Valid values are
DISABLED
andENABLED
.
- opt
In StringStatus - Specifies if DevOps Guru is enabled to create an AWS Systems Manager OpsItem for each created insight. Valid values are
DISABLED
andENABLED
.
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.
Try AWS Native preview for resources not in the classic version.