interface ContactProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Invoicing.CfnProcurementPortalPreference.ContactProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsinvoicing#CfnProcurementPortalPreference_ContactProperty |
Java | software.amazon.awscdk.services.invoicing.CfnProcurementPortalPreference.ContactProperty |
Python | aws_cdk.aws_invoicing.CfnProcurementPortalPreference.ContactProperty |
TypeScript | aws-cdk-lib » aws_invoicing » CfnProcurementPortalPreference » ContactProperty |
Contact information for a person or role associated with the procurement portal preference.
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 contactProperty: invoicing.CfnProcurementPortalPreference.ContactProperty = {
email: 'email',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| email? | string | The email address of the contact person or role. |
| name? | string | The name of the contact person or role. |
email?
Type:
string
(optional)
The email address of the contact person or role.
name?
Type:
string
(optional)
The name of the contact person or role.

.NET
Go
Java
Python
TypeScript