WellArchitected / Client / update_agent_goal
update_agent_goal¶
- WellArchitected.Client.update_agent_goal(**kwargs)¶
Updates the pillars and title of an existing goal associated with a profile.
See also: AWS API Documentation
Request Syntax
response = client.update_agent_goal( clientToken='string', profileArn='string', id='string', pillars=[ 'COST_OPTIMIZATION'|'SECURITY'|'RESILIENCE'|'PERFORMANCE'|'OPERATIONAL_EXCELLENCE', ], title='string', description='string' )
- Parameters:
clientToken (string) –
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
This field is autopopulated if not provided.
profileArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the profile containing the goal to update.
id (string) –
[REQUIRED]
The unique identifier of the goal to update.
pillars (list) –
The updated pillars for the goal. Pillars define the optimization focus areas such as cost, performance, resilience, and operational excellence.
(string) –
title (string) – The updated title for the goal. Maximum length of 1000 characters.
description (string) – A description of the goal.
- Return type:
dict
- Returns:
Response Syntax
{ 'goal': { 'id': 'string', 'profileArn': 'string', 'pillars': [ 'COST_OPTIMIZATION'|'SECURITY'|'RESILIENCE'|'PERFORMANCE'|'OPERATIONAL_EXCELLENCE', ], 'title': 'string', 'description': 'string', 'createdBy': 'string', 'createdAt': datetime(2015, 1, 1), 'lastModifiedBy': 'string', 'lastModifiedAt': datetime(2015, 1, 1) } }
Response Structure
(dict) –
goal (dict) –
The updated goal summary.
id (string) –
The unique identifier of the goal.
profileArn (string) –
The Amazon Resource Name (ARN) of the associated profile.
pillars (list) –
The Well-Architected Tool Framework pillars associated with this goal.
(string) –
title (string) –
The title of the goal.
description (string) –
A description of the goal.
createdBy (string) –
The identifier of the user or system that created this goal.
createdAt (datetime) –
The timestamp when the goal was created.
lastModifiedBy (string) –
The identifier of the user or system that last modified this goal.
lastModifiedAt (datetime) –
The timestamp when the goal was last modified.
Exceptions
WellArchitected.Client.exceptions.AccessDeniedExceptionWellArchitected.Client.exceptions.ValidationExceptionWellArchitected.Client.exceptions.InternalServerExceptionWellArchitected.Client.exceptions.ResourceNotFoundExceptionWellArchitected.Client.exceptions.ThrottlingException