Package com.pulumi.aws.pinpoint
Class App
- java.lang.Object
-
- com.pulumi.resources.Resource
-
- com.pulumi.resources.CustomResource
-
- com.pulumi.aws.pinpoint.App
-
public class App extends com.pulumi.resources.CustomResource
Provides a Pinpoint App resource. ## Example Usage <!--Start PulumiCodeChooser -->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()); } }
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description com.pulumi.core.Output<java.lang.String>
applicationId()
com.pulumi.core.Output<java.lang.String>
arn()
com.pulumi.core.Output<java.util.Optional<AppCampaignHook>>
campaignHook()
static App
get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, AppState state, com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.com.pulumi.core.Output<java.util.Optional<AppLimits>>
limits()
com.pulumi.core.Output<java.lang.String>
name()
com.pulumi.core.Output<java.lang.String>
namePrefix()
com.pulumi.core.Output<java.util.Optional<AppQuietTime>>
quietTime()
com.pulumi.core.Output<java.util.Optional<java.util.Map<java.lang.String,java.lang.String>>>
tags()
com.pulumi.core.Output<java.util.Map<java.lang.String,java.lang.String>>
tagsAll()
-
-
-
Constructor Detail
-
App
public App(java.lang.String name)
- Parameters:
name
- The _unique_ name of the resulting resource.
-
App
public App(java.lang.String name, @Nullable AppArgs args)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.
-
App
public App(java.lang.String name, @Nullable AppArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.options
- A bag of options that control this resource's behavior.
-
-
Method Detail
-
applicationId
public com.pulumi.core.Output<java.lang.String> applicationId()
- Returns:
- The Application ID of the Pinpoint App.
-
arn
public com.pulumi.core.Output<java.lang.String> arn()
- Returns:
- Amazon Resource Name (ARN) of the PinPoint Application
-
campaignHook
public com.pulumi.core.Output<java.util.Optional<AppCampaignHook>> campaignHook()
- Returns:
- Specifies settings for invoking an AWS Lambda function that customizes a segment for a campaign
-
limits
public com.pulumi.core.Output<java.util.Optional<AppLimits>> limits()
- Returns:
- 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
public com.pulumi.core.Output<java.lang.String> name()
- Returns:
- The application name. By default generated by Pulumi
-
namePrefix
public com.pulumi.core.Output<java.lang.String> namePrefix()
- Returns:
- The name of the Pinpoint application. Conflicts with `name`
-
quietTime
public com.pulumi.core.Output<java.util.Optional<AppQuietTime>> quietTime()
- Returns:
- 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
-
tags
public com.pulumi.core.Output<java.util.Optional<java.util.Map<java.lang.String,java.lang.String>>> tags()
- Returns:
- 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.
-
tagsAll
public com.pulumi.core.Output<java.util.Map<java.lang.String,java.lang.String>> tagsAll()
- Returns:
- A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
-
get
public static App get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, @Nullable AppState state, @Nullable com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.- Parameters:
name
- The _unique_ name of the resulting resource.id
- The _unique_ provider ID of the resource to lookup.state
-options
- Optional settings to control the behavior of the CustomResource.
-
-