Show / Hide Table of Contents

Class CfnConnection.InvocationConnectivityParametersProperty

For connections to private APIs, the parameters to use for invoking the API.

Inheritance
object
CfnConnection.InvocationConnectivityParametersProperty
Implements
CfnConnection.IInvocationConnectivityParametersProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConnection.InvocationConnectivityParametersProperty : CfnConnection.IInvocationConnectivityParametersProperty
Syntax (vb)
Public Class CfnConnection.InvocationConnectivityParametersProperty Implements CfnConnection.IInvocationConnectivityParametersProperty
Remarks

For more information, see Connecting to private APIs in the Amazon EventBridge User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-invocationconnectivityparameters.html

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 invocationConnectivityParametersProperty = new InvocationConnectivityParametersProperty {
                 ResourceParameters = new ResourceParametersProperty {
                     ResourceConfigurationArn = "resourceConfigurationArn",

                     // the properties below are optional
                     ResourceAssociationArn = "resourceAssociationArn"
                 }
             };

Synopsis

Constructors

InvocationConnectivityParametersProperty()

For connections to private APIs, the parameters to use for invoking the API.

Properties

ResourceParameters

The parameters for EventBridge to use when invoking the resource endpoint.

Constructors

InvocationConnectivityParametersProperty()

For connections to private APIs, the parameters to use for invoking the API.

public InvocationConnectivityParametersProperty()
Remarks

For more information, see Connecting to private APIs in the Amazon EventBridge User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-invocationconnectivityparameters.html

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 invocationConnectivityParametersProperty = new InvocationConnectivityParametersProperty {
                 ResourceParameters = new ResourceParametersProperty {
                     ResourceConfigurationArn = "resourceConfigurationArn",

                     // the properties below are optional
                     ResourceAssociationArn = "resourceAssociationArn"
                 }
             };

Properties

ResourceParameters

The parameters for EventBridge to use when invoking the resource endpoint.

public object ResourceParameters { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-invocationconnectivityparameters.html#cfn-events-connection-invocationconnectivityparameters-resourceparameters

Implements

CfnConnection.IInvocationConnectivityParametersProperty
Back to top Generated by DocFX