Class CfnConnection.ResourceParametersProperty
The parameters for EventBridge to use when invoking the resource endpoint.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConnection.ResourceParametersProperty : CfnConnection.IResourceParametersProperty
Syntax (vb)
Public Class CfnConnection.ResourceParametersProperty Implements CfnConnection.IResourceParametersProperty
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.AWS.Events;
var resourceParametersProperty = new ResourceParametersProperty {
ResourceConfigurationArn = "resourceConfigurationArn",
// the properties below are optional
ResourceAssociationArn = "resourceAssociationArn"
};
Synopsis
Constructors
| ResourceParametersProperty() | The parameters for EventBridge to use when invoking the resource endpoint. |
Properties
| ResourceAssociationArn | For connections to private APIs, the Amazon Resource Name (ARN) of the resource association EventBridge created between the connection and the private API's resource configuration. |
| ResourceConfigurationArn | The Amazon Resource Name (ARN) of the Amazon VPC Lattice resource configuration for the resource endpoint. |
Constructors
ResourceParametersProperty()
The parameters for EventBridge to use when invoking the resource endpoint.
public ResourceParametersProperty()
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.AWS.Events;
var resourceParametersProperty = new ResourceParametersProperty {
ResourceConfigurationArn = "resourceConfigurationArn",
// the properties below are optional
ResourceAssociationArn = "resourceAssociationArn"
};
Properties
ResourceAssociationArn
For connections to private APIs, the Amazon Resource Name (ARN) of the resource association EventBridge created between the connection and the private API's resource configuration.
public string? ResourceAssociationArn { get; set; }
Property Value
Remarks
The value of this property is set by EventBridge . Any value you specify in your template is ignored.
ResourceConfigurationArn
The Amazon Resource Name (ARN) of the Amazon VPC Lattice resource configuration for the resource endpoint.
public string ResourceConfigurationArn { get; set; }