com.pulumi.aws.appfabric.Ingestion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
The newest version!
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.appfabric;
import com.pulumi.aws.Utilities;
import com.pulumi.aws.appfabric.IngestionArgs;
import com.pulumi.aws.appfabric.inputs.IngestionState;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Resource for managing an AWS AppFabric Ingestion.
*
* ## Example Usage
*
* ### Basic Usage
*
* <!--Start PulumiCodeChooser -->
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.aws.appfabric.Ingestion;
* import com.pulumi.aws.appfabric.IngestionArgs;
* 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 Ingestion("example", IngestionArgs.builder()
* .app("OKTA")
* .appBundleArn(exampleAwsAppfabricAppBundle.arn())
* .tenantId("example.okta.com")
* .ingestionType("auditLog")
* .tags(Map.of("Environment", "test"))
* .build());
*
* }
* }
* }
*
* <!--End PulumiCodeChooser -->
*
* ## Import
*
* Using `pulumi import`, import AppFabric Ingestion using the `app_bundle_identifier` and `arn` separated by `,`. For example:
*
* ```sh
* $ pulumi import aws:appfabric/ingestion:Ingestion example arn:aws:appfabric:[region]:[account]:appbundle/a9b91477-8831-43c0-970c-xxxxxxxxxx,arn:aws:appfabric:[region]:[account]:appbundle/a9b91477-8831-43c0-970c-xxxxxxxxxx/ingestion/32251416-710b-4425-96ca-xxxxxxxxxx
* ```
*
*/
@ResourceType(type="aws:appfabric/ingestion:Ingestion")
public class Ingestion extends com.pulumi.resources.CustomResource {
/**
* Name of the application.
* Refer to the AWS Documentation for the [list of valid values](https://docs.aws.amazon.com/appfabric/latest/api/API_CreateIngestion.html#appfabric-CreateIngestion-request-app)
*
*/
@Export(name="app", refs={String.class}, tree="[0]")
private Output app;
/**
* @return Name of the application.
* Refer to the AWS Documentation for the [list of valid values](https://docs.aws.amazon.com/appfabric/latest/api/API_CreateIngestion.html#appfabric-CreateIngestion-request-app)
*
*/
public Output app() {
return this.app;
}
/**
* Amazon Resource Name (ARN) of the app bundle to use for the request.
*
*/
@Export(name="appBundleArn", refs={String.class}, tree="[0]")
private Output appBundleArn;
/**
* @return Amazon Resource Name (ARN) of the app bundle to use for the request.
*
*/
public Output appBundleArn() {
return this.appBundleArn;
}
/**
* ARN of the Ingestion.
*
*/
@Export(name="arn", refs={String.class}, tree="[0]")
private Output arn;
/**
* @return ARN of the Ingestion.
*
*/
public Output arn() {
return this.arn;
}
/**
* Ingestion type. Valid values are `auditLog`.
*
*/
@Export(name="ingestionType", refs={String.class}, tree="[0]")
private Output ingestionType;
/**
* @return Ingestion type. Valid values are `auditLog`.
*
*/
public Output ingestionType() {
return this.ingestionType;
}
/**
* Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
*
*/
@Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]")
private Output* @Nullable */ Map> tags;
/**
* @return Map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
*
*/
public Output>> tags() {
return Codegen.optional(this.tags);
}
/**
* Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
*
* @deprecated
* Please use `tags` instead.
*
*/
@Deprecated /* Please use `tags` instead. */
@Export(name="tagsAll", refs={Map.class,String.class}, tree="[0,1,1]")
private Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy