CfnProfileProps
- class aws_cdk.aws_b2bi.CfnProfileProps(*, business_name, logging, name, phone, email=None, tags=None)
Bases:
object
Properties for defining a
CfnProfile
.- Parameters:
business_name (
str
) – Returns the name for the business associated with this profile.logging (
str
) – Specifies whether or not logging is enabled for this profile.name (
str
) – Returns the display name for profile.phone (
str
) –email (
Optional
[str
]) –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 import aws_b2bi as b2bi cfn_profile_props = b2bi.CfnProfileProps( business_name="businessName", logging="logging", name="name", phone="phone", # the properties below are optional email="email", 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
-
- Type:
see
- 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.