Class ScheduleReference
A reference to a Schedule resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.Scheduler
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ScheduleReference : IScheduleReference
Syntax (vb)
Public Class ScheduleReference Implements IScheduleReference
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.Scheduler;
var scheduleReference = new ScheduleReference {
ScheduleArn = "scheduleArn",
ScheduleName = "scheduleName"
};
Synopsis
Constructors
| ScheduleReference() | A reference to a Schedule resource. |
Properties
| ScheduleArn | The ARN of the Schedule resource. |
| ScheduleName | The Name of the Schedule resource. |
Constructors
ScheduleReference()
A reference to a Schedule resource.
public ScheduleReference()
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.Scheduler;
var scheduleReference = new ScheduleReference {
ScheduleArn = "scheduleArn",
ScheduleName = "scheduleName"
};
Properties
ScheduleArn
The ARN of the Schedule resource.
public string ScheduleArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
ScheduleName
The Name of the Schedule resource.
public string ScheduleName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated