Class: Aws::AppSync::Types::GetFunctionRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb

Overview

Note:

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

{
  api_id: "String", # required
  function_id: "ResourceName", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#api_idString

The GraphQL API ID.

Returns:

  • (String)

1969
1970
1971
1972
1973
1974
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 1969

class GetFunctionRequest < Struct.new(
  :api_id,
  :function_id)
  SENSITIVE = []
  include Aws::Structure
end

#function_idString

The Function ID.

Returns:

  • (String)

1969
1970
1971
1972
1973
1974
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 1969

class GetFunctionRequest < Struct.new(
  :api_id,
  :function_id)
  SENSITIVE = []
  include Aws::Structure
end