Class DeliveryReference
A reference to a Delivery resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.Logs
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DeliveryReference : IDeliveryReference
Syntax (vb)
Public Class DeliveryReference Implements IDeliveryReference
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.Interfaces.Logs;
var deliveryReference = new DeliveryReference {
DeliveryArn = "deliveryArn",
DeliveryId = "deliveryId"
};
Synopsis
Constructors
| DeliveryReference() | A reference to a Delivery resource. |
Properties
| DeliveryArn | The ARN of the Delivery resource. |
| DeliveryId | The DeliveryId of the Delivery resource. |
Constructors
DeliveryReference()
A reference to a Delivery resource.
public DeliveryReference()
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.Interfaces.Logs;
var deliveryReference = new DeliveryReference {
DeliveryArn = "deliveryArn",
DeliveryId = "deliveryId"
};
Properties
DeliveryArn
The ARN of the Delivery resource.
public string DeliveryArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
DeliveryId
The DeliveryId of the Delivery resource.
public string DeliveryId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated