CfnProfileMixinProps
- class aws_cdk.mixins_preview.aws_b2bi.mixins.CfnProfileMixinProps(*, business_name=None, email=None, logging=None, name=None, phone=None, tags=None)
Bases:
objectProperties for CfnProfilePropsMixin.
- Parameters:
business_name (
Optional[str]) – Returns the name for the business associated with this profile.email (
Optional[str])logging (
Optional[str]) – Specifies whether or not logging is enabled for this profile.name (
Optional[str]) – Returns the display name for profile.phone (
Optional[str]) – Specifies the phone number associated with the profile.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A key-value pair for a specific profile. Tags are metadata that you can use to search for and group capabilities for various purposes.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-profile.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_b2bi import mixins as b2bi_mixins cfn_profile_mixin_props = b2bi_mixins.CfnProfileMixinProps( business_name="businessName", email="email", logging="logging", name="name", phone="phone", tags=[CfnTag( key="key", value="value" )] )
Attributes
- business_name
Returns the name for the business associated with this profile.
- email
-
- Type:
see
- logging
Specifies whether or not logging is enabled for this profile.
- name
Returns the display name for profile.
- phone
Specifies the phone number associated with the profile.
- tags
A key-value pair for a specific profile.
Tags are metadata that you can use to search for and group capabilities for various purposes.