Package com.pulumi.aws.codedeploy
Class Application
- java.lang.Object
-
- com.pulumi.resources.Resource
-
- com.pulumi.resources.CustomResource
-
- com.pulumi.aws.codedeploy.Application
-
public class Application extends com.pulumi.resources.CustomResource
Provides a CodeDeploy application to be used as a basis for deployments ## Example Usage ### ECS Application ```java package generated_program; import java.util.*; import java.io.*; import java.nio.*; import com.pulumi.*; public class App { public static void main(String[] args) { Pulumi.run(App::stack); } public static void stack(Context ctx) { var example = new Application("example", ApplicationArgs.builder() .computePlatform("ECS") .build()); } } ``` ### Lambda Application ```java package generated_program; import java.util.*; import java.io.*; import java.nio.*; import com.pulumi.*; public class App { public static void main(String[] args) { Pulumi.run(App::stack); } public static void stack(Context ctx) { var example = new Application("example", ApplicationArgs.builder() .computePlatform("Lambda") .build()); } } ``` ### Server Application ```java package generated_program; import java.util.*; import java.io.*; import java.nio.*; import com.pulumi.*; public class App { public static void main(String[] args) { Pulumi.run(App::stack); } public static void stack(Context ctx) { var example = new Application("example", ApplicationArgs.builder() .computePlatform("Server") .build()); } } ``` ## Import CodeDeploy Applications can be imported using the `name`, e.g., ```sh $ pulumi import aws:codedeploy/application:Application example my-application ```
-
-
Constructor Summary
Constructors Constructor Description Application(java.lang.String name)
Application(java.lang.String name, ApplicationArgs args)
Application(java.lang.String name, ApplicationArgs args, com.pulumi.resources.CustomResourceOptions options)
-
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<java.lang.String>>
computePlatform()
static Application
get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, ApplicationState 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.lang.String>
githubAccountName()
com.pulumi.core.Output<java.lang.Boolean>
linkedToGithub()
com.pulumi.core.Output<java.lang.String>
name()
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
-
Application
public Application(java.lang.String name)
- Parameters:
name
- The _unique_ name of the resulting resource.
-
Application
public Application(java.lang.String name, @Nullable ApplicationArgs args)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.
-
Application
public Application(java.lang.String name, @Nullable ApplicationArgs 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.
-
arn
public com.pulumi.core.Output<java.lang.String> arn()
- Returns:
- The ARN of the CodeDeploy application.
-
computePlatform
public com.pulumi.core.Output<java.util.Optional<java.lang.String>> computePlatform()
- Returns:
- The compute platform can either be `ECS`, `Lambda`, or `Server`. Default is `Server`.
-
githubAccountName
public com.pulumi.core.Output<java.lang.String> githubAccountName()
- Returns:
- The name for a connection to a GitHub account.
-
linkedToGithub
public com.pulumi.core.Output<java.lang.Boolean> linkedToGithub()
- Returns:
- Whether the user has authenticated with GitHub for the specified application.
-
name
public com.pulumi.core.Output<java.lang.String> name()
- Returns:
- The name of the application.
-
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 .
-
get
public static Application get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, @Nullable ApplicationState 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.
-
-