Try AWS Native preview for resources not in the classic version.
aws.pinpoint.App
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides a Pinpoint App resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.pinpoint.App("example", {
name: "test-app",
limits: {
maximumDuration: 600,
},
quietTime: {
start: "00:00",
end: "06:00",
},
});
import pulumi
import pulumi_aws as aws
example = aws.pinpoint.App("example",
name="test-app",
limits={
"maximumDuration": 600,
},
quiet_time={
"start": "00:00",
"end": "06:00",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/pinpoint"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := pinpoint.NewApp(ctx, "example", &pinpoint.AppArgs{
Name: pulumi.String("test-app"),
Limits: &pinpoint.AppLimitsArgs{
MaximumDuration: pulumi.Int(600),
},
QuietTime: &pinpoint.AppQuietTimeArgs{
Start: pulumi.String("00:00"),
End: pulumi.String("06:00"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Pinpoint.App("example", new()
{
Name = "test-app",
Limits = new Aws.Pinpoint.Inputs.AppLimitsArgs
{
MaximumDuration = 600,
},
QuietTime = new Aws.Pinpoint.Inputs.AppQuietTimeArgs
{
Start = "00:00",
End = "06:00",
},
});
});
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()
.name("test-app")
.limits(AppLimitsArgs.builder()
.maximumDuration(600)
.build())
.quietTime(AppQuietTimeArgs.builder()
.start("00:00")
.end("06:00")
.build())
.build());
}
}
resources:
example:
type: aws:pinpoint:App
properties:
name: test-app
limits:
maximumDuration: 600
quietTime:
start: 00:00
end: 06:00
Create App Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new App(name: string, args?: AppArgs, opts?: CustomResourceOptions);
@overload
def App(resource_name: str,
args: Optional[AppArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def App(resource_name: str,
opts: Optional[ResourceOptions] = None,
campaign_hook: Optional[AppCampaignHookArgs] = None,
limits: Optional[AppLimitsArgs] = None,
name: Optional[str] = None,
name_prefix: Optional[str] = None,
quiet_time: Optional[AppQuietTimeArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewApp(ctx *Context, name string, args *AppArgs, opts ...ResourceOption) (*App, error)
public App(string name, AppArgs? args = null, CustomResourceOptions? opts = null)
type: aws:pinpoint:App
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AppArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AppArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AppArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AppArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AppArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var awsAppResource = new Aws.Pinpoint.App("awsAppResource", new()
{
CampaignHook = new Aws.Pinpoint.Inputs.AppCampaignHookArgs
{
LambdaFunctionName = "string",
Mode = "string",
WebUrl = "string",
},
Limits = new Aws.Pinpoint.Inputs.AppLimitsArgs
{
Daily = 0,
MaximumDuration = 0,
MessagesPerSecond = 0,
Total = 0,
},
Name = "string",
NamePrefix = "string",
QuietTime = new Aws.Pinpoint.Inputs.AppQuietTimeArgs
{
End = "string",
Start = "string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := pinpoint.NewApp(ctx, "awsAppResource", &pinpoint.AppArgs{
CampaignHook: &pinpoint.AppCampaignHookArgs{
LambdaFunctionName: pulumi.String("string"),
Mode: pulumi.String("string"),
WebUrl: pulumi.String("string"),
},
Limits: &pinpoint.AppLimitsArgs{
Daily: pulumi.Int(0),
MaximumDuration: pulumi.Int(0),
MessagesPerSecond: pulumi.Int(0),
Total: pulumi.Int(0),
},
Name: pulumi.String("string"),
NamePrefix: pulumi.String("string"),
QuietTime: &pinpoint.AppQuietTimeArgs{
End: pulumi.String("string"),
Start: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var awsAppResource = new App("awsAppResource", AppArgs.builder()
.campaignHook(AppCampaignHookArgs.builder()
.lambdaFunctionName("string")
.mode("string")
.webUrl("string")
.build())
.limits(AppLimitsArgs.builder()
.daily(0)
.maximumDuration(0)
.messagesPerSecond(0)
.total(0)
.build())
.name("string")
.namePrefix("string")
.quietTime(AppQuietTimeArgs.builder()
.end("string")
.start("string")
.build())
.tags(Map.of("string", "string"))
.build());
aws_app_resource = aws.pinpoint.App("awsAppResource",
campaign_hook={
"lambdaFunctionName": "string",
"mode": "string",
"webUrl": "string",
},
limits={
"daily": 0,
"maximumDuration": 0,
"messagesPerSecond": 0,
"total": 0,
},
name="string",
name_prefix="string",
quiet_time={
"end": "string",
"start": "string",
},
tags={
"string": "string",
})
const awsAppResource = new aws.pinpoint.App("awsAppResource", {
campaignHook: {
lambdaFunctionName: "string",
mode: "string",
webUrl: "string",
},
limits: {
daily: 0,
maximumDuration: 0,
messagesPerSecond: 0,
total: 0,
},
name: "string",
namePrefix: "string",
quietTime: {
end: "string",
start: "string",
},
tags: {
string: "string",
},
});
type: aws:pinpoint:App
properties:
campaignHook:
lambdaFunctionName: string
mode: string
webUrl: string
limits:
daily: 0
maximumDuration: 0
messagesPerSecond: 0
total: 0
name: string
namePrefix: string
quietTime:
end: string
start: string
tags:
string: string
App Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The App resource accepts the following input properties:
- Campaign
Hook AppCampaign Hook - Specifies settings for invoking an AWS Lambda function that customizes a segment for a campaign
- Limits
App
Limits - 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
- Name string
- The application name. By default generated by Pulumi
- Name
Prefix string - The name of the Pinpoint application. Conflicts with
name
- Quiet
Time AppQuiet Time - 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
- Dictionary<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.
- Campaign
Hook AppCampaign Hook Args - Specifies settings for invoking an AWS Lambda function that customizes a segment for a campaign
- Limits
App
Limits Args - 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
- Name string
- The application name. By default generated by Pulumi
- Name
Prefix string - The name of the Pinpoint application. Conflicts with
name
- Quiet
Time AppQuiet Time Args - 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
- 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.
- campaign
Hook AppCampaign Hook - Specifies settings for invoking an AWS Lambda function that customizes a segment for a campaign
- limits
App
Limits - 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
- name String
- The application name. By default generated by Pulumi
- name
Prefix String - The name of the Pinpoint application. Conflicts with
name
- quiet
Time AppQuiet Time - 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
- 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.
- campaign
Hook AppCampaign Hook - Specifies settings for invoking an AWS Lambda function that customizes a segment for a campaign
- limits
App
Limits - 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
- name string
- The application name. By default generated by Pulumi
- name
Prefix string - The name of the Pinpoint application. Conflicts with
name
- quiet
Time AppQuiet Time - 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
- {[key: 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.
- campaign_
hook AppCampaign Hook Args - Specifies settings for invoking an AWS Lambda function that customizes a segment for a campaign
- limits
App
Limits Args - 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
- name str
- The application name. By default generated by Pulumi
- name_
prefix str - The name of the Pinpoint application. Conflicts with
name
- quiet_
time AppQuiet Time Args - 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
- Mapping[str, str]
- 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.
- campaign
Hook Property Map - Specifies settings for invoking an AWS Lambda function that customizes a segment for a campaign
- limits Property Map
- 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
- name String
- The application name. By default generated by Pulumi
- name
Prefix String - The name of the Pinpoint application. Conflicts with
name
- quiet
Time Property Map - 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
- Map<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.
Outputs
All input properties are implicitly available as output properties. Additionally, the App resource produces the following output properties:
- Application
Id string - The Application ID of the Pinpoint App.
- Arn string
- Amazon Resource Name (ARN) of the PinPoint Application
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Application
Id string - The Application ID of the Pinpoint App.
- Arn string
- Amazon Resource Name (ARN) of the PinPoint Application
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- application
Id String - The Application ID of the Pinpoint App.
- arn String
- Amazon Resource Name (ARN) of the PinPoint Application
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- application
Id string - The Application ID of the Pinpoint App.
- arn string
- Amazon Resource Name (ARN) of the PinPoint Application
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- application_
id str - The Application ID of the Pinpoint App.
- arn str
- Amazon Resource Name (ARN) of the PinPoint Application
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- application
Id String - The Application ID of the Pinpoint App.
- arn String
- Amazon Resource Name (ARN) of the PinPoint Application
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing App Resource
Get an existing App resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AppState, opts?: CustomResourceOptions): App
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_id: Optional[str] = None,
arn: Optional[str] = None,
campaign_hook: Optional[AppCampaignHookArgs] = None,
limits: Optional[AppLimitsArgs] = None,
name: Optional[str] = None,
name_prefix: Optional[str] = None,
quiet_time: Optional[AppQuietTimeArgs] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None) -> App
func GetApp(ctx *Context, name string, id IDInput, state *AppState, opts ...ResourceOption) (*App, error)
public static App Get(string name, Input<string> id, AppState? state, CustomResourceOptions? opts = null)
public static App get(String name, Output<String> id, AppState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Application
Id string - The Application ID of the Pinpoint App.
- Arn string
- Amazon Resource Name (ARN) of the PinPoint Application
- Campaign
Hook AppCampaign Hook - Specifies settings for invoking an AWS Lambda function that customizes a segment for a campaign
- Limits
App
Limits - 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
- Name string
- The application name. By default generated by Pulumi
- Name
Prefix string - The name of the Pinpoint application. Conflicts with
name
- Quiet
Time AppQuiet Time - 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
- Dictionary<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. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Application
Id string - The Application ID of the Pinpoint App.
- Arn string
- Amazon Resource Name (ARN) of the PinPoint Application
- Campaign
Hook AppCampaign Hook Args - Specifies settings for invoking an AWS Lambda function that customizes a segment for a campaign
- Limits
App
Limits Args - 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
- Name string
- The application name. By default generated by Pulumi
- Name
Prefix string - The name of the Pinpoint application. Conflicts with
name
- Quiet
Time AppQuiet Time Args - 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
- 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. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- application
Id String - The Application ID of the Pinpoint App.
- arn String
- Amazon Resource Name (ARN) of the PinPoint Application
- campaign
Hook AppCampaign Hook - Specifies settings for invoking an AWS Lambda function that customizes a segment for a campaign
- limits
App
Limits - 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
- name String
- The application name. By default generated by Pulumi
- name
Prefix String - The name of the Pinpoint application. Conflicts with
name
- quiet
Time AppQuiet Time - 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
- 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. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- application
Id string - The Application ID of the Pinpoint App.
- arn string
- Amazon Resource Name (ARN) of the PinPoint Application
- campaign
Hook AppCampaign Hook - Specifies settings for invoking an AWS Lambda function that customizes a segment for a campaign
- limits
App
Limits - 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
- name string
- The application name. By default generated by Pulumi
- name
Prefix string - The name of the Pinpoint application. Conflicts with
name
- quiet
Time AppQuiet Time - 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
- {[key: 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. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- application_
id str - The Application ID of the Pinpoint App.
- arn str
- Amazon Resource Name (ARN) of the PinPoint Application
- campaign_
hook AppCampaign Hook Args - Specifies settings for invoking an AWS Lambda function that customizes a segment for a campaign
- limits
App
Limits Args - 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
- name str
- The application name. By default generated by Pulumi
- name_
prefix str - The name of the Pinpoint application. Conflicts with
name
- quiet_
time AppQuiet Time Args - 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
- Mapping[str, str]
- 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. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- application
Id String - The Application ID of the Pinpoint App.
- arn String
- Amazon Resource Name (ARN) of the PinPoint Application
- campaign
Hook Property Map - Specifies settings for invoking an AWS Lambda function that customizes a segment for a campaign
- limits Property Map
- 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
- name String
- The application name. By default generated by Pulumi
- name
Prefix String - The name of the Pinpoint application. Conflicts with
name
- quiet
Time Property Map - 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
- Map<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. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Supporting Types
AppCampaignHook, AppCampaignHookArgs
- Lambda
Function stringName - Lambda function name or ARN to be called for delivery. Conflicts with
web_url
- Mode string
- What mode Lambda should be invoked in. Valid values for this parameter are
DELIVERY
,FILTER
. - Web
Url string - Web URL to call for hook. If the URL has authentication specified it will be added as authentication to the request. Conflicts with
lambda_function_name
- Lambda
Function stringName - Lambda function name or ARN to be called for delivery. Conflicts with
web_url
- Mode string
- What mode Lambda should be invoked in. Valid values for this parameter are
DELIVERY
,FILTER
. - Web
Url string - Web URL to call for hook. If the URL has authentication specified it will be added as authentication to the request. Conflicts with
lambda_function_name
- lambda
Function StringName - Lambda function name or ARN to be called for delivery. Conflicts with
web_url
- mode String
- What mode Lambda should be invoked in. Valid values for this parameter are
DELIVERY
,FILTER
. - web
Url String - Web URL to call for hook. If the URL has authentication specified it will be added as authentication to the request. Conflicts with
lambda_function_name
- lambda
Function stringName - Lambda function name or ARN to be called for delivery. Conflicts with
web_url
- mode string
- What mode Lambda should be invoked in. Valid values for this parameter are
DELIVERY
,FILTER
. - web
Url string - Web URL to call for hook. If the URL has authentication specified it will be added as authentication to the request. Conflicts with
lambda_function_name
- lambda_
function_ strname - Lambda function name or ARN to be called for delivery. Conflicts with
web_url
- mode str
- What mode Lambda should be invoked in. Valid values for this parameter are
DELIVERY
,FILTER
. - web_
url str - Web URL to call for hook. If the URL has authentication specified it will be added as authentication to the request. Conflicts with
lambda_function_name
- lambda
Function StringName - Lambda function name or ARN to be called for delivery. Conflicts with
web_url
- mode String
- What mode Lambda should be invoked in. Valid values for this parameter are
DELIVERY
,FILTER
. - web
Url String - Web URL to call for hook. If the URL has authentication specified it will be added as authentication to the request. Conflicts with
lambda_function_name
AppLimits, AppLimitsArgs
- Daily int
- The maximum number of messages that the campaign can send daily.
- Maximum
Duration int - The length of time (in seconds) that the campaign can run before it ends and message deliveries stop. This duration begins at the scheduled start time for the campaign. The minimum value is 60.
- Messages
Per intSecond - The number of messages that the campaign can send per second. The minimum value is 50, and the maximum is 20000.
- Total int
- The maximum total number of messages that the campaign can send.
- Daily int
- The maximum number of messages that the campaign can send daily.
- Maximum
Duration int - The length of time (in seconds) that the campaign can run before it ends and message deliveries stop. This duration begins at the scheduled start time for the campaign. The minimum value is 60.
- Messages
Per intSecond - The number of messages that the campaign can send per second. The minimum value is 50, and the maximum is 20000.
- Total int
- The maximum total number of messages that the campaign can send.
- daily Integer
- The maximum number of messages that the campaign can send daily.
- maximum
Duration Integer - The length of time (in seconds) that the campaign can run before it ends and message deliveries stop. This duration begins at the scheduled start time for the campaign. The minimum value is 60.
- messages
Per IntegerSecond - The number of messages that the campaign can send per second. The minimum value is 50, and the maximum is 20000.
- total Integer
- The maximum total number of messages that the campaign can send.
- daily number
- The maximum number of messages that the campaign can send daily.
- maximum
Duration number - The length of time (in seconds) that the campaign can run before it ends and message deliveries stop. This duration begins at the scheduled start time for the campaign. The minimum value is 60.
- messages
Per numberSecond - The number of messages that the campaign can send per second. The minimum value is 50, and the maximum is 20000.
- total number
- The maximum total number of messages that the campaign can send.
- daily int
- The maximum number of messages that the campaign can send daily.
- maximum_
duration int - The length of time (in seconds) that the campaign can run before it ends and message deliveries stop. This duration begins at the scheduled start time for the campaign. The minimum value is 60.
- messages_
per_ intsecond - The number of messages that the campaign can send per second. The minimum value is 50, and the maximum is 20000.
- total int
- The maximum total number of messages that the campaign can send.
- daily Number
- The maximum number of messages that the campaign can send daily.
- maximum
Duration Number - The length of time (in seconds) that the campaign can run before it ends and message deliveries stop. This duration begins at the scheduled start time for the campaign. The minimum value is 60.
- messages
Per NumberSecond - The number of messages that the campaign can send per second. The minimum value is 50, and the maximum is 20000.
- total Number
- The maximum total number of messages that the campaign can send.
AppQuietTime, AppQuietTimeArgs
Import
Using pulumi import
, import Pinpoint App using the application-id
. For example:
$ pulumi import aws:pinpoint/app:App name application-id
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.