Show / Hide Table of Contents

Interface ILogSubscriptionDestinationConfig

Properties returned by a Subscription destination.

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

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.IAM;
using Amazon.CDK.AWS.Logs;

Role role;

var logSubscriptionDestinationConfig = new LogSubscriptionDestinationConfig {
    Arn = "arn",

    // the properties below are optional
    Role = role
};

Synopsis

Properties

Arn

The ARN of the subscription's destination.

Role

The role to assume to write log events to the destination.

Properties

Arn

The ARN of the subscription's destination.

string Arn { get; }
Property Value

System.String

Role

The role to assume to write log events to the destination.

virtual IRole Role { get; }
Property Value

IRole

Remarks

Default: No role assumed

Back to top Generated by DocFX