Class: Aws::KafkaConnect::Types::CustomPluginFileDescription
- Inherits:
-
Struct
- Object
- Struct
- Aws::KafkaConnect::Types::CustomPluginFileDescription
- 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
-
#file_md_5 ⇒ String
The hex-encoded MD5 checksum of the custom plugin file.
-
#file_size ⇒ Integer
The size in bytes of the custom plugin file.
Instance Attribute Details
#file_md_5 ⇒ String
The hex-encoded MD5 checksum of the custom plugin file. You can use it to validate the file.
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_size ⇒ Integer
The size in bytes of the custom plugin file. You can use it to validate the file.
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 |