aws.evidently.Project
Explore with Pulumi AI
Provides a CloudWatch Evidently Project resource.
Example Usage
Basic
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.evidently.Project("example", {
    name: "Example",
    description: "Example Description",
    tags: {
        Key1: "example Project",
    },
});
import pulumi
import pulumi_aws as aws
example = aws.evidently.Project("example",
    name="Example",
    description="Example Description",
    tags={
        "Key1": "example Project",
    })
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/evidently"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := evidently.NewProject(ctx, "example", &evidently.ProjectArgs{
			Name:        pulumi.String("Example"),
			Description: pulumi.String("Example Description"),
			Tags: pulumi.StringMap{
				"Key1": pulumi.String("example Project"),
			},
		})
		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.Evidently.Project("example", new()
    {
        Name = "Example",
        Description = "Example Description",
        Tags = 
        {
            { "Key1", "example Project" },
        },
    });
});
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()
            .name("Example")
            .description("Example Description")
            .tags(Map.of("Key1", "example Project"))
            .build());
    }
}
resources:
  example:
    type: aws:evidently:Project
    properties:
      name: Example
      description: Example Description
      tags:
        Key1: example Project
Store evaluation events in a CloudWatch Log Group
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.evidently.Project("example", {
    name: "Example",
    description: "Example Description",
    dataDelivery: {
        cloudwatchLogs: {
            logGroup: "example-log-group-name",
        },
    },
    tags: {
        Key1: "example Project",
    },
});
import pulumi
import pulumi_aws as aws
example = aws.evidently.Project("example",
    name="Example",
    description="Example Description",
    data_delivery={
        "cloudwatch_logs": {
            "log_group": "example-log-group-name",
        },
    },
    tags={
        "Key1": "example Project",
    })
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/evidently"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := evidently.NewProject(ctx, "example", &evidently.ProjectArgs{
			Name:        pulumi.String("Example"),
			Description: pulumi.String("Example Description"),
			DataDelivery: &evidently.ProjectDataDeliveryArgs{
				CloudwatchLogs: &evidently.ProjectDataDeliveryCloudwatchLogsArgs{
					LogGroup: pulumi.String("example-log-group-name"),
				},
			},
			Tags: pulumi.StringMap{
				"Key1": pulumi.String("example Project"),
			},
		})
		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.Evidently.Project("example", new()
    {
        Name = "Example",
        Description = "Example Description",
        DataDelivery = new Aws.Evidently.Inputs.ProjectDataDeliveryArgs
        {
            CloudwatchLogs = new Aws.Evidently.Inputs.ProjectDataDeliveryCloudwatchLogsArgs
            {
                LogGroup = "example-log-group-name",
            },
        },
        Tags = 
        {
            { "Key1", "example Project" },
        },
    });
});
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()
            .name("Example")
            .description("Example Description")
            .dataDelivery(ProjectDataDeliveryArgs.builder()
                .cloudwatchLogs(ProjectDataDeliveryCloudwatchLogsArgs.builder()
                    .logGroup("example-log-group-name")
                    .build())
                .build())
            .tags(Map.of("Key1", "example Project"))
            .build());
    }
}
resources:
  example:
    type: aws:evidently:Project
    properties:
      name: Example
      description: Example Description
      dataDelivery:
        cloudwatchLogs:
          logGroup: example-log-group-name
      tags:
        Key1: example Project
