SmsChannel

class SmsChannel : KotlinCustomResource

Provides a Pinpoint SMS Channel resource.

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

Pinpoint SMS Channel can be imported using the application-id, e.g.,

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

Properties

Link copied to clipboard
val applicationId: Output<String>

The application ID.

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

Whether the channel is enabled or disabled. Defaults to true.

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

Promotional messages per second that can be sent.

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

Sender identifier of your messages.

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

The Short Code registered with the phone provider.

Link copied to clipboard

Transactional messages per second that can be sent.

Link copied to clipboard
val urn: Output<String>