CfnPartnershipProps

class aws_cdk.aws_b2bi.CfnPartnershipProps(*, email, name, profile_id, capabilities=None, phone=None, tags=None)

Bases: object

Properties for defining a CfnPartnership.

Parameters:
  • email (str) –

  • name (str) – Returns the name of the partnership.

  • profile_id (str) – Returns the unique, system-generated identifier for the profile connected to this partnership.

  • capabilities (Optional[Sequence[str]]) – Returns one or more capabilities associated with this partnership.

  • phone (Optional[str]) –

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.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_partnership_props = b2bi.CfnPartnershipProps(
    email="email",
    name="name",
    profile_id="profileId",

    # the properties below are optional
    capabilities=["capabilities"],
    phone="phone",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

capabilities

Returns one or more capabilities associated with this partnership.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html#cfn-b2bi-partnership-capabilities

email

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html#cfn-b2bi-partnership-email

Type:

see

name

Returns the name of the partnership.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html#cfn-b2bi-partnership-name

phone

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html#cfn-b2bi-partnership-phone

Type:

see

profile_id

Returns the unique, system-generated identifier for the profile connected to this partnership.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html#cfn-b2bi-partnership-profileid

tags

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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html#cfn-b2bi-partnership-tags