Show / Hide Table of Contents

Class CfnConnection.ConnectivityParametersProperty

If you specify a private OAuth endpoint, the parameters for EventBridge to use when authenticating against the endpoint.

Inheritance
object
CfnConnection.ConnectivityParametersProperty
Implements
CfnConnection.IConnectivityParametersProperty
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.ConnectivityParametersProperty : CfnConnection.IConnectivityParametersProperty
Syntax (vb)
Public Class CfnConnection.ConnectivityParametersProperty Implements CfnConnection.IConnectivityParametersProperty
Remarks

For more information, see Authorization methods for connections in the Amazon EventBridge User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-connectivityparameters.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 connectivityParametersProperty = new ConnectivityParametersProperty {
                 ResourceParameters = new ResourceParametersProperty {
                     ResourceConfigurationArn = "resourceConfigurationArn",

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

Synopsis

Constructors

ConnectivityParametersProperty()

If you specify a private OAuth endpoint, the parameters for EventBridge to use when authenticating against the endpoint.

Properties

ResourceParameters

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

Constructors

ConnectivityParametersProperty()

If you specify a private OAuth endpoint, the parameters for EventBridge to use when authenticating against the endpoint.

public ConnectivityParametersProperty()
Remarks

For more information, see Authorization methods for connections in the Amazon EventBridge User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-connectivityparameters.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 connectivityParametersProperty = new ConnectivityParametersProperty {
                 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-connectivityparameters.html#cfn-events-connection-connectivityparameters-resourceparameters

Type union: either IResolvable or CfnConnection.IResourceParametersProperty

Implements

CfnConnection.IConnectivityParametersProperty
Back to top Generated by DocFX