interface CustomDirectoriesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Transfer.CfnAgreement.CustomDirectoriesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awstransfer#CfnAgreement_CustomDirectoriesProperty |
Java | software.amazon.awscdk.services.transfer.CfnAgreement.CustomDirectoriesProperty |
Python | aws_cdk.aws_transfer.CfnAgreement.CustomDirectoriesProperty |
TypeScript | aws-cdk-lib » aws_transfer » CfnAgreement » CustomDirectoriesProperty |
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 { aws_transfer as transfer } from 'aws-cdk-lib';
const customDirectoriesProperty: transfer.CfnAgreement.CustomDirectoriesProperty = {
failedFilesDirectory: 'failedFilesDirectory',
mdnFilesDirectory: 'mdnFilesDirectory',
payloadFilesDirectory: 'payloadFilesDirectory',
statusFilesDirectory: 'statusFilesDirectory',
temporaryFilesDirectory: 'temporaryFilesDirectory',
};
Properties
| Name | Type | Description |
|---|---|---|
| failed | string | Specifies a location to store the failed files for an AS2 message. |
| mdn | string | Specifies a location to store the MDN file for an AS2 message. |
| payload | string | Specifies a location to store the payload file for an AS2 message. |
| status | string | Specifies a location to store the status file for an AS2 message. |
| temporary | string | Specifies a location to store the temporary processing file for an AS2 message. |
failedFilesDirectory
Type:
string
Specifies a location to store the failed files for an AS2 message.
mdnFilesDirectory
Type:
string
Specifies a location to store the MDN file for an AS2 message.
payloadFilesDirectory
Type:
string
Specifies a location to store the payload file for an AS2 message.
statusFilesDirectory
Type:
string
Specifies a location to store the status file for an AS2 message.
temporaryFilesDirectory
Type:
string
Specifies a location to store the temporary processing file for an AS2 message.

.NET
Go
Java
Python
TypeScript