Skip to content

CloudWatchEvidentlyClient

Index > CloudWatchEvidently > CloudWatchEvidentlyClient

Auto-generated documentation for CloudWatchEvidently type annotations stubs module types-aiobotocore-evidently.

CloudWatchEvidentlyClient

Type annotations and code completion for session.client("evidently") boto3 documentation

Usage example
from aioboto3.session import Session
from types_aiobotocore_evidently.client import CloudWatchEvidentlyClient

session = Session()
async with session.client("evidently") as client:
    client: CloudWatchEvidentlyClient

Exceptions

aioboto3 client exceptions are generated in runtime. This class provides code completion for session.client("evidently").exceptions structure.

Usage example
async with session.client("evidently") as client:
    try:
        do_something(client)
    except (
            client.AccessDeniedException,
        client.ClientError,
        client.ConflictException,
        client.InternalServerException,
        client.ResourceNotFoundException,
        client.ServiceQuotaExceededException,
        client.ServiceUnavailableException,
        client.ThrottlingException,
        client.ValidationException,
    ) as e:
        print(e)
Type checking example
from types_aiobotocore_evidently.client import Exceptions

def handle_error(exc: Exceptions.AccessDeniedException) -> None:
    ...

Methods

batch_evaluate_feature

This operation assigns feature variation to user sessions.

Type annotations and code completion for session.client("evidently").batch_evaluate_feature method. boto3 documentation

Method definition
await def batch_evaluate_feature(
    self,
    *,
    project: str,
    requests: Sequence[EvaluationRequestTypeDef],  # (1)
) -> BatchEvaluateFeatureResponseTypeDef:  # (2)
    ...
  1. See EvaluationRequestTypeDef
  2. See BatchEvaluateFeatureResponseTypeDef
Usage example with kwargs
kwargs: BatchEvaluateFeatureRequestRequestTypeDef = {  # (1)
    "project": ...,
    "requests": ...,
}

parent.batch_evaluate_feature(**kwargs)
  1. See BatchEvaluateFeatureRequestRequestTypeDef

can_paginate

Check if an operation can be paginated.

Type annotations and code completion for session.client("evidently").can_paginate method. boto3 documentation

Method definition
def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

close

Closes underlying endpoint connections.

Type annotations and code completion for session.client("evidently").close method. boto3 documentation

Method definition
await def close(
    self,
) -> None:
    ...

create_experiment

Creates an Evidently experiment.

Type annotations and code completion for session.client("evidently").create_experiment method. boto3 documentation

Method definition
await def create_experiment(
    self,
    *,
    metricGoals: Sequence[MetricGoalConfigTypeDef],  # (1)
    name: str,
    project: str,
    treatments: Sequence[TreatmentConfigTypeDef],  # (2)
    description: str = ...,
    onlineAbConfig: OnlineAbConfigTypeDef = ...,  # (3)
    randomizationSalt: str = ...,
    samplingRate: int = ...,
    segment: str = ...,
    tags: Mapping[str, str] = ...,
) -> CreateExperimentResponseTypeDef:  # (4)
    ...
  1. See MetricGoalConfigTypeDef
  2. See TreatmentConfigTypeDef
  3. See OnlineAbConfigTypeDef
  4. See CreateExperimentResponseTypeDef
Usage example with kwargs
kwargs: CreateExperimentRequestRequestTypeDef = {  # (1)
    "metricGoals": ...,
    "name": ...,
    "project": ...,
    "treatments": ...,
}

parent.create_experiment(**kwargs)
  1. See CreateExperimentRequestRequestTypeDef

create_feature

Creates an Evidently feature that you want to launch or test.

Type annotations and code completion for session.client("evidently").create_feature method. boto3 documentation

Method definition
await def create_feature(
    self,
    *,
    name: str,
    project: str,
    variations: Sequence[VariationConfigTypeDef],  # (1)
    defaultVariation: str = ...,
    description: str = ...,
    entityOverrides: Mapping[str, str] = ...,
    evaluationStrategy: FeatureEvaluationStrategyType = ...,  # (2)
    tags: Mapping[str, str] = ...,
) -> CreateFeatureResponseTypeDef:  # (3)
    ...
  1. See VariationConfigTypeDef
  2. See FeatureEvaluationStrategyType
  3. See CreateFeatureResponseTypeDef
