Interface CfnCustomPlugin.CustomPluginFileDescriptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCustomPlugin.CustomPluginFileDescriptionProperty.Jsii$Proxy
- Enclosing class:
CfnCustomPlugin
@Stability(Stable)
public static interface CfnCustomPlugin.CustomPluginFileDescriptionProperty
extends software.amazon.jsii.JsiiSerializable
Details about a custom plugin file.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.kafkaconnect.*;
CustomPluginFileDescriptionProperty customPluginFileDescriptionProperty = CustomPluginFileDescriptionProperty.builder()
.fileMd5("fileMd5")
.fileSize(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCustomPlugin.CustomPluginFileDescriptionPropertystatic final classAn implementation forCfnCustomPlugin.CustomPluginFileDescriptionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFileMd5
The hex-encoded MD5 checksum of the custom plugin file.You can use it to validate the file.
- See Also:
-
getFileSize
The size in bytes of the custom plugin file.You can use it to validate the file.
- See Also:
-
builder
-