Project

class Project : KotlinCustomResource

Provides a CloudWatch Evidently Project resource.

Example Usage

Basic

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.evidently.Project;
import com.pulumi.aws.evidently.ProjectArgs;
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 Project("example", ProjectArgs.builder()
.description("Example Description")
.tags(Map.of("Key1", "example Project"))
.build());
}
}

Store evaluation events in a CloudWatch Log Group

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.evidently.Project;
import com.pulumi.aws.evidently.ProjectArgs;
import com.pulumi.aws.evidently.inputs.ProjectDataDeliveryArgs;
import com.pulumi.aws.evidently.inputs.ProjectDataDeliveryCloudwatchLogsArgs;
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 Project("example", ProjectArgs.builder()
.dataDelivery(ProjectDataDeliveryArgs.builder()
.cloudwatchLogs(ProjectDataDeliveryCloudwatchLogsArgs.builder()
.logGroup("example-log-group-name")
.build())
.build())
.description("Example Description")
.tags(Map.of("Key1", "example Project"))
.build());
}
}

Store evaluation events in an S3 bucket

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.evidently.Project;
import com.pulumi.aws.evidently.ProjectArgs;
import com.pulumi.aws.evidently.inputs.ProjectDataDeliveryArgs;
import com.pulumi.aws.evidently.inputs.ProjectDataDeliveryS3DestinationArgs;
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 Project("example", ProjectArgs.builder()
.dataDelivery(ProjectDataDeliveryArgs.builder()
.s3Destination(ProjectDataDeliveryS3DestinationArgs.builder()
.bucket("example-bucket-name")
.prefix("example")
.build())
.build())
.description("Example Description")
.tags(Map.of("Key1", "example Project"))
.build());
}
}

Import

CloudWatch Evidently Project can be imported using the arn, e.g.,

$ pulumi import aws:evidently/project:Project example arn:aws:evidently:us-east-1:123456789012:segment/example

Properties

Link copied to clipboard

The number of ongoing experiments currently in the project.

Link copied to clipboard
val activeLaunchCount: Output<Int>

The number of ongoing launches currently in the project.

Link copied to clipboard
val arn: Output<String>

The ARN of the project.

Link copied to clipboard
val createdTime: Output<String>

The date and time that the project is created.

Link copied to clipboard

A block that contains information about where Evidently is to store evaluation events for longer term storage, if you choose to do so. If you choose not to store these events, Evidently deletes them after using them to produce metrics and other experiment results that you can view. See below.

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

Specifies the description of the project.

Link copied to clipboard
val experimentCount: Output<Int>

The number of experiments currently in the project. This includes all experiments that have been created and not deleted, whether they are ongoing or not.

Link copied to clipboard
val featureCount: Output<Int>

The number of features currently in the project.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val lastUpdatedTime: Output<String>

The date and time that the project was most recently updated.

Link copied to clipboard
val launchCount: Output<Int>

The number of launches currently in the project. This includes all launches that have been created and not deleted, whether they are ongoing or not.

Link copied to clipboard
val name: Output<String>

A name for the project.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val status: Output<String>

The current state of the project. Valid values are AVAILABLE and UPDATING.

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

Tags to apply to the project. 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>