Store evaluation events in an S3 bucket
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.evidently.Project("example", {
    name: "Example",
    description: "Example Description",
    dataDelivery: {
        s3Destination: {
            bucket: "example-bucket-name",
            prefix: "example",
        },
    },
    tags: {
        Key1: "example Project",
    },
});
import pulumi
import pulumi_aws as aws
example = aws.evidently.Project("example",
    name="Example",
    description="Example Description",
    data_delivery={
        "s3_destination": {
            "bucket": "example-bucket-name",
            "prefix": "example",
        },
    },
    tags={
        "Key1": "example Project",
    })
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/evidently"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := evidently.NewProject(ctx, "example", &evidently.ProjectArgs{
			Name:        pulumi.String("Example"),
			Description: pulumi.String("Example Description"),
			DataDelivery: &evidently.ProjectDataDeliveryArgs{
				S3Destination: &evidently.ProjectDataDeliveryS3DestinationArgs{
					Bucket: pulumi.String("example-bucket-name"),
					Prefix: pulumi.String("example"),
				},
			},
			Tags: pulumi.StringMap{
				"Key1": pulumi.String("example Project"),
			},
		})
		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.Evidently.Project("example", new()
    {
        Name = "Example",
        Description = "Example Description",
        DataDelivery = new Aws.Evidently.Inputs.ProjectDataDeliveryArgs
        {
            S3Destination = new Aws.Evidently.Inputs.ProjectDataDeliveryS3DestinationArgs
            {
                Bucket = "example-bucket-name",
                Prefix = "example",
            },
        },
        Tags = 
        {
            { "Key1", "example Project" },
        },
    });
});
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()
            .name("Example")
            .description("Example Description")
            .dataDelivery(ProjectDataDeliveryArgs.builder()
                .s3Destination(ProjectDataDeliveryS3DestinationArgs.builder()
                    .bucket("example-bucket-name")
                    .prefix("example")
                    .build())
                .build())
            .tags(Map.of("Key1", "example Project"))
            .build());
    }
}
resources:
  example:
    type: aws:evidently:Project
    properties:
      name: Example
      description: Example Description
      dataDelivery:
        s3Destination:
          bucket: example-bucket-name
          prefix: example
      tags:
        Key1: example Project
Create Project Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Project(name: string, args?: ProjectArgs, opts?: CustomResourceOptions);@overload
def Project(resource_name: str,
            args: Optional[ProjectArgs] = None,
            opts: Optional[ResourceOptions] = None)
@overload
def Project(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            data_delivery: Optional[ProjectDataDeliveryArgs] = None,
            description: Optional[str] = None,
            name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None)func NewProject(ctx *Context, name string, args *ProjectArgs, opts ...ResourceOption) (*Project, error)public Project(string name, ProjectArgs? args = null, CustomResourceOptions? opts = null)
