interface DeliveryDestinationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Logs.DeliveryDestinationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslogs#DeliveryDestinationReference |
Java | software.amazon.awscdk.interfaces.logs.DeliveryDestinationReference |
Python | aws_cdk.interfaces.aws_logs.DeliveryDestinationReference |
TypeScript | aws-cdk-lib » interfaces » aws_logs » DeliveryDestinationReference |
A reference to a DeliveryDestination 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 interfaces_aws_logs } from 'aws-cdk-lib/interfaces';
const deliveryDestinationReference: interfaces_aws_logs.DeliveryDestinationReference = {
deliveryDestinationArn: 'deliveryDestinationArn',
deliveryDestinationName: 'deliveryDestinationName',
};
Properties
| Name | Type | Description |
|---|---|---|
| delivery | string | The ARN of the DeliveryDestination resource. |
| delivery | string | The Name of the DeliveryDestination resource. |
deliveryDestinationArn
Type:
string
The ARN of the DeliveryDestination resource.
deliveryDestinationName
Type:
string
The Name of the DeliveryDestination resource.

.NET
Go
Java
Python
TypeScript