Class: Aws::Glue::Types::DeleteSessionRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Note:

When making an API call, you may pass DeleteSessionRequest data as a hash:

{
  id: "NameString", # required
  request_origin: "OrchestrationNameString",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The ID of the session to be deleted.

Returns:

  • (String)


6287
6288
6289
6290
6291
6292
# File 'lib/aws-sdk-glue/types.rb', line 6287

class DeleteSessionRequest < Struct.new(
  :id,
  :request_origin)
  SENSITIVE = []
  include Aws::Structure
end

#request_originString

The name of the origin of the delete session request.

Returns:

  • (String)


6287
6288
6289
6290
6291
6292
# File 'lib/aws-sdk-glue/types.rb', line 6287

class DeleteSessionRequest < Struct.new(
  :id,
  :request_origin)
  SENSITIVE = []
  include Aws::Structure
end