CfnRegistrationProps

class aws_cdk.aws_smsvoice.CfnRegistrationProps(*, registration_type, tags=None)

Bases: object

Properties for defining a CfnRegistration.

Parameters:
  • registration_type (str) – The type of registration form to create.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of tags (key and value pairs) to associate with the registration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-registration.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_smsvoice as smsvoice

cfn_registration_props = smsvoice.CfnRegistrationProps(
    registration_type="registrationType",

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

Attributes

registration_type

The type of registration form to create.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-registration.html#cfn-smsvoice-registration-registrationtype

tags

An array of tags (key and value pairs) to associate with the registration.

See:

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