Class EndpointReference
A reference to a Endpoint resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class EndpointReference : IEndpointReference
Syntax (vb)
Public Class EndpointReference Implements IEndpointReference
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.Events;
var endpointReference = new EndpointReference {
EndpointArn = "endpointArn",
EndpointName = "endpointName"
};
Synopsis
Constructors
| EndpointReference() | A reference to a Endpoint resource. |
Properties
| EndpointArn | The ARN of the Endpoint resource. |
| EndpointName | The Name of the Endpoint resource. |
Constructors
EndpointReference()
A reference to a Endpoint resource.
public EndpointReference()
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.Events;
var endpointReference = new EndpointReference {
EndpointArn = "endpointArn",
EndpointName = "endpointName"
};
Properties
EndpointArn
The ARN of the Endpoint resource.
public string EndpointArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
EndpointName
The Name of the Endpoint resource.
public string EndpointName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated