Class: Aws::KafkaConnect::Types::CustomPluginFileDescription

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

Overview

Details about a custom plugin file.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#file_md_5String

The hex-encoded MD5 checksum of the custom plugin file. You can use it to validate the file.

Returns:

  • (String)


659
660
661
662
663
664
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 659

class CustomPluginFileDescription < Struct.new(
  :file_md_5,
  :file_size)
  SENSITIVE = []
  include Aws::Structure
end

#file_sizeInteger

The size in bytes of the custom plugin file. You can use it to validate the file.

Returns:

  • (Integer)


659
660
661
662
663
664
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 659

class CustomPluginFileDescription < Struct.new(
  :file_md_5,
  :file_size)
  SENSITIVE = []
  include Aws::Structure
end