Interface CfnPartnershipProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPartnershipProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.94.0 (build b380f01)",
date="2024-03-14T22:21:50.691Z")
@Stability(Stable)
public interface CfnPartnershipProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnPartnership.
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.*;
CfnPartnershipProps cfnPartnershipProps = CfnPartnershipProps.builder()
.email("email")
.name("name")
.profileId("profileId")
// the properties below are optional
.capabilities(List.of("capabilities"))
.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 forCfnPartnershipPropsstatic final classAn implementation forCfnPartnershipProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPartnershipProps.Builderbuilder()Returns one or more capabilities associated with this partnership.getEmail()getName()Returns the name of the partnership.default StringgetPhone()Returns the unique, system-generated identifier for the profile connected to this partnership.getTags()A key-value pair for a specific partnership.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEmail
- See Also:
-
getName
Returns the name of the partnership.- See Also:
-
getProfileId
Returns the unique, system-generated identifier for the profile connected to this partnership.- See Also:
-
getCapabilities
Returns one or more capabilities associated with this partnership.- See Also:
-
getPhone
- See Also:
-
getTags
A key-value pair for a specific partnership.Tags are metadata that you can use to search for and group capabilities for various purposes.
- See Also:
-
builder
- Returns:
- a
CfnPartnershipProps.BuilderofCfnPartnershipProps
-