interface TestEnvPreferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Invoicing.CfnProcurementPortalPreference.TestEnvPreferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsinvoicing#CfnProcurementPortalPreference_TestEnvPreferenceProperty |
Java | software.amazon.awscdk.services.invoicing.CfnProcurementPortalPreference.TestEnvPreferenceProperty |
Python | aws_cdk.aws_invoicing.CfnProcurementPortalPreference.TestEnvPreferenceProperty |
TypeScript | aws-cdk-lib » aws_invoicing » CfnProcurementPortalPreference » 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-lib';
const testEnvPreferenceProperty: invoicing.CfnProcurementPortalPreference.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