interface ContactProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Invoicing.CfnProcurementPortalPreferencePropsMixin.ContactProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsinvoicing#CfnProcurementPortalPreferencePropsMixin_ContactProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.invoicing.CfnProcurementPortalPreferencePropsMixin.ContactProperty |
Python | aws_cdk.cfn_property_mixins.aws_invoicing.CfnProcurementPortalPreferencePropsMixin.ContactProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_invoicing » CfnProcurementPortalPreferencePropsMixin » 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/cfn-property-mixins';
const contactProperty: invoicing.CfnProcurementPortalPreferencePropsMixin.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