You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// The ID of the repository link created for the connection. A repository link allows Git sync to monitor and sync changes to files in a specified Git repository.
664
695
/// This member is required.
665
696
publicvarrepositoryLinkId:Swift.String?
@@ -679,6 +710,7 @@ public struct CreateSyncConfigurationInput {
/// A resource that is used to connect third-party source providers with services like CodePipeline. Note: A connection created through CloudFormation, the CLI, or the SDK is in `PENDING` status by default. You can make its status `AVAILABLE` by updating the connection in the console.
949
986
publicstructConnection{
950
-
/// The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between Amazon Web Services. The ARN is never reused if the connection is deleted.
987
+
/// The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between Amazon Web Servicesservices. The ARN is never reused if the connection is deleted.
951
988
publicvarconnectionArn:Swift.String?
952
989
/// The name of the connection. Connection names must be unique in an Amazon Web Services account.
953
990
publicvarconnectionName:Swift.String?
@@ -2143,6 +2180,8 @@ public struct UpdateSyncConfigurationInput {
2143
2180
publicvarconfigFile:Swift.String?
2144
2181
/// Whether to enable or disable publishing of deployment status to source providers.
Copy file name to clipboardExpand all lines: Sources/Services/AWSGlue/Sources/AWSGlue/GlueClient.swift
+78Lines changed: 78 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -14906,6 +14906,84 @@ extension GlueClient {
14906
14906
return try await op.execute(input: input)
14907
14907
}
14908
14908
14909
+
/// Performs the `TestConnection` operation on the `AWSGlue` service.
14910
+
///
14911
+
/// Tests a connection to a service to validate the service credentials that you provide. You can either provide an existing connection name or a TestConnectionInput for testing a non-existing connection input. Providing both at the same time will cause an error. If the action is successful, the service sends back an HTTP 200 response.
0 commit comments