Usage example with kwargs
kwargs: CreateFeatureRequestRequestTypeDef = {  # (1)
    "name": ...,
    "project": ...,
    "variations": ...,
}

parent.create_feature(**kwargs)
  1. See CreateFeatureRequestRequestTypeDef

create_launch

Creates a launch of a given feature.

Type annotations and code completion for session.client("evidently").create_launch method. boto3 documentation

Method definition
await def create_launch(
    self,
    *,
    groups: Sequence[LaunchGroupConfigTypeDef],  # (1)
    name: str,
    project: str,
    description: str = ...,
    metricMonitors: Sequence[MetricMonitorConfigTypeDef] = ...,  # (2)
    randomizationSalt: str = ...,
    scheduledSplitsConfig: ScheduledSplitsLaunchConfigTypeDef = ...,  # (3)
    tags: Mapping[str, str] = ...,
) -> CreateLaunchResponseTypeDef:  # (4)
    ...
  1. See LaunchGroupConfigTypeDef
  2. See MetricMonitorConfigTypeDef
  3. See ScheduledSplitsLaunchConfigTypeDef
  4. See CreateLaunchResponseTypeDef
Usage example with kwargs
kwargs: CreateLaunchRequestRequestTypeDef = {  # (1)
    "groups": ...,
    "name": ...,
    "project": ...,
}

parent.create_launch(**kwargs)
  1. See CreateLaunchRequestRequestTypeDef

create_project

Creates a project, which is the logical object in Evidently that can contain features, launches, and experiments.

Type annotations and code completion for session.client("evidently").create_project method. boto3 documentation

Method definition
await def create_project(
    self,
    *,
    name: str,
    dataDelivery: ProjectDataDeliveryConfigTypeDef = ...,  # (1)
    description: str = ...,
    tags: Mapping[str, str] = ...,
) -> CreateProjectResponseTypeDef:  # (2)
    ...
  1. See ProjectDataDeliveryConfigTypeDef
  2. See CreateProjectResponseTypeDef
Usage example with kwargs
kwargs: CreateProjectRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.create_project(**kwargs)
  1. See CreateProjectRequestRequestTypeDef

create_segment

Use this operation to define a segment of your audience.

Type annotations and code completion for session.client("evidently").create_segment method. boto3 documentation

Method definition
await def create_segment(
    self,
    *,
    name: str,
    pattern: str,
    description: str = ...,
    tags: Mapping[str, str] = ...,
) -> CreateSegmentResponseTypeDef:  # (1)
    ...
  1. See CreateSegmentResponseTypeDef
Usage example with kwargs
kwargs: CreateSegmentRequestRequestTypeDef = {  # (1)
    "name": ...,
    "pattern": ...,
}

parent.create_segment(**kwargs)
  1. See CreateSegmentRequestRequestTypeDef

delete_experiment

Deletes an Evidently experiment.

Type annotations and code completion for session.client("evidently").delete_experiment method. boto3 documentation

