SmsChannel

class SmsChannel : KotlinCustomResource

Use the aws.pinpoint.SmsChannel resource to manage Pinpoint SMS Channels.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.pinpoint.App;
import com.pulumi.aws.pinpoint.SmsChannel;
import com.pulumi.aws.pinpoint.SmsChannelArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var app = new App("app");
var sms = new SmsChannel("sms", SmsChannelArgs.builder()
.applicationId(app.applicationId())
.build());
}
}

Import

Using pulumi import, import the Pinpoint SMS Channel using the application_id. For example:

$ pulumi import aws:pinpoint/smsChannel:SmsChannel sms application-id

Properties

Link copied to clipboard
val applicationId: Output<String>

ID of the application.

Link copied to clipboard
val enabled: Output<Boolean>?

Whether the channel is enabled or disabled. By default, it is set to true.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

Maximum number of promotional messages that can be sent per second.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val senderId: Output<String>?

Identifier of the sender for your messages.

Link copied to clipboard
val shortCode: Output<String>?

Short Code registered with the phone provider.

Link copied to clipboard

Maximum number of transactional messages per second that can be sent.

Link copied to clipboard
val urn: Output<String>