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={
"cloudwatchLogs": {
"logGroup": "string",
},
"s3Destination": {
"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
The Project resource accepts the following input properties:
- Data
Delivery 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_tags
configuration 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 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_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- data
Delivery 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_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- data
Delivery 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_tags
configuration 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_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- data
Delivery 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_tags
configuration 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:
- 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 string
- The ARN of the project.
- Created
Time string - 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 string
- The provider-assigned unique ID for this managed resource.
- Last
Updated stringTime - 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 string
- The current state of the project. Valid values are
AVAILABLE
andUPDATING
. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration 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 string
- The ARN of the project.
- Created
Time string - 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 string
- The provider-assigned unique ID for this managed resource.
- Last
Updated stringTime - 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 string
- The current state of the project. Valid values are
AVAILABLE
andUPDATING
. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- active
Experiment IntegerCount - The number of ongoing experiments currently in the project.
- active
Launch IntegerCount - The number of ongoing launches currently in the project.
- arn String
- The ARN of the project.
- created
Time String - The date and time that the project is created.
- experiment
Count 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.
- feature
Count Integer - The number of features currently in the project.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Updated StringTime - The date and time that the project was most recently updated.
- launch
Count 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
AVAILABLE
andUPDATING
. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- active
Experiment numberCount - The number of ongoing experiments currently in the project.
- active
Launch numberCount - The number of ongoing launches currently in the project.
- arn string
- The ARN of the project.
- created
Time string - The date and time that the project is created.
- experiment
Count 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.
- feature
Count number - The number of features currently in the project.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Updated stringTime - The date and time that the project was most recently updated.
- launch
Count 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
AVAILABLE
andUPDATING
. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration 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
AVAILABLE
andUPDATING
. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- active
Experiment NumberCount - The number of ongoing experiments currently in the project.
- active
Launch NumberCount - The number of ongoing launches currently in the project.
- arn String
- The ARN of the project.
- created
Time String - The date and time that the project is created.
- experiment
Count 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.
- feature
Count Number - The number of features currently in the project.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Updated StringTime - The date and time that the project was most recently updated.
- launch
Count 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
AVAILABLE
andUPDATING
. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration 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) -> Project
func 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)
Resource lookup is not supported in YAML
- 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.
- 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 string
- The ARN of the project.
- Created
Time string - The date and time that the project is created.
- Data
Delivery 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.
- 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 stringTime - 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 string
- A name for the project.
- Status string
- The current state of the project. Valid values are
AVAILABLE
andUPDATING
. - Dictionary<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. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration 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 string
- The ARN of the project.
- Created
Time string - 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 string
- 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 stringTime - 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 string
- A name for the project.
- Status string
- The current state of the project. Valid values are
AVAILABLE
andUPDATING
. - 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. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- active
Experiment IntegerCount - The number of ongoing experiments currently in the project.
- active
Launch IntegerCount - The number of ongoing launches currently in the project.
- arn String
- The ARN of the project.
- created
Time String - The date and time that the project is created.
- data
Delivery 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.
- experiment
Count 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.
- feature
Count Integer - The number of features currently in the project.
- last
Updated StringTime - The date and time that the project was most recently updated.
- launch
Count 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
AVAILABLE
andUPDATING
. - 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. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- active
Experiment numberCount - The number of ongoing experiments currently in the project.
- active
Launch numberCount - The number of ongoing launches currently in the project.
- arn string
- The ARN of the project.
- created
Time string - The date and time that the project is created.
- data
Delivery 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.
- experiment
Count 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.
- feature
Count number - The number of features currently in the project.
- last
Updated stringTime - The date and time that the project was most recently updated.
- launch
Count 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
AVAILABLE
andUPDATING
. - {[key: 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. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration 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
AVAILABLE
andUPDATING
. - Mapping[str, str]
- 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. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- active
Experiment NumberCount - The number of ongoing experiments currently in the project.
- active
Launch NumberCount - The number of ongoing launches currently in the project.
- arn String
- The ARN of the project.
- created
Time String - The date and time that the project is created.
- data
Delivery 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.
- experiment
Count 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.
- feature
Count Number - The number of features currently in the project.
- last
Updated StringTime - The date and time that the project was most recently updated.
- launch
Count 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
AVAILABLE
andUPDATING
. - Map<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. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Supporting Types
ProjectDataDelivery, ProjectDataDeliveryArgs
- Cloudwatch
Logs ProjectData Delivery Cloudwatch Logs - A block that defines the CloudWatch Log Group that stores the evaluation events. See below.
- S3Destination
Project
Data 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.
- S3Destination
Project
Data 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.
- s3Destination
Project
Data 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.
- s3Destination
Project
Data 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.
- cloudwatch
Logs 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
- Log
Group string - The name of the log group where the project stores evaluation events.
- Log
Group string - The name of the log group where the project stores evaluation events.
- log
Group String - The name of the log group where the project stores evaluation events.
- log
Group 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.
- log
Group 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
aws
Terraform Provider.