Interface CfnProcurementPortalPreferencePropsMixin.EinvoiceDeliveryPreferenceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnProcurementPortalPreferencePropsMixin.EinvoiceDeliveryPreferenceProperty.Jsii$Proxy
Enclosing class:
CfnProcurementPortalPreferencePropsMixin

@Stability(Stable) public static interface CfnProcurementPortalPreferencePropsMixin.EinvoiceDeliveryPreferenceProperty extends software.amazon.jsii.JsiiSerializable
Specifies the preferences for e-invoice delivery.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.invoicing.*;
 EinvoiceDeliveryPreferenceProperty einvoiceDeliveryPreferenceProperty = EinvoiceDeliveryPreferenceProperty.builder()
         .connectionTestingMethod("connectionTestingMethod")
         .einvoiceDeliveryActivationDate("einvoiceDeliveryActivationDate")
         .einvoiceDeliveryAttachmentTypes(List.of("einvoiceDeliveryAttachmentTypes"))
         .einvoiceDeliveryDocumentTypes(List.of("einvoiceDeliveryDocumentTypes"))
         .protocol("protocol")
         .purchaseOrderDataSources(List.of(PurchaseOrderDataSourceProperty.builder()
                 .einvoiceDeliveryDocumentType("einvoiceDeliveryDocumentType")
                 .purchaseOrderDataSourceType("purchaseOrderDataSourceType")
                 .build()))
         .build();
 

See Also: