CfnRegistrationMixinProps
- class aws_cdk.cfn_property_mixins.aws_smsvoice.CfnRegistrationMixinProps(*, registration_type=None, tags=None)
Bases:
objectProperties for CfnRegistrationPropsMixin.
- Parameters:
registration_type (
Optional[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.cfn_property_mixins import aws_smsvoice as smsvoice cfn_registration_mixin_props = smsvoice.CfnRegistrationMixinProps( registration_type="registrationType", 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.