interface TestEnvPreferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Invoicing.CfnProcurementPortalPreferencePropsMixin.TestEnvPreferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsinvoicing#CfnProcurementPortalPreferencePropsMixin_TestEnvPreferenceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.invoicing.CfnProcurementPortalPreferencePropsMixin.TestEnvPreferenceProperty |
Python | aws_cdk.cfn_property_mixins.aws_invoicing.CfnProcurementPortalPreferencePropsMixin.TestEnvPreferenceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_invoicing » CfnProcurementPortalPreferencePropsMixin » TestEnvPreferenceProperty |
Configuration settings for the test environment of the procurement portal.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_invoicing as invoicing } from '@aws-cdk/cfn-property-mixins';
const testEnvPreferenceProperty: invoicing.CfnProcurementPortalPreferencePropsMixin.TestEnvPreferenceProperty = {
buyerDomain: 'buyerDomain',
buyerIdentifier: 'buyerIdentifier',
procurementPortalInstanceEndpoint: 'procurementPortalInstanceEndpoint',
procurementPortalSharedSecret: 'procurementPortalSharedSecret',
supplierDomain: 'supplierDomain',
supplierIdentifier: 'supplierIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| buyer | string | The domain identifier for the buyer in the test environment. |
| buyer | string | The unique identifier for the buyer in the test environment. |
| procurement | string | The endpoint URL for e-invoice delivery in the test environment. |
| procurement | string | The shared secret for secure communication in the test environment. |
| supplier | string | The domain identifier for the supplier in the test environment. |
| supplier | string | The unique identifier for the supplier in the test environment. |
buyerDomain?
Type:
string
(optional)
The domain identifier for the buyer in the test environment.
buyerIdentifier?
Type:
string
(optional)
The unique identifier for the buyer in the test environment.
procurementPortalInstanceEndpoint?
Type:
string
(optional)
The endpoint URL for e-invoice delivery in the test environment.
procurementPortalSharedSecret?
Type:
string
(optional)
The shared secret for secure communication in the test environment.
supplierDomain?
Type:
string
(optional)
The domain identifier for the supplier in the test environment.
supplierIdentifier?
Type:
string
(optional)
The unique identifier for the supplier in the test environment.

.NET
Go
Java
Python
TypeScript