Interface CfnProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:23:57.491Z")
@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 Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnProfileProps
static final class
An implementation forCfnProfileProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnProfileProps.Builder
builder()
Returns the name for the business associated with this profile.default String
getEmail()
Specifies whether or not logging is enabled for this profile.getName()
Returns the display name for profile.getPhone()
getTags()
A key-value pair for a specific profile.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBusinessName
Returns the name for the business associated with this profile.- See Also:
-
getLogging
Specifies whether or not logging is enabled for this profile.- See Also:
-
getName
Returns the display name for profile.- See Also:
-
getPhone
- See Also:
-
getEmail
- See Also:
-
getTags
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 Also:
-
builder
- Returns:
- a
CfnProfileProps.Builder
ofCfnProfileProps
-