interface CfnProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.B2BI.Mixins.CfnProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsb2bi/mixins#CfnProfileMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.b2bi.mixins.CfnProfileMixinProps |
Python | aws_cdk.mixins_preview.aws_b2bi.mixins.CfnProfileMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_b2bi » mixins » CfnProfileMixinProps |
Properties for CfnProfilePropsMixin.
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 { mixins as b2bi_mixins } from '@aws-cdk/mixins-preview/aws-b2bi';
const cfnProfileMixinProps: b2bi_mixins.CfnProfileMixinProps = {
businessName: 'businessName',
email: 'email',
logging: 'logging',
name: 'name',
phone: 'phone',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| business | string | Returns the name for the business associated with this profile. |
| email? | string | |
| 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. |
| tags? | Cfn[] | A key-value pair for a specific profile. |
businessName?
Type:
string
(optional)
Returns the name for the business associated with this profile.
email?
Type:
string
(optional)
logging?
Type:
string
(optional)
Specifies whether or not logging is enabled for this profile.
name?
Type:
string
(optional)
Returns the display name for profile.
phone?
Type:
string
(optional)
Specifies the phone number associated with the profile.
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