CloudWatchEvidently.Client.
get_project
(**kwargs)¶Returns the details about one launch. You must already know the project name. To retrieve a list of projects in your account, use ListProjects.
See also: AWS API Documentation
Request Syntax
response = client.get_project(
project='string'
)
[REQUIRED]
The name or ARN of the project that you want to see the details of.
{
'project': {
'activeExperimentCount': 123,
'activeLaunchCount': 123,
'appConfigResource': {
'applicationId': 'string',
'configurationProfileId': 'string',
'environmentId': 'string'
},
'arn': 'string',
'createdTime': datetime(2015, 1, 1),
'dataDelivery': {
'cloudWatchLogs': {
'logGroup': 'string'
},
's3Destination': {
'bucket': 'string',
'prefix': 'string'
}
},
'description': 'string',
'experimentCount': 123,
'featureCount': 123,
'lastUpdatedTime': datetime(2015, 1, 1),
'launchCount': 123,
'name': 'string',
'status': 'AVAILABLE'|'UPDATING',
'tags': {
'string': 'string'
}
}
}
Response Structure
A structure containing the configuration details of the project.
The number of ongoing experiments currently in the project.
The number of ongoing launches currently in the project.
This structure defines the configuration of how your application integrates with AppConfig to run client-side evaluation.
The ID of the AppConfig application to use for client-side evaluation.
The ID of the AppConfig profile to use for client-side evaluation.
The ID of the AppConfig environment to use for client-side evaluation. This must be an environment that is within the application that you specify for applicationId
.
The name or ARN of the project.
The date and time that the project is created.
A structure that contains information about where Evidently is to store evaluation events for longer term storage.
If the project stores evaluation events in CloudWatch Logs, this structure stores the log group name.
The name of the log group where the project stores evaluation events.
If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.
The name of the bucket in which Evidently stores evaluation events.
The bucket prefix in which Evidently stores evaluation events.
The user-entered description of the project.
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.
The number of features currently in the project.
The date and time that the project was most recently updated.
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.
The name of the project.
The current state of the project.
The list of tag keys and values associated with this project.
Exceptions
CloudWatchEvidently.Client.exceptions.ThrottlingException
CloudWatchEvidently.Client.exceptions.ValidationException
CloudWatchEvidently.Client.exceptions.ResourceNotFoundException
CloudWatchEvidently.Client.exceptions.AccessDeniedException