CfnPartnershipMixinProps
- class aws_cdk.mixins_preview.aws_b2bi.mixins.CfnPartnershipMixinProps(*, capabilities=None, capability_options=None, email=None, name=None, phone=None, profile_id=None, tags=None)
Bases:
objectProperties for CfnPartnershipPropsMixin.
- Parameters:
capabilities (
Optional[Sequence[str]]) – Returns one or more capabilities associated with this partnership.capability_options (
Union[IResolvable,CapabilityOptionsProperty,Dict[str,Any],None]) – Contains the details for an Outbound EDI capability.email (
Optional[str]) – Specifies the email address associated with this trading partner.name (
Optional[str]) – Returns the name of the partnership.phone (
Optional[str]) – Specifies the phone number associated with the partnership.profile_id (
Optional[str]) – Returns the unique, system-generated identifier for the profile connected to this partnership.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A key-value pair for a specific partnership. Tags are metadata that you can use to search for and group capabilities for various purposes.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_b2bi import mixins as b2bi_mixins cfn_partnership_mixin_props = b2bi_mixins.CfnPartnershipMixinProps( capabilities=["capabilities"], capability_options=b2bi_mixins.CfnPartnershipPropsMixin.CapabilityOptionsProperty( inbound_edi=b2bi_mixins.CfnPartnershipPropsMixin.InboundEdiOptionsProperty( x12=b2bi_mixins.CfnPartnershipPropsMixin.X12InboundEdiOptionsProperty( acknowledgment_options=b2bi_mixins.CfnPartnershipPropsMixin.X12AcknowledgmentOptionsProperty( functional_acknowledgment="functionalAcknowledgment", technical_acknowledgment="technicalAcknowledgment" ) ) ), outbound_edi=b2bi_mixins.CfnPartnershipPropsMixin.OutboundEdiOptionsProperty( x12=b2bi_mixins.CfnPartnershipPropsMixin.X12EnvelopeProperty( common=b2bi_mixins.CfnPartnershipPropsMixin.X12OutboundEdiHeadersProperty( control_numbers=b2bi_mixins.CfnPartnershipPropsMixin.X12ControlNumbersProperty( starting_functional_group_control_number=123, starting_interchange_control_number=123, starting_transaction_set_control_number=123 ), delimiters=b2bi_mixins.CfnPartnershipPropsMixin.X12DelimitersProperty( component_separator="componentSeparator", data_element_separator="dataElementSeparator", segment_terminator="segmentTerminator" ), functional_group_headers=b2bi_mixins.CfnPartnershipPropsMixin.X12FunctionalGroupHeadersProperty( application_receiver_code="applicationReceiverCode", application_sender_code="applicationSenderCode", responsible_agency_code="responsibleAgencyCode" ), gs05_time_format="gs05TimeFormat", interchange_control_headers=b2bi_mixins.CfnPartnershipPropsMixin.X12InterchangeControlHeadersProperty( acknowledgment_requested_code="acknowledgmentRequestedCode", receiver_id="receiverId", receiver_id_qualifier="receiverIdQualifier", repetition_separator="repetitionSeparator", sender_id="senderId", sender_id_qualifier="senderIdQualifier", usage_indicator_code="usageIndicatorCode" ), validate_edi=False ), wrap_options=b2bi_mixins.CfnPartnershipPropsMixin.WrapOptionsProperty( line_length=123, line_terminator="lineTerminator", wrap_by="wrapBy" ) ) ) ), email="email", name="name", phone="phone", profile_id="profileId", tags=[CfnTag( key="key", value="value" )] )
Attributes
- capabilities
Returns one or more capabilities associated with this partnership.
- capability_options
Contains the details for an Outbound EDI capability.
- email
Specifies the email address associated with this trading partner.
- name
Returns the name of the partnership.
- phone
Specifies the phone number associated with the partnership.
- profile_id
Returns the unique, system-generated identifier for the profile connected to this partnership.
- tags
A key-value pair for a specific partnership.
Tags are metadata that you can use to search for and group capabilities for various purposes.