interface CfnPartnershipMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.B2BI.Mixins.CfnPartnershipMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsb2bi/mixins#CfnPartnershipMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.b2bi.mixins.CfnPartnershipMixinProps |
Python | aws_cdk.mixins_preview.aws_b2bi.mixins.CfnPartnershipMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_b2bi » mixins » CfnPartnershipMixinProps |
Properties for CfnPartnershipPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as b2bi_mixins } from '@aws-cdk/mixins-preview/aws-b2bi';
const cfnPartnershipMixinProps: b2bi_mixins.CfnPartnershipMixinProps = {
capabilities: ['capabilities'],
capabilityOptions: {
inboundEdi: {
x12: {
acknowledgmentOptions: {
functionalAcknowledgment: 'functionalAcknowledgment',
technicalAcknowledgment: 'technicalAcknowledgment',
},
},
},
outboundEdi: {
x12: {
common: {
controlNumbers: {
startingFunctionalGroupControlNumber: 123,
startingInterchangeControlNumber: 123,
startingTransactionSetControlNumber: 123,
},
delimiters: {
componentSeparator: 'componentSeparator',
dataElementSeparator: 'dataElementSeparator',
segmentTerminator: 'segmentTerminator',
},
functionalGroupHeaders: {
applicationReceiverCode: 'applicationReceiverCode',
applicationSenderCode: 'applicationSenderCode',
responsibleAgencyCode: 'responsibleAgencyCode',
},
gs05TimeFormat: 'gs05TimeFormat',
interchangeControlHeaders: {
acknowledgmentRequestedCode: 'acknowledgmentRequestedCode',
receiverId: 'receiverId',
receiverIdQualifier: 'receiverIdQualifier',
repetitionSeparator: 'repetitionSeparator',
senderId: 'senderId',
senderIdQualifier: 'senderIdQualifier',
usageIndicatorCode: 'usageIndicatorCode',
},
validateEdi: false,
},
wrapOptions: {
lineLength: 123,
lineTerminator: 'lineTerminator',
wrapBy: 'wrapBy',
},
},
},
},
email: 'email',
name: 'name',
phone: 'phone',
profileId: 'profileId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| capabilities? | string[] | Returns one or more capabilities associated with this partnership. |
| capability | IResolvable | Capability | Contains the details for an Outbound EDI capability. |
| email? | string | Specifies the email address associated with this trading partner. |
| name? | string | Returns the name of the partnership. |
| phone? | string | Specifies the phone number associated with the partnership. |
| profile | string | Returns the unique, system-generated identifier for the profile connected to this partnership. |
| tags? | Cfn[] | A key-value pair for a specific partnership. |
capabilities?
Type:
string[]
(optional)
Returns one or more capabilities associated with this partnership.
capabilityOptions?
Type:
IResolvable | Capability
(optional)
Contains the details for an Outbound EDI capability.
email?
Type:
string
(optional)
Specifies the email address associated with this trading partner.
name?
Type:
string
(optional)
Returns the name of the partnership.
phone?
Type:
string
(optional)
Specifies the phone number associated with the partnership.
profileId?
Type:
string
(optional)
Returns the unique, system-generated identifier for the profile connected to this partnership.
tags?
Type:
Cfn[]
(optional)
A key-value pair for a specific partnership.
Tags are metadata that you can use to search for and group capabilities for various purposes.

.NET
Go
Java
Python
TypeScript