Method definition
await def delete_experiment(
    self,
    *,
    experiment: str,
    project: str,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: DeleteExperimentRequestRequestTypeDef = {  # (1)
    "experiment": ...,
    "project": ...,
}

parent.delete_experiment(**kwargs)
  1. See DeleteExperimentRequestRequestTypeDef

delete_feature

Deletes an Evidently feature.

Type annotations and code completion for session.client("evidently").delete_feature method. boto3 documentation

Method definition
await def delete_feature(
    self,
    *,
    feature: str,
    project: str,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: DeleteFeatureRequestRequestTypeDef = {  # (1)
    "feature": ...,
    "project": ...,
}

parent.delete_feature(**kwargs)
  1. See DeleteFeatureRequestRequestTypeDef

delete_launch

Deletes an Evidently launch.

Type annotations and code completion for session.client("evidently").delete_launch method. boto3 documentation

Method definition
await def delete_launch(
    self,
    *,
    launch: str,
    project: str,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: DeleteLaunchRequestRequestTypeDef = {  # (1)
    "launch": ...,
    "project": ...,
}

parent.delete_launch(**kwargs)
  1. See DeleteLaunchRequestRequestTypeDef

delete_project

Deletes an Evidently project.

Type annotations and code completion for session.client("evidently").delete_project method. boto3 documentation

Method definition
await def delete_project(
    self,
    *,
    project: str,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: DeleteProjectRequestRequestTypeDef = {  # (1)
    "project": ...,
}

parent.delete_project(**kwargs)
  1. See DeleteProjectRequestRequestTypeDef

delete_segment

Deletes a segment.

Type annotations and code completion for session.client("evidently").delete_segment method. boto3 documentation

Method definition
await def delete_segment(
    self,
    *,
    segment: str,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: DeleteSegmentRequestRequestTypeDef = {  # (1)
    "segment": ...,
}

parent.delete_segment(**kwargs)
  1. See DeleteSegmentRequestRequestTypeDef

evaluate_feature

This operation assigns a feature variation to one given user session.

Type annotations and code completion for session.client("evidently").evaluate_feature method. boto3 documentation

Method definition
await def evaluate_feature(
    self,
    *,
    entityId: str,
    feature: str,
    project: str,
    evaluationContext: str = ...,
) -> EvaluateFeatureResponseTypeDef:  # (1)
    ...
  1. See EvaluateFeatureResponseTypeDef
Usage example with kwargs
kwargs: EvaluateFeatureRequestRequestTypeDef = {  # (1)
    "entityId": ...,
    "feature": ...,
    "project": ...,
}

parent.evaluate_feature(**kwargs)
  1. See EvaluateFeatureRequestRequestTypeDef

generate_presigned_url

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for session.client("evidently").generate_presigned_url method. boto3 documentation

Method definition
await def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

get_experiment

Returns the details about one experiment.

Type annotations and code completion for session.client("evidently").get_experiment method. boto3 documentation

Method definition
await def get_experiment(
    self,
    *,
    experiment: str,
    project: str,
) -> GetExperimentResponseTypeDef:  # (1)
    ...
  1. See GetExperimentResponseTypeDef
Usage example with kwargs
kwargs: GetExperimentRequestRequestTypeDef = {  # (1)
    "experiment": ...,
    "project": ...,
}

parent.get_experiment(**kwargs)
  1. See GetExperimentRequestRequestTypeDef

get_experiment_results

Retrieves the results of a running or completed experiment.

Type annotations and code completion for session.client("evidently").get_experiment_results method. boto3 documentation

Method definition
await def get_experiment_results(
    self,
    *,
    experiment: str,
    metricNames: Sequence[str],
    project: str,
    treatmentNames: Sequence[str],
    baseStat: ExperimentBaseStatType = ...,  # (1)
    endTime: Union[datetime, str] = ...,
    period: int = ...,
    reportNames: Sequence[ExperimentReportNameType] = ...,  # (2)
    resultStats: Sequence[ExperimentResultRequestTypeType] = ...,  # (3)
    startTime: Union[datetime, str] = ...,
) -> GetExperimentResultsResponseTypeDef:  # (4)
    ...
  1. See ExperimentBaseStatType
  2. See ExperimentReportNameType
  3. See ExperimentResultRequestTypeType
  4. See GetExperimentResultsResponseTypeDef
Usage example with kwargs
kwargs: GetExperimentResultsRequestRequestTypeDef = {  # (1)
    "experiment": ...,
    "metricNames": ...,
    "project": ...,
    "treatmentNames": ...,
}

parent.get_experiment_results(**kwargs)
  1. See GetExperimentResultsRequestRequestTypeDef

get_feature

Returns the details about one feature.

Type annotations and code completion for session.client("evidently").get_feature method. boto3 documentation

Method definition
await def get_feature(
    self,
    *,
    feature: str,
    project: str,
) -> GetFeatureResponseTypeDef:  # (1)
    ...
  1. See GetFeatureResponseTypeDef
Usage example with kwargs
kwargs: GetFeatureRequestRequestTypeDef = {  # (1)
    "feature": ...,
    "project": ...,
}

parent.get_feature(**kwargs)
  1. See GetFeatureRequestRequestTypeDef

get_launch

Returns the details about one launch.

Type annotations and code completion for session.client("evidently").get_launch method. boto3 documentation

Method definition
await def get_launch(
    self,
    *,
    launch: str,
    project: str,
) -> GetLaunchResponseTypeDef:  # (1)
    ...
  1. See GetLaunchResponseTypeDef
Usage example with kwargs
kwargs: GetLaunchRequestRequestTypeDef = {  # (1)
    "launch": ...,
    "project": ...,
}

parent.get_launch(**kwargs)
  1. See GetLaunchRequestRequestTypeDef

get_project

Returns the details about one launch.

Type annotations and code completion for session.client("evidently").get_project method. boto3 documentation

Method definition
await def get_project(
    self,
    *,
    project: str,
) -> GetProjectResponseTypeDef:  # (1)
    ...
  1. See GetProjectResponseTypeDef
Usage example with kwargs
kwargs: GetProjectRequestRequestTypeDef = {  # (1)
    "project": ...,
}

parent.get_project(**kwargs)
  1. See GetProjectRequestRequestTypeDef

get_segment

Returns information about the specified segment.

Type annotations and code completion for session.client("evidently").get_segment method. boto3 documentation

Method definition
await def get_segment(
    self,
    *,
    segment: str,
) -> GetSegmentResponseTypeDef:  # (1)
    ...
  1. See GetSegmentResponseTypeDef
Usage example with kwargs
kwargs: GetSegmentRequestRequestTypeDef = {  # (1)
    "segment": ...,
}

parent.get_segment(**kwargs)
  1. See GetSegmentRequestRequestTypeDef

list_experiments

Returns configuration details about all the experiments in the specified project.

Type annotations and code completion for session.client("evidently").list_experiments method. boto3 documentation

Method definition
await def list_experiments(
    self,
    *,
    project: str,
    maxResults: int = ...,
    nextToken: str = ...,
    status: ExperimentStatusType = ...,  # (1)
) -> ListExperimentsResponseTypeDef:  # (2)
    ...
  1. See ExperimentStatusType
  2. See ListExperimentsResponseTypeDef
Usage example with kwargs
kwargs: ListExperimentsRequestRequestTypeDef = {  # (1)
    "project": ...,
}

parent.list_experiments(**kwargs)
  1. See ListExperimentsRequestRequestTypeDef

list_features

Returns configuration details about all the features in the specified project.

Type annotations and code completion for session.client("evidently").list_features method. boto3 documentation

Method definition
await def list_features(
    self,
    *,
    project: str,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListFeaturesResponseTypeDef:  # (1)
    ...
  1. See ListFeaturesResponseTypeDef
Usage example with kwargs
kwargs: ListFeaturesRequestRequestTypeDef = {  # (1)
    "project": ...,
}

parent.list_features(**kwargs)
  1. See ListFeaturesRequestRequestTypeDef

list_launches

Returns configuration details about all the launches in the specified project.

Type annotations and code completion for session.client("evidently").list_launches method. boto3 documentation

Method definition
await def list_launches(
    self,
    *,
    project: str,
    maxResults: int = ...,
    nextToken: str = ...,
    status: LaunchStatusType = ...,  # (1)
) -> ListLaunchesResponseTypeDef:  # (2)
    ...
  1. See LaunchStatusType
  2. See ListLaunchesResponseTypeDef
Usage example with kwargs
kwargs: ListLaunchesRequestRequestTypeDef = {  # (1)
    "project": ...,
}

parent.list_launches(**kwargs)
  1. See ListLaunchesRequestRequestTypeDef

list_projects

Returns configuration details about all the projects in the current Region in your account.

Type annotations and code completion for session.client("evidently").list_projects method. boto3 documentation

Method definition
await def list_projects(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListProjectsResponseTypeDef:  # (1)
    ...
  1. See ListProjectsResponseTypeDef
Usage example with kwargs
kwargs: ListProjectsRequestRequestTypeDef = {  # (1)
    "maxResults": ...,
}

parent.list_projects(**kwargs)
  1. See ListProjectsRequestRequestTypeDef

list_segment_references

Use this operation to find which experiments or launches are using a specified segment.

Type annotations and code completion for session.client("evidently").list_segment_references method. boto3 documentation

Method definition
await def list_segment_references(
    self,
    *,
    segment: str,
    type: SegmentReferenceResourceTypeType,  # (1)
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListSegmentReferencesResponseTypeDef:  # (2)
    ...
  1. See SegmentReferenceResourceTypeType
  2. See ListSegmentReferencesResponseTypeDef
Usage example with kwargs
kwargs: ListSegmentReferencesRequestRequestTypeDef = {  # (1)
    "segment": ...,
    "type": ...,
}

parent.list_segment_references(**kwargs)
  1. See ListSegmentReferencesRequestRequestTypeDef

list_segments

Returns a list of audience segments that you have created in your account in this Region.

Type annotations and code completion for session.client("evidently").list_segments method. boto3 documentation

Method definition
await def list_segments(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListSegmentsResponseTypeDef:  # (1)
    ...
  1. See ListSegmentsResponseTypeDef
Usage example with kwargs
kwargs: ListSegmentsRequestRequestTypeDef = {  # (1)
    "maxResults": ...,
}

parent.list_segments(**kwargs)
  1. See ListSegmentsRequestRequestTypeDef

list_tags_for_resource

Displays the tags associated with an Evidently resource.

Type annotations and code completion for session.client("evidently").list_tags_for_resource method. boto3 documentation

Method definition
await def list_tags_for_resource(
    self,
    *,
    resourceArn: str,
) -> ListTagsForResourceResponseTypeDef:  # (1)
    ...
  1. See ListTagsForResourceResponseTypeDef
Usage example with kwargs
kwargs: ListTagsForResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
}

parent.list_tags_for_resource(**kwargs)
  1. See ListTagsForResourceRequestRequestTypeDef

put_project_events

Sends performance events to Evidently.

Type annotations and code completion for session.client("evidently").put_project_events method. boto3 documentation

Method definition
await def put_project_events(
    self,
    *,
    events: Sequence[EventTypeDef],  # (1)
    project: str,
) -> PutProjectEventsResponseTypeDef:  # (2)
    ...
  1. See EventTypeDef
  2. See PutProjectEventsResponseTypeDef
Usage example with kwargs
kwargs: PutProjectEventsRequestRequestTypeDef = {  # (1)
    "events": ...,
    "project": ...,
}

parent.put_project_events(**kwargs)
  1. See PutProjectEventsRequestRequestTypeDef

start_experiment

Starts an existing experiment.

Type annotations and code completion for session.client("evidently").start_experiment method. boto3 documentation

Method definition
await def start_experiment(
    self,
    *,
    analysisCompleteTime: Union[datetime, str],
    experiment: str,
    project: str,
) -> StartExperimentResponseTypeDef:  # (1)
    ...
  1. See StartExperimentResponseTypeDef
Usage example with kwargs
kwargs: StartExperimentRequestRequestTypeDef = {  # (1)
    "analysisCompleteTime": ...,
    "experiment": ...,
    "project": ...,
}

parent.start_experiment(**kwargs)
  1. See StartExperimentRequestRequestTypeDef

start_launch

Starts an existing launch.

Type annotations and code completion for session.client("evidently").start_launch method. boto3 documentation

Method definition
await def start_launch(
    self,
    *,
    launch: str,
    project: str,
) -> StartLaunchResponseTypeDef:  # (1)
    ...
  1. See StartLaunchResponseTypeDef
Usage example with kwargs
kwargs: StartLaunchRequestRequestTypeDef = {  # (1)
    "launch": ...,
    "project": ...,
}

parent.start_launch(**kwargs)
  1. See StartLaunchRequestRequestTypeDef

stop_experiment

Stops an experiment that is currently running.

Type annotations and code completion for session.client("evidently").stop_experiment method. boto3 documentation

Method definition
await def stop_experiment(
    self,
    *,
    experiment: str,
    project: str,
    desiredState: ExperimentStopDesiredStateType = ...,  # (1)
    reason: str = ...,
) -> StopExperimentResponseTypeDef:  # (2)
    ...
  1. See ExperimentStopDesiredStateType
  2. See StopExperimentResponseTypeDef
Usage example with kwargs
kwargs: StopExperimentRequestRequestTypeDef = {  # (1)
    "experiment": ...,
    "project": ...,
}

parent.stop_experiment(**kwargs)
  1. See StopExperimentRequestRequestTypeDef

stop_launch

Stops a launch that is currently running.

Type annotations and code completion for session.client("evidently").stop_launch method. boto3 documentation

Method definition
await def stop_launch(
    self,
    *,
    launch: str,
    project: str,
    desiredState: LaunchStopDesiredStateType = ...,  # (1)
    reason: str = ...,
) -> StopLaunchResponseTypeDef:  # (2)
    ...
  1. See LaunchStopDesiredStateType
  2. See StopLaunchResponseTypeDef
Usage example with kwargs
kwargs: StopLaunchRequestRequestTypeDef = {  # (1)
    "launch": ...,
    "project": ...,
}

parent.stop_launch(**kwargs)
  1. See StopLaunchRequestRequestTypeDef

tag_resource

Assigns one or more tags (key-value pairs) to the specified CloudWatch Evidently resource.

Type annotations and code completion for session.client("evidently").tag_resource method. boto3 documentation

Method definition
await def tag_resource(
    self,
    *,
    resourceArn: str,
    tags: Mapping[str, str],
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: TagResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tags": ...,
}

parent.tag_resource(**kwargs)
  1. See TagResourceRequestRequestTypeDef

test_segment_pattern

Use this operation to test a rules pattern that you plan to use to create an audience segment.

Type annotations and code completion for session.client("evidently").test_segment_pattern method. boto3 documentation

Method definition
await def test_segment_pattern(
    self,
    *,
    pattern: str,
    payload: str,
) -> TestSegmentPatternResponseTypeDef:  # (1)
    ...
  1. See TestSegmentPatternResponseTypeDef
Usage example with kwargs
kwargs: TestSegmentPatternRequestRequestTypeDef = {  # (1)
    "pattern": ...,
    "payload": ...,
}

parent.test_segment_pattern(**kwargs)
  1. See TestSegmentPatternRequestRequestTypeDef

untag_resource

Removes one or more tags from the specified resource.

Type annotations and code completion for session.client("evidently").untag_resource method. boto3 documentation

Method definition
await def untag_resource(
    self,
    *,
    resourceArn: str,
    tagKeys: Sequence[str],
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: UntagResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tagKeys": ...,
}

parent.untag_resource(**kwargs)
  1. See UntagResourceRequestRequestTypeDef

update_experiment

Updates an Evidently experiment.

Type annotations and code completion for session.client("evidently").update_experiment method. boto3 documentation

Method definition
await def update_experiment(
    self,
    *,
    experiment: str,
    project: str,
    description: str = ...,
    metricGoals: Sequence[MetricGoalConfigTypeDef] = ...,  # (1)
    onlineAbConfig: OnlineAbConfigTypeDef = ...,  # (2)
    randomizationSalt: str = ...,
    removeSegment: bool = ...,
    samplingRate: int = ...,
    segment: str = ...,
    treatments: Sequence[TreatmentConfigTypeDef] = ...,  # (3)
) -> UpdateExperimentResponseTypeDef:  # (4)
    ...
  1. See MetricGoalConfigTypeDef
  2. See OnlineAbConfigTypeDef
  3. See TreatmentConfigTypeDef
  4. See UpdateExperimentResponseTypeDef
Usage example with kwargs
kwargs: UpdateExperimentRequestRequestTypeDef = {  # (1)
    "experiment": ...,
    "project": ...,
}

parent.update_experiment(**kwargs)
  1. See UpdateExperimentRequestRequestTypeDef

update_feature

Updates an existing feature.

Type annotations and code completion for session.client("evidently").update_feature method. boto3 documentation

Method definition
await def update_feature(
    self,
    *,
    feature: str,
    project: str,
    addOrUpdateVariations: Sequence[VariationConfigTypeDef] = ...,  # (1)
    defaultVariation: str = ...,
    description: str = ...,
    entityOverrides: Mapping[str, str] = ...,
    evaluationStrategy: FeatureEvaluationStrategyType = ...,  # (2)
    removeVariations: Sequence[str] = ...,
) -> UpdateFeatureResponseTypeDef:  # (3)
    ...
  1. See VariationConfigTypeDef
  2. See FeatureEvaluationStrategyType
  3. See UpdateFeatureResponseTypeDef
Usage example with kwargs
kwargs: UpdateFeatureRequestRequestTypeDef = {  # (1)
    "feature": ...,
    "project": ...,
}

parent.update_feature(**kwargs)
  1. See UpdateFeatureRequestRequestTypeDef

update_launch

Updates a launch of a given feature.

Type annotations and code completion for session.client("evidently").update_launch method. boto3 documentation

Method definition
await def update_launch(
    self,
    *,
    launch: str,
    project: str,
    description: str = ...,
    groups: Sequence[LaunchGroupConfigTypeDef] = ...,  # (1)
    metricMonitors: Sequence[MetricMonitorConfigTypeDef] = ...,  # (2)
    randomizationSalt: str = ...,
    scheduledSplitsConfig: ScheduledSplitsLaunchConfigTypeDef = ...,  # (3)
) -> UpdateLaunchResponseTypeDef:  # (4)
    ...
  1. See LaunchGroupConfigTypeDef
  2. See MetricMonitorConfigTypeDef
  3. See ScheduledSplitsLaunchConfigTypeDef
  4. See UpdateLaunchResponseTypeDef
Usage example with kwargs
kwargs: UpdateLaunchRequestRequestTypeDef = {  # (1)
    "launch": ...,
    "project": ...,
}

parent.update_launch(**kwargs)
  1. See UpdateLaunchRequestRequestTypeDef

update_project

Updates the description of an existing project.

Type annotations and code completion for session.client("evidently").update_project method. boto3 documentation

Method definition
await def update_project(
    self,
    *,
    project: str,
    description: str = ...,
) -> UpdateProjectResponseTypeDef:  # (1)
    ...
  1. See UpdateProjectResponseTypeDef
Usage example with kwargs
kwargs: UpdateProjectRequestRequestTypeDef = {  # (1)
    "project": ...,
}

parent.update_project(**kwargs)
  1. See UpdateProjectRequestRequestTypeDef

update_project_data_delivery

Updates the data storage options for this project.

Type annotations and code completion for session.client("evidently").update_project_data_delivery method. boto3 documentation

Method definition
await def update_project_data_delivery(
    self,
    *,
    project: str,
    cloudWatchLogs: CloudWatchLogsDestinationConfigTypeDef = ...,  # (1)
    s3Destination: S3DestinationConfigTypeDef = ...,  # (2)
) -> UpdateProjectDataDeliveryResponseTypeDef:  # (3)
    ...
  1. See CloudWatchLogsDestinationConfigTypeDef
  2. See S3DestinationConfigTypeDef
  3. See UpdateProjectDataDeliveryResponseTypeDef
Usage example with kwargs
kwargs: UpdateProjectDataDeliveryRequestRequestTypeDef = {  # (1)
    "project": ...,
}

parent.update_project_data_delivery(**kwargs)
  1. See UpdateProjectDataDeliveryRequestRequestTypeDef

__aenter__

Type annotations and code completion for session.client("evidently").__aenter__ method. boto3 documentation

Method definition
await def __aenter__(
    self,
) -> CloudWatchEvidentlyClient:
    ...

__aexit__

Type annotations and code completion for session.client("evidently").__aexit__ method. boto3 documentation

Method definition
await def __aexit__(
    self,
    exc_type: Any,
    exc_val: Any,
    exc_tb: Any,
) -> Any:
    ...

get_paginator

Type annotations and code completion for session.client("evidently").get_paginator method with overloads.