AWS Fundamentals Logo
AWS Fundamentals
AWS::SMSVOICE::Registration

SMSVOICE Registration

A registration that has been created.

Properties

2 configurable properties. 1 required. Click a row to see details.

Filter:
PropertyTypeFlags
RegistrationType
string
RequiredCreate-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
CreatedTimestampstringThe time when the registration was created, in UNIX epoch time format.
CurrentVersionNumberintegerThe current version number of the registration.
RegistrationArnstringThe Amazon Resource Name (ARN) for the registration.
RegistrationIdstringThe unique identifier for the registration.
RegistrationStatusstringThe status of the registration.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::SMSVOICE::Registration

Resources:
  MyResource:
    Type: AWS::SMSVOICE::Registration
    Properties:
      RegistrationType: "value"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

sms-voice:CreateRegistrationsms-voice:DescribeRegistrationssms-voice:TagResource

read

sms-voice:DescribeRegistrationssms-voice:ListTagsForResource

update

sms-voice:DescribeRegistrationssms-voice:TagResourcesms-voice:UntagResourcesms-voice:ListTagsForResource

delete

sms-voice:DeleteRegistrationsms-voice:DescribeRegistrations

list

sms-voice:DescribeRegistrations

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceSMSVOICE
Properties7
Required1
TaggingSupported
Primary IDRegistrationArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

RegistrationType

External Links