Show / Hide Table of Contents

Class CfnConnection.ResourceParametersProperty

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

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-resourceparameters.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 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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-resourceparameters.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 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

string

Remarks
The value of this property is set by EventBridge . Any value you specify in your template is ignored.

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

ResourceConfigurationArn

The Amazon Resource Name (ARN) of the Amazon VPC Lattice resource configuration for the resource endpoint.

public string ResourceConfigurationArn { get; set; }
Property Value

string

Remarks

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

Implements

CfnConnection.IResourceParametersProperty
Back to top Generated by DocFX