AwsCloudwatchLogStreamArgs

interface AwsCloudwatchLogStreamArgs extends Omit<aws.cloudwatch.LogStreamArgs, 'logGroupName' | 'name'> { logGroup: AwsCloudwatchLogGroupReference; name: string; region?: Input<string | undefined>; }

Input arguments for the CloudWatch log-stream capability.

Example

CODE
const logStream: AwsCloudwatchLogStreamArgs = {
  name: 'ordersStream',
  logGroup: 'ordersApplicationLogs',
};

Hierarchy

  • LogStreamArgs, "logGroupName" | "name">
  • AwsCloudwatchLogStreamArgs

Properties

logGroup: AwsCloudwatchLogGroupReference

Log group input or reference exposing a log-group name.

name: string

Required log-stream purpose name used as the Pulumi logical identity source.

Remarks

Must be a synchronous plain string available at preview time. The AWS provider log-stream name is derived separately from this value using the AWS naming style.

region: Input<string | undefined>

Inherited from region

Region where this resource will be managed. Defaults to the Region set in the provider configuration.