public Project(String name, ProjectArgs args)
public Project(String name, ProjectArgs args, CustomResourceOptions options)
type: aws:evidently:Project
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 ProjectArgs
- 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 ProjectArgs
- 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 ProjectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProjectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProjectArgs
- 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 exampleprojectResourceResourceFromEvidentlyproject = new Aws.Evidently.Project("exampleprojectResourceResourceFromEvidentlyproject", new()
{
    DataDelivery = new Aws.Evidently.Inputs.ProjectDataDeliveryArgs
    {
        CloudwatchLogs = new Aws.Evidently.Inputs.ProjectDataDeliveryCloudwatchLogsArgs
        {
            LogGroup = "string",
        },
        S3Destination = new Aws.Evidently.Inputs.ProjectDataDeliveryS3DestinationArgs
        {
            Bucket = "string",
            Prefix = "string",
        },
    },
    Description = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := evidently.NewProject(ctx, "exampleprojectResourceResourceFromEvidentlyproject", &evidently.ProjectArgs{
	DataDelivery: &evidently.ProjectDataDeliveryArgs{
		CloudwatchLogs: &evidently.ProjectDataDeliveryCloudwatchLogsArgs{
			LogGroup: pulumi.String("string"),
		},
		S3Destination: &evidently.ProjectDataDeliveryS3DestinationArgs{
			Bucket: pulumi.String("string"),
			Prefix: pulumi.String("string"),
		},
	},
	Description: pulumi.String("string"),
	Name:        pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var exampleprojectResourceResourceFromEvidentlyproject = new Project("exampleprojectResourceResourceFromEvidentlyproject", ProjectArgs.builder()
    .dataDelivery(ProjectDataDeliveryArgs.builder()
        .cloudwatchLogs(ProjectDataDeliveryCloudwatchLogsArgs.builder()
            .logGroup("string")
            .build())
        .s3Destination(ProjectDataDeliveryS3DestinationArgs.builder()
            .bucket("string")
            .prefix("string")
            .build())
        .build())
    .description("string")
    .name("string")
    .tags(Map.of("string", "string"))
    .build());
exampleproject_resource_resource_from_evidentlyproject = aws.evidently.Project("exampleprojectResourceResourceFromEvidentlyproject",
    data_delivery={
        "cloudwatch_logs": {
            "log_group": "string",
        },
        "s3_destination": {
            "bucket": "string",
            "prefix": "string",
        },
    },
    description="string",
    name="string",
    tags={
        "string": "string",
    })
const exampleprojectResourceResourceFromEvidentlyproject = new aws.evidently.Project("exampleprojectResourceResourceFromEvidentlyproject", {
    dataDelivery: {
        cloudwatchLogs: {
            logGroup: "string",
        },
        s3Destination: {
            bucket: "string",
            prefix: "string",
        },
    },
    description: "string",
    name: "string",
    tags: {
        string: "string",
    },
});
type: aws:evidently:Project
properties:
    dataDelivery:
        cloudwatchLogs:
            logGroup: string
        s3Destination:
            bucket: string
            prefix: string
    description: string
    name: string
    tags:
        string: string
Project Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Project resource accepts the following input properties:
- DataDelivery ProjectData Delivery 
- 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.
- Description string
- Specifies the description of the project.
- Name string
- A name for the project.
- Dictionary<string, string>
- Tags to apply to the project. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- DataDelivery ProjectData Delivery Args 
- 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.
- Description string
- Specifies the description of the project.
- Name string
- A name for the project.
- map[string]string
- Tags to apply to the project. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- dataDelivery ProjectData Delivery 
- 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.
- description String
- Specifies the description of the project.
- name String
- A name for the project.
- Map<String,String>
- Tags to apply to the project. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- dataDelivery ProjectData Delivery 
- 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.
- description string
- Specifies the description of the project.
- name string
- A name for the project.
- {[key: string]: string}
- Tags to apply to the project. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- data_delivery ProjectData Delivery Args 
- 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.
- description str
- Specifies the description of the project.
- name str
- A name for the project.
- Mapping[str, str]
- Tags to apply to the project. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- dataDelivery Property Map
- 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.
- description String
- Specifies the description of the project.
- name String
- A name for the project.
- Map<String>
- Tags to apply to the project. If configured with a provider default_tagsconfiguration 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 Project resource produces the following output properties:
- ActiveExperiment intCount 
- The number of ongoing experiments currently in the project.
- ActiveLaunch intCount 
- The number of ongoing launches currently in the project.
- Arn string
- The ARN of the project.
- CreatedTime string
- The date and time that the project is created.
- ExperimentCount 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.
- FeatureCount int
- The number of features currently in the project.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastUpdated stringTime 
- The date and time that the project was most recently updated.
- LaunchCount 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.
- Status string
- The current state of the project. Valid values are AVAILABLEandUPDATING.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- ActiveExperiment intCount 
- The number of ongoing experiments currently in the project.
- ActiveLaunch intCount 
- The number of ongoing launches currently in the project.
- Arn string
- The ARN of the project.
- CreatedTime string
- The date and time that the project is created.
- ExperimentCount 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.
- FeatureCount int
- The number of features currently in the project.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastUpdated stringTime 
- The date and time that the project was most recently updated.
- LaunchCount 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.
- Status string
- The current state of the project. Valid values are AVAILABLEandUPDATING.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- activeExperiment IntegerCount 
- The number of ongoing experiments currently in the project.
- activeLaunch IntegerCount 
- The number of ongoing launches currently in the project.
- arn String
- The ARN of the project.
- createdTime String
- The date and time that the project is created.
- experimentCount Integer
- 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.
- featureCount Integer
- The number of features currently in the project.
- id String
- The provider-assigned unique ID for this managed resource.
- lastUpdated StringTime 
- The date and time that the project was most recently updated.
- launchCount Integer
- 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.
- status String
- The current state of the project. Valid values are AVAILABLEandUPDATING.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- activeExperiment numberCount 
- The number of ongoing experiments currently in the project.
- activeLaunch numberCount 
- The number of ongoing launches currently in the project.
- arn string
- The ARN of the project.
- createdTime string
- The date and time that the project is created.
- experimentCount number
- 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.
- featureCount number
- The number of features currently in the project.
- id string
- The provider-assigned unique ID for this managed resource.
- lastUpdated stringTime 
- The date and time that the project was most recently updated.
- launchCount number
- 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.
- status string
- The current state of the project. Valid values are AVAILABLEandUPDATING.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- active_experiment_ intcount 
- The number of ongoing experiments currently in the project.
- active_launch_ intcount 
- The number of ongoing launches currently in the project.
- arn str
- The ARN of the project.
- created_time str
- The date and time that the project is created.
- experiment_count 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.
- feature_count int
- The number of features currently in the project.
- id str
- The provider-assigned unique ID for this managed resource.
- last_updated_ strtime 
- The date and time that the project was most recently updated.
- launch_count 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.
- status str
- The current state of the project. Valid values are AVAILABLEandUPDATING.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- activeExperiment NumberCount 
- The number of ongoing experiments currently in the project.
- activeLaunch NumberCount 
- The number of ongoing launches currently in the project.
- arn String
- The ARN of the project.
- createdTime String
- The date and time that the project is created.
- experimentCount Number
- 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.
- featureCount Number
- The number of features currently in the project.
- id String
- The provider-assigned unique ID for this managed resource.
- lastUpdated StringTime 
- The date and time that the project was most recently updated.
- launchCount Number
- 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.
- status String
- The current state of the project. Valid values are AVAILABLEandUPDATING.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
Look up Existing Project Resource
Get an existing Project 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?: ProjectState, opts?: CustomResourceOptions): Project@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        active_experiment_count: Optional[int] = None,
        active_launch_count: Optional[int] = None,
        arn: Optional[str] = None,
        created_time: Optional[str] = None,
        data_delivery: Optional[ProjectDataDeliveryArgs] = None,
        description: Optional[str] = None,
        experiment_count: Optional[int] = None,
        feature_count: Optional[int] = None,
        last_updated_time: Optional[str] = None,
        launch_count: Optional[int] = None,
        name: Optional[str] = None,
        status: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> Projectfunc GetProject(ctx *Context, name string, id IDInput, state *ProjectState, opts ...ResourceOption) (*Project, error)public static Project Get(string name, Input<string> id, ProjectState? state, CustomResourceOptions? opts = null)public static Project get(String name, Output<String> id, ProjectState state, CustomResourceOptions options)resources:  _:    type: aws:evidently:Project    get:      id: ${id}- 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.
- ActiveExperiment intCount 
- The number of ongoing experiments currently in the project.
- ActiveLaunch intCount 
- The number of ongoing launches currently in the project.
- Arn string
- The ARN of the project.
- CreatedTime string
- The date and time that the project is created.
- DataDelivery ProjectData Delivery 
- 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.
- Description string
- Specifies the description of the project.
- ExperimentCount 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.
- FeatureCount int
- The number of features currently in the project.
- LastUpdated stringTime 
- The date and time that the project was most recently updated.
- LaunchCount 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.
- Name string
- A name for the project.
- Status string
- The current state of the project. Valid values are AVAILABLEandUPDATING.
- Dictionary<string, string>
- Tags to apply to the project. If configured with a provider default_tagsconfiguration 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_tagsconfiguration block.
- ActiveExperiment intCount 
- The number of ongoing experiments currently in the project.
- ActiveLaunch intCount 
- The number of ongoing launches currently in the project.
- Arn string
- The ARN of the project.
- CreatedTime string
- The date and time that the project is created.
- DataDelivery ProjectData Delivery Args 
- 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.
- Description string
- Specifies the description of the project.
- ExperimentCount 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.
- FeatureCount int
- The number of features currently in the project.
- LastUpdated stringTime 
- The date and time that the project was most recently updated.
- LaunchCount 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.
- Name string
- A name for the project.
- Status string
- The current state of the project. Valid values are AVAILABLEandUPDATING.
- map[string]string
- Tags to apply to the project. If configured with a provider default_tagsconfiguration 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_tagsconfiguration block.
- activeExperiment IntegerCount 
- The number of ongoing experiments currently in the project.
- activeLaunch IntegerCount 
- The number of ongoing launches currently in the project.
- arn String
- The ARN of the project.
- createdTime String
- The date and time that the project is created.
- dataDelivery ProjectData Delivery 
- 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.
- description String
- Specifies the description of the project.
- experimentCount Integer
- 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.
- featureCount Integer
- The number of features currently in the project.
- lastUpdated StringTime 
- The date and time that the project was most recently updated.
- launchCount Integer
- 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.
- name String
- A name for the project.
- status String
- The current state of the project. Valid values are AVAILABLEandUPDATING.
- Map<String,String>
- Tags to apply to the project. If configured with a provider default_tagsconfiguration 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_tagsconfiguration block.
- activeExperiment numberCount 
- The number of ongoing experiments currently in the project.
- activeLaunch numberCount 
- The number of ongoing launches currently in the project.
- arn string
- The ARN of the project.
- createdTime string
- The date and time that the project is created.
- dataDelivery ProjectData Delivery 
- 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.
- description string
- Specifies the description of the project.
- experimentCount number
- 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.
- featureCount number
- The number of features currently in the project.
- lastUpdated stringTime 
- The date and time that the project was most recently updated.
- launchCount number
- 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.
- name string
- A name for the project.
- status string
- The current state of the project. Valid values are AVAILABLEandUPDATING.
- {[key: string]: string}
- Tags to apply to the project. If configured with a provider default_tagsconfiguration 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_tagsconfiguration block.
- active_experiment_ intcount 
- The number of ongoing experiments currently in the project.
- active_launch_ intcount 
- The number of ongoing launches currently in the project.
- arn str
- The ARN of the project.
- created_time str
- The date and time that the project is created.
- data_delivery ProjectData Delivery Args 
- 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.
- description str
- Specifies the description of the project.
- experiment_count 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.
- feature_count int
- The number of features currently in the project.
- last_updated_ strtime 
- The date and time that the project was most recently updated.
- launch_count 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.
- name str
- A name for the project.
- status str
- The current state of the project. Valid values are AVAILABLEandUPDATING.
- Mapping[str, str]
- Tags to apply to the project. If configured with a provider default_tagsconfiguration 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_tagsconfiguration block.
- activeExperiment NumberCount 
- The number of ongoing experiments currently in the project.
- activeLaunch NumberCount 
- The number of ongoing launches currently in the project.
- arn String
- The ARN of the project.
- createdTime String
- The date and time that the project is created.
- dataDelivery Property Map
- 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.
- description String
- Specifies the description of the project.
- experimentCount Number
- 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.
- featureCount Number
- The number of features currently in the project.
- lastUpdated StringTime 
- The date and time that the project was most recently updated.
- launchCount Number
- 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.
- name String
- A name for the project.
- status String
- The current state of the project. Valid values are AVAILABLEandUPDATING.
- Map<String>
- Tags to apply to the project. If configured with a provider default_tagsconfiguration 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_tagsconfiguration block.
Supporting Types
ProjectDataDelivery, ProjectDataDeliveryArgs      
- CloudwatchLogs ProjectData Delivery Cloudwatch Logs 
- A block that defines the CloudWatch Log Group that stores the evaluation events. See below.
- S3Destination
ProjectData Delivery S3Destination 
- A block that defines the S3 bucket and prefix that stores the evaluation events. See below.
- CloudwatchLogs ProjectData Delivery Cloudwatch Logs 
- A block that defines the CloudWatch Log Group that stores the evaluation events. See below.
- S3Destination
ProjectData Delivery S3Destination 
- A block that defines the S3 bucket and prefix that stores the evaluation events. See below.
- cloudwatchLogs ProjectData Delivery Cloudwatch Logs 
- A block that defines the CloudWatch Log Group that stores the evaluation events. See below.
- s3Destination
ProjectData Delivery S3Destination 
- A block that defines the S3 bucket and prefix that stores the evaluation events. See below.
- cloudwatchLogs ProjectData Delivery Cloudwatch Logs 
- A block that defines the CloudWatch Log Group that stores the evaluation events. See below.
- s3Destination
ProjectData Delivery S3Destination 
- A block that defines the S3 bucket and prefix that stores the evaluation events. See below.
- cloudwatch_logs ProjectData Delivery Cloudwatch Logs 
- A block that defines the CloudWatch Log Group that stores the evaluation events. See below.
- s3_destination ProjectData Delivery S3Destination 
- A block that defines the S3 bucket and prefix that stores the evaluation events. See below.
- cloudwatchLogs Property Map
- A block that defines the CloudWatch Log Group that stores the evaluation events. See below.
- s3Destination Property Map
- A block that defines the S3 bucket and prefix that stores the evaluation events. See below.
ProjectDataDeliveryCloudwatchLogs, ProjectDataDeliveryCloudwatchLogsArgs          
- LogGroup string
- The name of the log group where the project stores evaluation events.
- LogGroup string
- The name of the log group where the project stores evaluation events.
- logGroup String
- The name of the log group where the project stores evaluation events.
- logGroup string
- The name of the log group where the project stores evaluation events.
- log_group str
- The name of the log group where the project stores evaluation events.
- logGroup String
- The name of the log group where the project stores evaluation events.
ProjectDataDeliveryS3Destination, ProjectDataDeliveryS3DestinationArgs        
Import
Using pulumi import, import CloudWatch Evidently Project using the arn. For example:
$ pulumi import aws:evidently/project:Project example arn:aws:evidently:us-east-1:123456789012:segment/example
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 awsTerraform Provider.