CfnRegistrationProps
- class aws_cdk.aws_smsvoice.CfnRegistrationProps(*, registration_type, tags=None)
Bases:
objectProperties 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:
- 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.
- tags
An array of tags (key and value pairs) to associate with the registration.