Package-level declarations

Types

Link copied to clipboard
data class As2ConfigPropertiesArgs(val basicAuthSecretId: Output<String>? = null, val compression: Output<ConnectorAs2ConfigPropertiesCompression>? = null, val encryptionAlgorithm: Output<ConnectorAs2ConfigPropertiesEncryptionAlgorithm>? = null, val localProfileId: Output<String>? = null, val mdnResponse: Output<ConnectorAs2ConfigPropertiesMdnResponse>? = null, val mdnSigningAlgorithm: Output<ConnectorAs2ConfigPropertiesMdnSigningAlgorithm>? = null, val messageSubject: Output<String>? = null, val partnerProfileId: Output<String>? = null, val signingAlgorithm: Output<ConnectorAs2ConfigPropertiesSigningAlgorithm>? = null) : ConvertibleToJava<As2ConfigPropertiesArgs>

Configuration for an AS2 connector.

Link copied to clipboard
data class GetAgreementPlainArgs(val agreementId: String, val serverId: String) : ConvertibleToJava<GetAgreementPlainArgs>
Link copied to clipboard
data class GetCertificatePlainArgs(val certificateId: String) : ConvertibleToJava<GetCertificatePlainArgs>
Link copied to clipboard
data class GetConnectorPlainArgs(val connectorId: String) : ConvertibleToJava<GetConnectorPlainArgs>
Link copied to clipboard
data class GetProfilePlainArgs(val profileId: String) : ConvertibleToJava<GetProfilePlainArgs>
Link copied to clipboard
data class GetWorkflowPlainArgs(val workflowId: String) : ConvertibleToJava<GetWorkflowPlainArgs>
Link copied to clipboard
data class SftpConfigPropertiesArgs(val trustedHostKeys: Output<List<String>>? = null, val userSecretId: Output<String>? = null) : ConvertibleToJava<SftpConfigPropertiesArgs>

Configuration for an SFTP connector.

Link copied to clipboard
data class WorkflowEfsInputFileLocationArgs(val fileSystemId: Output<String>? = null, val path: Output<String>? = null) : ConvertibleToJava<WorkflowEfsInputFileLocationArgs>

Specifies the details for an EFS file.

Link copied to clipboard
data class WorkflowInputFileLocationArgs(val efsFileLocation: Output<WorkflowEfsInputFileLocationArgs>? = null, val s3FileLocation: Output<WorkflowS3InputFileLocationArgs>? = null) : ConvertibleToJava<WorkflowInputFileLocationArgs>

Specifies the location for the file being decrypted. Only applicable for the Decrypt type of workflow steps.

Link copied to clipboard
data class WorkflowS3FileLocationArgs(val s3FileLocation: Output<WorkflowS3InputFileLocationArgs>? = null) : ConvertibleToJava<WorkflowS3FileLocationArgs>

Specifies the location for the file being copied. Only applicable for the Copy type of workflow steps.

Link copied to clipboard
data class WorkflowS3InputFileLocationArgs(val bucket: Output<String>? = null, val key: Output<String>? = null) : ConvertibleToJava<WorkflowS3InputFileLocationArgs>

Specifies the details for a S3 file.

Link copied to clipboard
data class WorkflowS3TagArgs(val key: Output<String>, val value: Output<String>) : ConvertibleToJava<WorkflowS3TagArgs>

Specifies the key-value pair that are assigned to a file during the execution of a Tagging step.

Link copied to clipboard
Link copied to clipboard
data class WorkflowStepArgs(val copyStepDetails: Output<WorkflowStepCopyStepDetailsPropertiesArgs>? = null, val customStepDetails: Output<WorkflowStepCustomStepDetailsPropertiesArgs>? = null, val decryptStepDetails: Output<WorkflowStepDecryptStepDetailsPropertiesArgs>? = null, val deleteStepDetails: Output<WorkflowStepDeleteStepDetailsPropertiesArgs>? = null, val tagStepDetails: Output<WorkflowStepTagStepDetailsPropertiesArgs>? = null, val type: Output<WorkflowStepType>? = null) : ConvertibleToJava<WorkflowStepArgs>

The basic building block of a workflow.

Link copied to clipboard
data class WorkflowStepCopyStepDetailsPropertiesArgs(val destinationFileLocation: Output<WorkflowS3FileLocationArgs>? = null, val name: Output<String>? = null, val overwriteExisting: Output<WorkflowStepCopyStepDetailsPropertiesOverwriteExisting>? = null, val sourceFileLocation: Output<String>? = null) : ConvertibleToJava<WorkflowStepCopyStepDetailsPropertiesArgs>

Details for a step that performs a file copy.

data class WorkflowStepCustomStepDetailsPropertiesArgs(val name: Output<String>? = null, val sourceFileLocation: Output<String>? = null, val target: Output<String>? = null, val timeoutSeconds: Output<Int>? = null) : ConvertibleToJava<WorkflowStepCustomStepDetailsPropertiesArgs>

Details for a step that invokes a lambda function.

data class WorkflowStepDecryptStepDetailsPropertiesArgs(val destinationFileLocation: Output<WorkflowInputFileLocationArgs>, val name: Output<String>? = null, val overwriteExisting: Output<WorkflowStepDecryptStepDetailsPropertiesOverwriteExisting>? = null, val sourceFileLocation: Output<String>? = null, val type: Output<WorkflowStepDecryptStepDetailsPropertiesType>) : ConvertibleToJava<WorkflowStepDecryptStepDetailsPropertiesArgs>

Details for a step that performs a file decryption.

data class WorkflowStepDeleteStepDetailsPropertiesArgs(val name: Output<String>? = null, val sourceFileLocation: Output<String>? = null) : ConvertibleToJava<WorkflowStepDeleteStepDetailsPropertiesArgs>

Details for a step that deletes the file.

Link copied to clipboard
data class WorkflowStepTagStepDetailsPropertiesArgs(val name: Output<String>? = null, val sourceFileLocation: Output<String>? = null, val tags: Output<List<WorkflowS3TagArgs>>? = null) : ConvertibleToJava<WorkflowStepTagStepDetailsPropertiesArgs>

Details for a step that creates one or more tags.