Interface CfnProfileProps
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:33.110Z")
@Stability(Stable)
public interface CfnProfileProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a 
CfnProfile.
 Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.b2bi.*;
 CfnProfileProps cfnProfileProps = CfnProfileProps.builder()
         .businessName("businessName")
         .logging("logging")
         .name("name")
         .phone("phone")
         // the properties below are optional
         .email("email")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProfilePropsstatic final classAn implementation forCfnProfileProps
- 
Method SummaryModifier and TypeMethodDescriptionstatic CfnProfileProps.Builderbuilder()Returns the name for the business associated with this profile.default StringgetEmail()Specifies whether or not logging is enabled for this profile.getName()Returns the display name for profile.getPhone()Specifies the phone number associated with the profile.getTags()A key-value pair for a specific profile.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getBusinessNameReturns the name for the business associated with this profile.- See Also:
 
- 
getLoggingSpecifies whether or not logging is enabled for this profile.- See Also:
 
- 
getNameReturns the display name for profile.- See Also:
 
- 
getPhoneSpecifies the phone number associated with the profile.- See Also:
 
- 
getEmail- See Also:
 
- 
getTagsA key-value pair for a specific profile.Tags are metadata that you can use to search for and group capabilities for various purposes. - See Also:
 
- 
builder- Returns:
- a CfnProfileProps.BuilderofCfnProfileProps
 
 
-