interface DestinationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Logs.DestinationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslogs#DestinationReference |
Java | software.amazon.awscdk.services.logs.DestinationReference |
Python | aws_cdk.aws_logs.DestinationReference |
TypeScript | aws-cdk-lib » aws_logs » DestinationReference |
A reference to a Destination resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_logs as logs } from 'aws-cdk-lib';
const destinationReference: logs.DestinationReference = {
destinationArn: 'destinationArn',
destinationName: 'destinationName',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The ARN of the Destination resource. |
| destination | string | The DestinationName of the Destination resource. |
destinationArn
Type:
string
The ARN of the Destination resource.
destinationName
Type:
string
The DestinationName of the Destination resource.

.NET
Go
Java
Python
TypeScript