Show / Hide Table of Contents

Interface CfnIntegration.IResourceConfigProperty

This structure contains configuration details about an integration between CloudWatch Logs and another entity.

Namespace: Amazon.CDK.AWS.Logs
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnIntegration.IResourceConfigProperty
Syntax (vb)
Public Interface CfnIntegration.IResourceConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-integration-resourceconfig.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.AWS.Logs;

             var resourceConfigProperty = new ResourceConfigProperty {
                 OpenSearchResourceConfig = new OpenSearchResourceConfigProperty {
                     DashboardViewerPrincipals = new [] { "dashboardViewerPrincipals" },
                     DataSourceRoleArn = "dataSourceRoleArn",

                     // the properties below are optional
                     ApplicationArn = "applicationArn",
                     KmsKeyArn = "kmsKeyArn",
                     RetentionDays = 123
                 }
             };

Synopsis

Properties

OpenSearchResourceConfig

This structure contains configuration details about an integration between CloudWatch Logs and OpenSearch Service.

Properties

OpenSearchResourceConfig

This structure contains configuration details about an integration between CloudWatch Logs and OpenSearch Service.

object? OpenSearchResourceConfig { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-integration-resourceconfig.html#cfn-logs-integration-resourceconfig-opensearchresourceconfig

Back to top Generated by DocFX