TestEventSourceConfig

Updated at:
Copy as MD

Checks whether the event source configuration is active.

Operation description

Returns a list of all external event sources.

Try it now

Try this API in OpenAPI Explorer, no manual signing needed. Successful calls auto-generate SDK code matching your parameters. Download it with built-in credential security for local usage.

Test

RAM authorization

The table below describes the authorization required to call this API. You can define it in a Resource Access Management (RAM) policy. The table's columns are detailed below:

  • Action: The actions can be used in the Action element of RAM permission policy statements to grant permissions to perform the operation.

  • API: The API that you can call to perform the action.

  • Access level: The predefined level of access granted for each API. Valid values: create, list, get, update, and delete.

  • Resource type: The type of the resource that supports authorization to perform the action. It indicates if the action supports resource-level permission. The specified resource must be compatible with the action. Otherwise, the policy will be ineffective.

    • For APIs with resource-level permissions, required resource types are marked with an asterisk (*). Specify the corresponding Alibaba Cloud Resource Name (ARN) in the Resource element of the policy.

    • For APIs without resource-level permissions, it is shown as All Resources. Use an asterisk (*) in the Resource element of the policy.

  • Condition key: The condition keys defined by the service. The key allows for granular control, applying to either actions alone or actions associated with specific resources. In addition to service-specific condition keys, Alibaba Cloud provides a set of common condition keys applicable across all RAM-supported services.

  • Dependent action: The dependent actions required to run the action. To complete the action, the RAM user or the RAM role must have the permissions to perform all dependent actions.

Action

Access level

Resource type

Condition key

Dependent action

eventbridge:TestEventSourceConfig

create

*All Resource

*

None None

Request parameters

Parameter

Type

Required

Description

Example

SourceMySQLParameters

object

No

The parameters for the MySQL source.

RegionId

string

No

The region ID.

cn-hangzhou

HostName

string

No

The database endpoint.

rm-bp1vxxx.mysql.rds.aliyuncs.com

Port

integer

No

The database connection port.

80

DatabaseName

string

No

The database name.

database1

TableNames

string

No

The table name. The name must be prefixed with the database name in the ${DatabaseName}.${TableName} format.

database1.table1

User

string

No

The username for the database.

user***

Password

string

No

The password for the specified username.

1234xxx

NetworkType

string

No

The network type.

Valid values:

  • PrivateNetwork :

    The private network.

  • PublicNetwork :

    The public network.

PrivateNetwork

VpcId

string

No

The VPC ID.

vpc-xxx

VSwitchIds

string

No

The vSwitch IDs.

vsw-bp1gb7xxx

SecurityGroupId

string

No

The security group ID.

sg-xxx

AllowedCIDRs

string

No

The list of allowed CIDR blocks.

SnapshotMode

string

No

The snapshot mode.

Response elements

Element

Type

Description

Example

object

Code

string

The response code.

  • Success: The request succeeded.

  • Other values indicate an error code. For more information, see error codes.

Success

Data

array<object>

The results of the configuration check.

object

An array of objects, where each object represents the result of a single check item.

CheckItem

string

The name of the check item.

CHECK_CONNECTION

ErrorMsg

string

The message describing the result of the check item.

Connection established successfully.

IsSucceed

string

Indicates whether the check item executed successfully.

true

Message

string

The response message.

Success

RequestId

string

The unique identifier generated by Alibaba Cloud for the request. This ID is required for troubleshooting.

FF942675-F937-549C-A942-EB94FFE28DD3

Success

boolean

Indicates whether the request succeeded. A value of true indicates success.

true

Examples

Success response

JSON format

{
  "Code": "Success",
  "Data": [
    {
      "CheckItem": "CHECK_CONNECTION",
      "ErrorMsg": "Connection established successfully.",
      "IsSucceed": "true"
    }
  ],
  "Message": "Success",
  "RequestId": "FF942675-F937-549C-A942-EB94FFE28DD3",
  "Success": true
}

Error codes

HTTP status code

Error code

Error message

Description

403 ServiceNotEnable Service not enable

See Error Codes for a complete list.

Release notes

See Release Notes for a complete list.