interface CfnIntegrationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Logs.Mixins.CfnIntegrationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslogs/mixins#CfnIntegrationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.logs.mixins.CfnIntegrationMixinProps |
Python | aws_cdk.mixins_preview.aws_logs.mixins.CfnIntegrationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_logs » mixins » CfnIntegrationMixinProps |
Properties for CfnIntegrationPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-integration.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as logs_mixins } from '@aws-cdk/mixins-preview/aws-logs';
const cfnIntegrationMixinProps: logs_mixins.CfnIntegrationMixinProps = {
integrationName: 'integrationName',
integrationType: 'integrationType',
resourceConfig: {
openSearchResourceConfig: {
applicationArn: 'applicationArn',
dashboardViewerPrincipals: ['dashboardViewerPrincipals'],
dataSourceRoleArn: 'dataSourceRoleArn',
kmsKeyArn: 'kmsKeyArn',
retentionDays: 123,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| integration | string | The name of this integration. |
| integration | string | The type of integration. |
| resource | IResolvable | Resource | This structure contains configuration details about an integration between CloudWatch Logs and another entity. |
integrationName?
Type:
string
(optional)
The name of this integration.
integrationType?
Type:
string
(optional)
The type of integration.
Integrations with OpenSearch Service have the type OPENSEARCH .
resourceConfig?
Type:
IResolvable | Resource
(optional)
This structure contains configuration details about an integration between CloudWatch Logs and another entity.

.NET
Go
Java
Python
TypeScript