Interface CfnRegistrationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRegistrationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:12.329Z")
@Stability(Stable)
public interface CfnRegistrationProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.smsvoice.*;
CfnRegistrationProps cfnRegistrationProps = CfnRegistrationProps.builder()
.registrationType("registrationType")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRegistrationPropsstatic final classAn implementation forCfnRegistrationProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnRegistrationProps.Builderbuilder()The type of registration form to create.getTags()An array of tags (key and value pairs) to associate with the registration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRegistrationType
The type of registration form to create.- See Also:
-
getTags
An array of tags (key and value pairs) to associate with the registration.- See Also:
-
builder
- Returns:
- a
CfnRegistrationProps.BuilderofCfnRegistrationProps
-