interface CustomDirectoriesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Mixins.CfnAgreementPropsMixin.CustomDirectoriesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/mixins#CfnAgreementPropsMixin_CustomDirectoriesProperty |
Java | software.amazon.awscdk.mixins.preview.services.transfer.mixins.CfnAgreementPropsMixin.CustomDirectoriesProperty |
Python | aws_cdk.mixins_preview.aws_transfer.mixins.CfnAgreementPropsMixin.CustomDirectoriesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_transfer » mixins » CfnAgreementPropsMixin » 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 { mixins as transfer_mixins } from '@aws-cdk/mixins-preview/aws-transfer';
const customDirectoriesProperty: transfer_mixins.CfnAgreementPropsMixin.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
(optional)
Specifies a location to store the failed files for an AS2 message.
mdnFilesDirectory?
Type:
string
(optional)
Specifies a location to store the MDN file for an AS2 message.
payloadFilesDirectory?
Type:
string
(optional)
Specifies a location to store the payload file for an AS2 message.
statusFilesDirectory?
Type:
string
(optional)
Specifies a location to store the status file for an AS2 message.
temporaryFilesDirectory?
Type:
string
(optional)
Specifies a location to store the temporary processing file for an AS2 message.

.NET
Go
Java
Python
TypeScript