interface CustomDirectoriesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Transfer.CfnAgreementPropsMixin.CustomDirectoriesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstransfer#CfnAgreementPropsMixin_CustomDirectoriesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.transfer.CfnAgreementPropsMixin.CustomDirectoriesProperty |
Python | aws_cdk.cfn_property_mixins.aws_transfer.CfnAgreementPropsMixin.CustomDirectoriesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_transfer » 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 { aws_transfer as transfer } from '@aws-cdk/cfn-property-mixins';
const customDirectoriesProperty: transfer.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