Interface CfnAgreement.CustomDirectoriesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAgreement.CustomDirectoriesProperty.Jsii$Proxy
- Enclosing class:
CfnAgreement
@Stability(Stable)
public static interface CfnAgreement.CustomDirectoriesProperty
extends software.amazon.jsii.JsiiSerializable
Specifies a separate directory for each type of file to store for an AS2 message.
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.transfer.*;
CustomDirectoriesProperty customDirectoriesProperty = CustomDirectoriesProperty.builder()
.failedFilesDirectory("failedFilesDirectory")
.mdnFilesDirectory("mdnFilesDirectory")
.payloadFilesDirectory("payloadFilesDirectory")
.statusFilesDirectory("statusFilesDirectory")
.temporaryFilesDirectory("temporaryFilesDirectory")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAgreement.CustomDirectoriesPropertystatic final classAn implementation forCfnAgreement.CustomDirectoriesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Specifies a location to store the failed files for an AS2 message.Specifies a location to store the MDN file for an AS2 message.Specifies a location to store the payload file for an AS2 message.Specifies a location to store the status file for an AS2 message.Specifies a location to store the temporary processing file for an AS2 message.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFailedFilesDirectory
Specifies a location to store the failed files for an AS2 message.- See Also:
-
getMdnFilesDirectory
Specifies a location to store the MDN file for an AS2 message.- See Also:
-
getPayloadFilesDirectory
Specifies a location to store the payload file for an AS2 message.- See Also:
-
getStatusFilesDirectory
Specifies a location to store the status file for an AS2 message.- See Also:
-
getTemporaryFilesDirectory
Specifies a location to store the temporary processing file for an AS2 message.- See Also:
-
builder
-