App

class App : KotlinCustomResource

Provides a Pinpoint App 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.AppArgs;
import com.pulumi.aws.pinpoint.inputs.AppLimitsArgs;
import com.pulumi.aws.pinpoint.inputs.AppQuietTimeArgs;
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 example = new App("example", AppArgs.builder()
.limits(AppLimitsArgs.builder()
.maximumDuration(600)
.build())
.quietTime(AppQuietTimeArgs.builder()
.end("06:00")
.start("00:00")
.build())
.build());
}
}

Import

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

$ pulumi import aws:pinpoint/app:App name application-id

Properties

Link copied to clipboard
val applicationId: Output<String>

The Application ID of the Pinpoint App.

Link copied to clipboard
val arn: Output<String>

Amazon Resource Name (ARN) of the PinPoint Application

Link copied to clipboard

Specifies settings for invoking an AWS Lambda function that customizes a segment for a campaign

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val limits: Output<AppLimits>?

The default campaign limits for the app. These limits apply to each campaign for the app, unless the campaign overrides the default with limits of its own

Link copied to clipboard
val name: Output<String>

The application name. By default generated by this provider

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

The name of the Pinpoint application. Conflicts with name

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val quietTime: Output<AppQuietTime>?

The default quiet time for the app. Each campaign for this app sends no messages during this time unless the campaign overrides the default with a quiet time of its own

Link copied to clipboard
val tags: Output<Map<String, String>>?

Key-value map of resource tags. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
val urn: Output<String>