CfnAppProps

class aws_cdk.aws_pinpoint.CfnAppProps(*, name, tags=None)

Bases: object

Properties for defining a CfnApp.

Parameters:
  • name (str) – The display name of the application.

  • tags (Optional[Any]) – An array of key-value pairs to apply to this resource. For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.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_pinpoint as pinpoint

# tags: Any

cfn_app_props = pinpoint.CfnAppProps(
    name="name",

    # the properties below are optional
    tags=tags
)

Attributes

name

The display name of the application.

See:

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

tags

An array of key-value pairs to apply to this resource.

For more information, see Tag .

See:

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