interface CfnRegistrationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SMSVOICE.CfnRegistrationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssmsvoice#CfnRegistrationProps |
Java | software.amazon.awscdk.services.smsvoice.CfnRegistrationProps |
Python | aws_cdk.aws_smsvoice.CfnRegistrationProps |
TypeScript | aws-cdk-lib » aws_smsvoice » CfnRegistrationProps |
Properties for defining a CfnRegistration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_smsvoice as smsvoice } from 'aws-cdk-lib';
const cfnRegistrationProps: smsvoice.CfnRegistrationProps = {
registrationType: 'registrationType',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| registration | string | The type of registration form to create. |
| tags? | Cfn[] | An array of tags (key and value pairs) to associate with the registration. |
registrationType
Type:
string
The type of registration form to create.
tags?
Type:
Cfn[]
(optional)
An array of tags (key and value pairs) to associate with the registration.

.NET
Go
Java
Python
TypeScript