Interface CfnProfileMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProfileMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:56.250Z")
@Stability(Stable)
public interface CfnProfileMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnProfilePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.b2bi.*;
CfnProfileMixinProps cfnProfileMixinProps = CfnProfileMixinProps.builder()
.businessName("businessName")
.email("email")
.logging("logging")
.name("name")
.phone("phone")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProfileMixinPropsstatic final classAn implementation forCfnProfileMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnProfileMixinProps.Builderbuilder()default StringReturns the name for the business associated with this profile.default StringgetEmail()default StringSpecifies whether or not logging is enabled for this profile.default StringgetName()Returns the display name for profile.default StringgetPhone()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
-
getBusinessName
Returns the name for the business associated with this profile.- See Also:
-
getEmail
- 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
Specifies the phone number associated with the profile.- 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
CfnProfileMixinProps.BuilderofCfnProfileMixinProps
-