interface CfnProfileProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.B2BI.CfnProfileProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsb2bi#CfnProfileProps |
Java | software.amazon.awscdk.services.b2bi.CfnProfileProps |
Python | aws_cdk.aws_b2bi.CfnProfileProps |
TypeScript | aws-cdk-lib » aws_b2bi » CfnProfileProps |
Properties for defining a CfnProfile.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-profile.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_b2bi as b2bi } from 'aws-cdk-lib';
const cfnProfileProps: b2bi.CfnProfileProps = {
businessName: 'businessName',
logging: 'logging',
name: 'name',
phone: 'phone',
// the properties below are optional
email: 'email',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| business | string | Returns the name for the business associated with this profile. |
| logging | string | Specifies whether or not logging is enabled for this profile. |
| name | string | Returns the display name for profile. |
| phone | string | Specifies the phone number associated with the profile. |
| email? | string | |
| tags? | Cfn[] | A key-value pair for a specific profile. |
businessName
Type:
string
Returns the name for the business associated with this profile.
logging
Type:
string
Specifies whether or not logging is enabled for this profile.
name
Type:
string
Returns the display name for profile.
phone
Type:
string
Specifies the phone number associated with the profile.
email?
Type:
string
(optional)
tags?
Type:
Cfn[]
(optional)
A key-value pair for a specific profile.
Tags are metadata that you can use to search for and group capabilities for various purposes.

.NET
Go
Java
Python
TypeScript