Interface ICfnIntegrationMixinProps
Properties for CfnIntegrationPropsMixin.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Logs
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnIntegrationMixinProps
Syntax (vb)
Public Interface ICfnIntegrationMixinProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-integration.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Logs;
var cfnIntegrationMixinProps = new CfnIntegrationMixinProps {
IntegrationName = "integrationName",
IntegrationType = "integrationType",
ResourceConfig = new ResourceConfigProperty {
OpenSearchResourceConfig = new OpenSearchResourceConfigProperty {
ApplicationArn = "applicationArn",
DashboardViewerPrincipals = new [] { "dashboardViewerPrincipals" },
DataSourceRoleArn = "dataSourceRoleArn",
KmsKeyArn = "kmsKeyArn",
RetentionDays = 123
}
}
};
Synopsis
Properties
| IntegrationName | The name of this integration. |
| IntegrationType | The type of integration. |
| ResourceConfig | This structure contains configuration details about an integration between CloudWatch Logs and another entity. |
Properties
IntegrationName
The name of this integration.
string? IntegrationName { get; }
Property Value
Remarks
IntegrationType
The type of integration.
string? IntegrationType { get; }
Property Value
Remarks
Integrations with OpenSearch Service have the type OPENSEARCH .
ResourceConfig
This structure contains configuration details about an integration between CloudWatch Logs and another entity.
object? ResourceConfig { get; }