2021/11/29 - AWS Well-Architected Tool - 8 new13 updated api methods
Changes This update provides support for Well-Architected API users to use custom lens features.
Delete an existing lens.
Only the owner of a lens can delete it. After the lens is deleted, Amazon Web Services accounts and IAM users that you shared the lens with can continue to use it, but they will no longer be able to apply it to new workloads.
See also: AWS API Documentation
Request Syntax
client.delete_lens( LensAlias='string', ClientRequestToken='string', LensStatus='ALL'|'DRAFT'|'PUBLISHED' )
string
[REQUIRED]
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
string
[REQUIRED]
A unique case-sensitive string used to ensure that this request is idempotent (executes only once).
You should not reuse the same token for other requests. If you retry a request with the same client request token and the same parameters after it has completed successfully, the result of the original request is returned.
This field is autopopulated if not provided.
string
[REQUIRED]
The status of the lens to be deleted.
None
Create a new lens version.
A lens can have up to 100 versions.
After a lens has been imported, create a new lens version to publish it. The owner of a lens can share the lens with other Amazon Web Services accounts and IAM users in the same Amazon Web Services Region. Only the owner of a lens can delete it.
See also: AWS API Documentation
Request Syntax
client.create_lens_version( LensAlias='string', LensVersion='string', IsMajorVersion=True|False, ClientRequestToken='string' )
string
[REQUIRED]
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
string
[REQUIRED]
The version of the lens being created.
boolean
Set to true if this new major lens version.
string
[REQUIRED]
A unique case-sensitive string used to ensure that this request is idempotent (executes only once).
You should not reuse the same token for other requests. If you retry a request with the same client request token and the same parameters after it has completed successfully, the result of the original request is returned.
This field is autopopulated if not provided.
dict
Response Syntax
{ 'LensArn': 'string', 'LensVersion': 'string' }
Response Structure
(dict) --
LensArn (string) --
The ARN for the lens.
LensVersion (string) --
The version of the lens.
Export an existing lens.
Lenses are defined in JSON. For more information, see JSON format specification in the Well-Architected Tool User Guide. Only the owner of a lens can export it.
See also: AWS API Documentation
Request Syntax
client.export_lens( LensAlias='string', LensVersion='string' )
string
[REQUIRED]
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
string
The lens version to be exported.
dict
Response Syntax
{ 'LensJSON': 'string' }
Response Structure
(dict) --
LensJSON (string) --
The JSON for the lens.
Import a new lens.
The lens cannot be applied to workloads or shared with other Amazon Web Services accounts until it's published with CreateLensVersion
Lenses are defined in JSON. For more information, see JSON format specification in the Well-Architected Tool User Guide.
A custom lens cannot exceed 500 KB in size.
See also: AWS API Documentation
Request Syntax
client.import_lens( LensAlias='string', JSONString='string', ClientRequestToken='string', Tags={ 'string': 'string' } )
string
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
string
[REQUIRED]
The JSON representation of a lens.
string
[REQUIRED]
A unique case-sensitive string used to ensure that this request is idempotent (executes only once).
You should not reuse the same token for other requests. If you retry a request with the same client request token and the same parameters after it has completed successfully, the result of the original request is returned.
This field is autopopulated if not provided.
dict
Tags to associate to a lens.
(string) --
(string) --
dict
Response Syntax
{ 'LensArn': 'string', 'Status': 'IN_PROGRESS'|'COMPLETE'|'ERROR' }
Response Structure
(dict) --
LensArn (string) --
The ARN for the lens.
Status (string) --
The status of the imported lens.
Get an existing lens.
See also: AWS API Documentation
Request Syntax
client.get_lens( LensAlias='string', LensVersion='string' )
string
[REQUIRED]
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
string
The lens version to be retrieved.
dict
Response Syntax
{ 'Lens': { 'LensArn': 'string', 'LensVersion': 'string', 'Name': 'string', 'Description': 'string', 'Owner': 'string', 'ShareInvitationId': 'string' } }
Response Structure
(dict) --
Lens (dict) --
A lens return object.
LensArn (string) --
The ARN of a lens.
LensVersion (string) --
The version of a lens.
Name (string) --
The full name of the lens.
Description (string) --
The description of the lens.
Owner (string) --
The Amazon Web Services account ID that owns the lens.
ShareInvitationId (string) --
The ID assigned to the share invitation.
{'Answer': {'Choices': {'HelpfulResource': {'DisplayText': 'string', 'Url': 'string'}, 'ImprovementPlan': {'DisplayText': 'string', 'Url': 'string'}}, 'HelpfulResourceDisplayText': 'string'}, 'LensArn': 'string'}
Get the answer to a specific question in a workload review.
See also: AWS API Documentation
Request Syntax
client.get_answer( WorkloadId='string', LensAlias='string', QuestionId='string', MilestoneNumber=123 )
string
[REQUIRED]
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
string
[REQUIRED]
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
string
[REQUIRED]
The ID of the question.
integer
The milestone number.
A workload can have a maximum of 100 milestones.
dict
Response Syntax
{ 'WorkloadId': 'string', 'MilestoneNumber': 123, 'LensAlias': 'string', 'LensArn': 'string', 'Answer': { 'QuestionId': 'string', 'PillarId': 'string', 'QuestionTitle': 'string', 'QuestionDescription': 'string', 'ImprovementPlanUrl': 'string', 'HelpfulResourceUrl': 'string', 'HelpfulResourceDisplayText': 'string', 'Choices': [ { 'ChoiceId': 'string', 'Title': 'string', 'Description': 'string', 'HelpfulResource': { 'DisplayText': 'string', 'Url': 'string' }, 'ImprovementPlan': { 'DisplayText': 'string', 'Url': 'string' } }, ], 'SelectedChoices': [ 'string', ], 'ChoiceAnswers': [ { 'ChoiceId': 'string', 'Status': 'SELECTED'|'NOT_APPLICABLE'|'UNSELECTED', 'Reason': 'OUT_OF_SCOPE'|'BUSINESS_PRIORITIES'|'ARCHITECTURE_CONSTRAINTS'|'OTHER'|'NONE', 'Notes': 'string' }, ], 'IsApplicable': True|False, 'Risk': 'UNANSWERED'|'HIGH'|'MEDIUM'|'NONE'|'NOT_APPLICABLE', 'Notes': 'string', 'Reason': 'OUT_OF_SCOPE'|'BUSINESS_PRIORITIES'|'ARCHITECTURE_CONSTRAINTS'|'OTHER'|'NONE' } }
Response Structure
(dict) --
Output of a get answer call.
WorkloadId (string) --
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
MilestoneNumber (integer) --
The milestone number.
A workload can have a maximum of 100 milestones.
LensAlias (string) --
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
LensArn (string) --
The ARN for the lens.
Answer (dict) --
An answer of the question.
QuestionId (string) --
The ID of the question.
PillarId (string) --
The ID used to identify a pillar, for example, security.
A pillar is identified by its PillarReviewSummary$PillarId.
QuestionTitle (string) --
The title of the question.
QuestionDescription (string) --
The description of the question.
ImprovementPlanUrl (string) --
The improvement plan URL for a question.
This value is only available if the question has been answered.
HelpfulResourceUrl (string) --
The helpful resource URL for a question.
HelpfulResourceDisplayText (string) --
The helpful resource text to be displayed.
Choices (list) --
List of choices available for a question.
(dict) --
A choice available to answer question.
ChoiceId (string) --
The ID of a choice.
Title (string) --
The title of a choice.
Description (string) --
The description of a choice.
HelpfulResource (dict) --
The choice level helpful resource.
DisplayText (string) --
The display text for the choice content.
Url (string) --
The URL for the choice content.
ImprovementPlan (dict) --
The choice level improvement plan.
DisplayText (string) --
The display text for the choice content.
Url (string) --
The URL for the choice content.
SelectedChoices (list) --
List of selected choice IDs in a question answer.
The values entered replace the previously selected choices.
(string) --
The ID of a choice.
ChoiceAnswers (list) --
A list of selected choices to a question in your workload.
(dict) --
A choice that has been answered on a question in your workload.
ChoiceId (string) --
The ID of a choice.
Status (string) --
The status of a choice.
Reason (string) --
The reason why a choice is non-applicable to a question in your workload.
Notes (string) --
The notes associated with a choice.
IsApplicable (boolean) --
Defines whether this question is applicable to a lens review.
Risk (string) --
The risk for a given workload, lens review, pillar, or question.
Notes (string) --
The notes associated with the workload.
Reason (string) --
The reason why the question is not applicable to your workload.
{'LensReview': {'LensArn': 'string', 'LensStatus': {'UNSHARED', 'DELETED'}}}
Get lens review.
See also: AWS API Documentation
Request Syntax
client.get_lens_review( WorkloadId='string', LensAlias='string', MilestoneNumber=123 )
string
[REQUIRED]
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
string
[REQUIRED]
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
integer
The milestone number.
A workload can have a maximum of 100 milestones.
dict
Response Syntax
{ 'WorkloadId': 'string', 'MilestoneNumber': 123, 'LensReview': { 'LensAlias': 'string', 'LensArn': 'string', 'LensVersion': 'string', 'LensName': 'string', 'LensStatus': 'CURRENT'|'NOT_CURRENT'|'DEPRECATED'|'DELETED'|'UNSHARED', 'PillarReviewSummaries': [ { 'PillarId': 'string', 'PillarName': 'string', 'Notes': 'string', 'RiskCounts': { 'string': 123 } }, ], 'UpdatedAt': datetime(2015, 1, 1), 'Notes': 'string', 'RiskCounts': { 'string': 123 }, 'NextToken': 'string' } }
Response Structure
(dict) --
Output of a get lens review call.
WorkloadId (string) --
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
MilestoneNumber (integer) --
The milestone number.
A workload can have a maximum of 100 milestones.
LensReview (dict) --
A lens review of a question.
LensAlias (string) --
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
LensArn (string) --
The ARN for the lens.
LensVersion (string) --
The version of the lens.
LensName (string) --
The full name of the lens.
LensStatus (string) --
The status of the lens.
PillarReviewSummaries (list) --
List of pillar review summaries of lens review in a workload.
(dict) --
A pillar review summary of a lens review.
PillarId (string) --
The ID used to identify a pillar, for example, security.
A pillar is identified by its PillarReviewSummary$PillarId.
PillarName (string) --
The name of the pillar.
Notes (string) --
The notes associated with the workload.
RiskCounts (dict) --
A map from risk names to the count of how questions have that rating.
(string) --
The risk for a given workload, lens review, pillar, or question.
(integer) --
A non-negative integer that denotes how many.
UpdatedAt (datetime) --
The date and time recorded.
Notes (string) --
The notes associated with the workload.
RiskCounts (dict) --
A map from risk names to the count of how questions have that rating.
(string) --
The risk for a given workload, lens review, pillar, or question.
(integer) --
A non-negative integer that denotes how many.
NextToken (string) --
The token to use to retrieve the next set of results.
{'LensReviewReport': {'LensArn': 'string'}}
Get lens review report.
See also: AWS API Documentation
Request Syntax
client.get_lens_review_report( WorkloadId='string', LensAlias='string', MilestoneNumber=123 )
string
[REQUIRED]
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
string
[REQUIRED]
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
integer
The milestone number.
A workload can have a maximum of 100 milestones.
dict
Response Syntax
{ 'WorkloadId': 'string', 'MilestoneNumber': 123, 'LensReviewReport': { 'LensAlias': 'string', 'LensArn': 'string', 'Base64String': 'string' } }
Response Structure
(dict) --
Output of a get lens review report call.
WorkloadId (string) --
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
MilestoneNumber (integer) --
The milestone number.
A workload can have a maximum of 100 milestones.
LensReviewReport (dict) --
A report of a lens review.
LensAlias (string) --
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
LensArn (string) --
The ARN for the lens.
Base64String (string) --
The Base64-encoded string representation of a lens review report.
This data can be used to create a PDF file.
{'TargetLensVersion': 'string'}Response
{'LensArn': 'string', 'TargetLensVersion': 'string', 'VersionDifferences': {'PillarDifferences': {'PillarName': 'string'}}}
Get lens version differences.
See also: AWS API Documentation
Request Syntax
client.get_lens_version_difference( LensAlias='string', BaseLensVersion='string', TargetLensVersion='string' )
string
[REQUIRED]
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
string
The base version of the lens.
string
The lens version to target a difference for.
dict
Response Syntax
{ 'LensAlias': 'string', 'LensArn': 'string', 'BaseLensVersion': 'string', 'TargetLensVersion': 'string', 'LatestLensVersion': 'string', 'VersionDifferences': { 'PillarDifferences': [ { 'PillarId': 'string', 'PillarName': 'string', 'DifferenceStatus': 'UPDATED'|'NEW'|'DELETED', 'QuestionDifferences': [ { 'QuestionId': 'string', 'QuestionTitle': 'string', 'DifferenceStatus': 'UPDATED'|'NEW'|'DELETED' }, ] }, ] } }
Response Structure
(dict) --
LensAlias (string) --
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
LensArn (string) --
The ARN for the lens.
BaseLensVersion (string) --
The base version of the lens.
TargetLensVersion (string) --
The target lens version for the lens.
LatestLensVersion (string) --
The latest version of the lens.
VersionDifferences (dict) --
The differences between the base and latest versions of the lens.
PillarDifferences (list) --
The differences between the base and latest versions of the lens.
(dict) --
A pillar difference return object.
PillarId (string) --
The ID used to identify a pillar, for example, security.
A pillar is identified by its PillarReviewSummary$PillarId.
PillarName (string) --
The name of the pillar.
DifferenceStatus (string) --
Indicates the type of change to the pillar.
QuestionDifferences (list) --
List of question differences.
(dict) --
A question difference return object.
QuestionId (string) --
The ID of the question.
QuestionTitle (string) --
The title of the question.
DifferenceStatus (string) --
Indicates the type of change to the question.
{'AnswerSummaries': {'Choices': {'HelpfulResource': {'DisplayText': 'string', 'Url': 'string'}, 'ImprovementPlan': {'DisplayText': 'string', 'Url': 'string'}}}, 'LensArn': 'string'}
List of answers.
See also: AWS API Documentation
Request Syntax
client.list_answers( WorkloadId='string', LensAlias='string', PillarId='string', MilestoneNumber=123, NextToken='string', MaxResults=123 )
string
[REQUIRED]
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
string
[REQUIRED]
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
string
The ID used to identify a pillar, for example, security.
A pillar is identified by its PillarReviewSummary$PillarId.
integer
The milestone number.
A workload can have a maximum of 100 milestones.
string
The token to use to retrieve the next set of results.
integer
The maximum number of results to return for this request.
dict
Response Syntax
{ 'WorkloadId': 'string', 'MilestoneNumber': 123, 'LensAlias': 'string', 'LensArn': 'string', 'AnswerSummaries': [ { 'QuestionId': 'string', 'PillarId': 'string', 'QuestionTitle': 'string', 'Choices': [ { 'ChoiceId': 'string', 'Title': 'string', 'Description': 'string', 'HelpfulResource': { 'DisplayText': 'string', 'Url': 'string' }, 'ImprovementPlan': { 'DisplayText': 'string', 'Url': 'string' } }, ], 'SelectedChoices': [ 'string', ], 'ChoiceAnswerSummaries': [ { 'ChoiceId': 'string', 'Status': 'SELECTED'|'NOT_APPLICABLE'|'UNSELECTED', 'Reason': 'OUT_OF_SCOPE'|'BUSINESS_PRIORITIES'|'ARCHITECTURE_CONSTRAINTS'|'OTHER'|'NONE' }, ], 'IsApplicable': True|False, 'Risk': 'UNANSWERED'|'HIGH'|'MEDIUM'|'NONE'|'NOT_APPLICABLE', 'Reason': 'OUT_OF_SCOPE'|'BUSINESS_PRIORITIES'|'ARCHITECTURE_CONSTRAINTS'|'OTHER'|'NONE' }, ], 'NextToken': 'string' }
Response Structure
(dict) --
Output of a list answers call.
WorkloadId (string) --
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
MilestoneNumber (integer) --
The milestone number.
A workload can have a maximum of 100 milestones.
LensAlias (string) --
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
LensArn (string) --
The ARN for the lens.
AnswerSummaries (list) --
List of answer summaries of lens review in a workload.
(dict) --
An answer summary of a lens review in a workload.
QuestionId (string) --
The ID of the question.
PillarId (string) --
The ID used to identify a pillar, for example, security.
A pillar is identified by its PillarReviewSummary$PillarId.
QuestionTitle (string) --
The title of the question.
Choices (list) --
List of choices available for a question.
(dict) --
A choice available to answer question.
ChoiceId (string) --
The ID of a choice.
Title (string) --
The title of a choice.
Description (string) --
The description of a choice.
HelpfulResource (dict) --
The choice level helpful resource.
DisplayText (string) --
The display text for the choice content.
Url (string) --
The URL for the choice content.
ImprovementPlan (dict) --
The choice level improvement plan.
DisplayText (string) --
The display text for the choice content.
Url (string) --
The URL for the choice content.
SelectedChoices (list) --
List of selected choice IDs in a question answer.
The values entered replace the previously selected choices.
(string) --
The ID of a choice.
ChoiceAnswerSummaries (list) --
A list of selected choices to a question in your workload.
(dict) --
A choice summary that has been answered on a question in your workload.
ChoiceId (string) --
The ID of a choice.
Status (string) --
The status of a choice.
Reason (string) --
The reason why a choice is non-applicable to a question in your workload.
IsApplicable (boolean) --
Defines whether this question is applicable to a lens review.
Risk (string) --
The risk for a given workload, lens review, pillar, or question.
Reason (string) --
The reason why a choice is non-applicable to a question in your workload.
NextToken (string) --
The token to use to retrieve the next set of results.
{'ImprovementSummaries': {'ImprovementPlans': [{'ChoiceId': 'string', 'DisplayText': 'string', 'ImprovementPlanUrl': 'string'}]}, 'LensArn': 'string'}
List lens review improvements.
See also: AWS API Documentation
Request Syntax
client.list_lens_review_improvements( WorkloadId='string', LensAlias='string', PillarId='string', MilestoneNumber=123, NextToken='string', MaxResults=123 )
string
[REQUIRED]
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
string
[REQUIRED]
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
string
The ID used to identify a pillar, for example, security.
A pillar is identified by its PillarReviewSummary$PillarId.
integer
The milestone number.
A workload can have a maximum of 100 milestones.
string
The token to use to retrieve the next set of results.
integer
The maximum number of results to return for this request.
dict
Response Syntax
{ 'WorkloadId': 'string', 'MilestoneNumber': 123, 'LensAlias': 'string', 'LensArn': 'string', 'ImprovementSummaries': [ { 'QuestionId': 'string', 'PillarId': 'string', 'QuestionTitle': 'string', 'Risk': 'UNANSWERED'|'HIGH'|'MEDIUM'|'NONE'|'NOT_APPLICABLE', 'ImprovementPlanUrl': 'string', 'ImprovementPlans': [ { 'ChoiceId': 'string', 'DisplayText': 'string', 'ImprovementPlanUrl': 'string' }, ] }, ], 'NextToken': 'string' }
Response Structure
(dict) --
Output of a list lens review improvements call.
WorkloadId (string) --
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
MilestoneNumber (integer) --
The milestone number.
A workload can have a maximum of 100 milestones.
LensAlias (string) --
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
LensArn (string) --
The ARN for the lens.
ImprovementSummaries (list) --
List of improvement summaries of lens review in a workload.
(dict) --
An improvement summary of a lens review in a workload.
QuestionId (string) --
The ID of the question.
PillarId (string) --
The ID used to identify a pillar, for example, security.
A pillar is identified by its PillarReviewSummary$PillarId.
QuestionTitle (string) --
The title of the question.
Risk (string) --
The risk for a given workload, lens review, pillar, or question.
ImprovementPlanUrl (string) --
The improvement plan URL for a question.
This value is only available if the question has been answered.
ImprovementPlans (list) --
The improvement plan details.
(dict) --
The choice level improvement plan.
ChoiceId (string) --
The ID of a choice.
DisplayText (string) --
The display text for the improvement plan.
ImprovementPlanUrl (string) --
The improvement plan URL for a question.
This value is only available if the question has been answered.
NextToken (string) --
The token to use to retrieve the next set of results.
{'LensReviewSummaries': {'LensArn': 'string', 'LensStatus': {'UNSHARED', 'DELETED'}}}
List lens reviews.
See also: AWS API Documentation
Request Syntax
client.list_lens_reviews( WorkloadId='string', MilestoneNumber=123, NextToken='string', MaxResults=123 )
string
[REQUIRED]
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
integer
The milestone number.
A workload can have a maximum of 100 milestones.
string
The token to use to retrieve the next set of results.
integer
The maximum number of results to return for this request.
dict
Response Syntax
{ 'WorkloadId': 'string', 'MilestoneNumber': 123, 'LensReviewSummaries': [ { 'LensAlias': 'string', 'LensArn': 'string', 'LensVersion': 'string', 'LensName': 'string', 'LensStatus': 'CURRENT'|'NOT_CURRENT'|'DEPRECATED'|'DELETED'|'UNSHARED', 'UpdatedAt': datetime(2015, 1, 1), 'RiskCounts': { 'string': 123 } }, ], 'NextToken': 'string' }
Response Structure
(dict) --
Output of a list lens reviews call.
WorkloadId (string) --
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
MilestoneNumber (integer) --
The milestone number.
A workload can have a maximum of 100 milestones.
LensReviewSummaries (list) --
List of lens summaries of lens reviews of a workload.
(dict) --
A lens review summary of a workload.
LensAlias (string) --
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
LensArn (string) --
The ARN for the lens.
LensVersion (string) --
The version of the lens.
LensName (string) --
The full name of the lens.
LensStatus (string) --
The status of the lens.
UpdatedAt (datetime) --
The date and time recorded.
RiskCounts (dict) --
A map from risk names to the count of how questions have that rating.
(string) --
The risk for a given workload, lens review, pillar, or question.
(integer) --
A non-negative integer that denotes how many.
NextToken (string) --
The token to use to retrieve the next set of results.
{'LensName': 'string', 'LensStatus': 'ALL | DRAFT | PUBLISHED', 'LensType': 'AWS_OFFICIAL | CUSTOM_SHARED | CUSTOM_SELF'}Response
{'LensSummaries': {'CreatedAt': 'timestamp', 'LensArn': 'string', 'LensStatus': 'CURRENT | NOT_CURRENT | DEPRECATED | DELETED ' '| UNSHARED', 'LensType': 'AWS_OFFICIAL | CUSTOM_SHARED | CUSTOM_SELF', 'Owner': 'string', 'UpdatedAt': 'timestamp'}}
List the available lenses.
See also: AWS API Documentation
Request Syntax
client.list_lenses( NextToken='string', MaxResults=123, LensType='AWS_OFFICIAL'|'CUSTOM_SHARED'|'CUSTOM_SELF', LensStatus='ALL'|'DRAFT'|'PUBLISHED', LensName='string' )
string
The token to use to retrieve the next set of results.
integer
The maximum number of results to return for this request.
string
The type of lenses to be returned.
string
The status of lenses to be returned.
string
The full name of the lens.
dict
Response Syntax
{ 'LensSummaries': [ { 'LensArn': 'string', 'LensAlias': 'string', 'LensName': 'string', 'LensType': 'AWS_OFFICIAL'|'CUSTOM_SHARED'|'CUSTOM_SELF', 'Description': 'string', 'CreatedAt': datetime(2015, 1, 1), 'UpdatedAt': datetime(2015, 1, 1), 'LensVersion': 'string', 'Owner': 'string', 'LensStatus': 'CURRENT'|'NOT_CURRENT'|'DEPRECATED'|'DELETED'|'UNSHARED' }, ], 'NextToken': 'string' }
Response Structure
(dict) --
Output of a list lenses call.
LensSummaries (list) --
List of lens summaries of available lenses.
(dict) --
A lens summary of a lens.
LensArn (string) --
The ARN of the lens.
LensAlias (string) --
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
LensName (string) --
The full name of the lens.
LensType (string) --
The type of the lens.
Description (string) --
The description of the lens.
CreatedAt (datetime) --
The date and time recorded.
UpdatedAt (datetime) --
The date and time recorded.
LensVersion (string) --
The version of the lens.
Owner (string) --
An Amazon Web Services account ID.
LensStatus (string) --
The status of the lens.
NextToken (string) --
The token to use to retrieve the next set of results.
{'NotificationSummaries': {'LensUpgradeSummary': {'LensArn': 'string'}}}
List lens notifications.
See also: AWS API Documentation
Request Syntax
client.list_notifications( WorkloadId='string', NextToken='string', MaxResults=123 )
string
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
string
The token to use to retrieve the next set of results.
integer
The maximum number of results to return for this request.
dict
Response Syntax
{ 'NotificationSummaries': [ { 'Type': 'LENS_VERSION_UPGRADED'|'LENS_VERSION_DEPRECATED', 'LensUpgradeSummary': { 'WorkloadId': 'string', 'WorkloadName': 'string', 'LensAlias': 'string', 'LensArn': 'string', 'CurrentLensVersion': 'string', 'LatestLensVersion': 'string' } }, ], 'NextToken': 'string' }
Response Structure
(dict) --
NotificationSummaries (list) --
List of lens notification summaries in a workload.
(dict) --
A notification summary return object.
Type (string) --
The type of notification.
LensUpgradeSummary (dict) --
Summary of lens upgrade.
WorkloadId (string) --
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
WorkloadName (string) --
The name of the workload.
The name must be unique within an account within an Amazon Web Services Region. Spaces and capitalization are ignored when checking for uniqueness.
LensAlias (string) --
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
LensArn (string) --
The ARN for the lens.
CurrentLensVersion (string) --
The current version of the lens.
LatestLensVersion (string) --
The latest version of the lens.
NextToken (string) --
The token to use to retrieve the next set of results.
{'Answer': {'Choices': {'HelpfulResource': {'DisplayText': 'string', 'Url': 'string'}, 'ImprovementPlan': {'DisplayText': 'string', 'Url': 'string'}}, 'HelpfulResourceDisplayText': 'string'}, 'LensArn': 'string'}
Update the answer to a specific question in a workload review.
See also: AWS API Documentation
Request Syntax
client.update_answer( WorkloadId='string', LensAlias='string', QuestionId='string', SelectedChoices=[ 'string', ], ChoiceUpdates={ 'string': { 'Status': 'SELECTED'|'NOT_APPLICABLE'|'UNSELECTED', 'Reason': 'OUT_OF_SCOPE'|'BUSINESS_PRIORITIES'|'ARCHITECTURE_CONSTRAINTS'|'OTHER'|'NONE', 'Notes': 'string' } }, Notes='string', IsApplicable=True|False, Reason='OUT_OF_SCOPE'|'BUSINESS_PRIORITIES'|'ARCHITECTURE_CONSTRAINTS'|'OTHER'|'NONE' )
string
[REQUIRED]
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
string
[REQUIRED]
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
string
[REQUIRED]
The ID of the question.
list
List of selected choice IDs in a question answer.
The values entered replace the previously selected choices.
(string) --
The ID of a choice.
dict
A list of choices to update on a question in your workload. The String key corresponds to the choice ID to be updated.
(string) --
The ID of a choice.
(dict) --
A list of choices to be updated.
Status (string) -- [REQUIRED]
The status of a choice.
Reason (string) --
The reason why a choice is non-applicable to a question in your workload.
Notes (string) --
The notes associated with a choice.
string
The notes associated with the workload.
boolean
Defines whether this question is applicable to a lens review.
string
The reason why a question is not applicable to your workload.
dict
Response Syntax
{ 'WorkloadId': 'string', 'LensAlias': 'string', 'LensArn': 'string', 'Answer': { 'QuestionId': 'string', 'PillarId': 'string', 'QuestionTitle': 'string', 'QuestionDescription': 'string', 'ImprovementPlanUrl': 'string', 'HelpfulResourceUrl': 'string', 'HelpfulResourceDisplayText': 'string', 'Choices': [ { 'ChoiceId': 'string', 'Title': 'string', 'Description': 'string', 'HelpfulResource': { 'DisplayText': 'string', 'Url': 'string' }, 'ImprovementPlan': { 'DisplayText': 'string', 'Url': 'string' } }, ], 'SelectedChoices': [ 'string', ], 'ChoiceAnswers': [ { 'ChoiceId': 'string', 'Status': 'SELECTED'|'NOT_APPLICABLE'|'UNSELECTED', 'Reason': 'OUT_OF_SCOPE'|'BUSINESS_PRIORITIES'|'ARCHITECTURE_CONSTRAINTS'|'OTHER'|'NONE', 'Notes': 'string' }, ], 'IsApplicable': True|False, 'Risk': 'UNANSWERED'|'HIGH'|'MEDIUM'|'NONE'|'NOT_APPLICABLE', 'Notes': 'string', 'Reason': 'OUT_OF_SCOPE'|'BUSINESS_PRIORITIES'|'ARCHITECTURE_CONSTRAINTS'|'OTHER'|'NONE' } }
Response Structure
(dict) --
Output of a update answer call.
WorkloadId (string) --
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
LensAlias (string) --
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
LensArn (string) --
The ARN for the lens.
Answer (dict) --
An answer of the question.
QuestionId (string) --
The ID of the question.
PillarId (string) --
The ID used to identify a pillar, for example, security.
A pillar is identified by its PillarReviewSummary$PillarId.
QuestionTitle (string) --
The title of the question.
QuestionDescription (string) --
The description of the question.
ImprovementPlanUrl (string) --
The improvement plan URL for a question.
This value is only available if the question has been answered.
HelpfulResourceUrl (string) --
The helpful resource URL for a question.
HelpfulResourceDisplayText (string) --
The helpful resource text to be displayed.
Choices (list) --
List of choices available for a question.
(dict) --
A choice available to answer question.
ChoiceId (string) --
The ID of a choice.
Title (string) --
The title of a choice.
Description (string) --
The description of a choice.
HelpfulResource (dict) --
The choice level helpful resource.
DisplayText (string) --
The display text for the choice content.
Url (string) --
The URL for the choice content.
ImprovementPlan (dict) --
The choice level improvement plan.
DisplayText (string) --
The display text for the choice content.
Url (string) --
The URL for the choice content.
SelectedChoices (list) --
List of selected choice IDs in a question answer.
The values entered replace the previously selected choices.
(string) --
The ID of a choice.
ChoiceAnswers (list) --
A list of selected choices to a question in your workload.
(dict) --
A choice that has been answered on a question in your workload.
ChoiceId (string) --
The ID of a choice.
Status (string) --
The status of a choice.
Reason (string) --
The reason why a choice is non-applicable to a question in your workload.
Notes (string) --
The notes associated with a choice.
IsApplicable (boolean) --
Defines whether this question is applicable to a lens review.
Risk (string) --
The risk for a given workload, lens review, pillar, or question.
Notes (string) --
The notes associated with the workload.
Reason (string) --
The reason why the question is not applicable to your workload.
{'LensReview': {'LensArn': 'string', 'LensStatus': {'UNSHARED', 'DELETED'}}}
Update lens review.
See also: AWS API Documentation
Request Syntax
client.update_lens_review( WorkloadId='string', LensAlias='string', LensNotes='string', PillarNotes={ 'string': 'string' } )
string
[REQUIRED]
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
string
[REQUIRED]
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
string
The notes associated with the workload.
dict
List of pillar notes of a lens review in a workload.
(string) --
The ID used to identify a pillar, for example, security.
A pillar is identified by its PillarReviewSummary$PillarId.
(string) --
The notes associated with the workload.
dict
Response Syntax
{ 'WorkloadId': 'string', 'LensReview': { 'LensAlias': 'string', 'LensArn': 'string', 'LensVersion': 'string', 'LensName': 'string', 'LensStatus': 'CURRENT'|'NOT_CURRENT'|'DEPRECATED'|'DELETED'|'UNSHARED', 'PillarReviewSummaries': [ { 'PillarId': 'string', 'PillarName': 'string', 'Notes': 'string', 'RiskCounts': { 'string': 123 } }, ], 'UpdatedAt': datetime(2015, 1, 1), 'Notes': 'string', 'RiskCounts': { 'string': 123 }, 'NextToken': 'string' } }
Response Structure
(dict) --
Output of a update lens review call.
WorkloadId (string) --
The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.
LensReview (dict) --
A lens review of a question.
LensAlias (string) --
The alias of the lens, for example, serverless.
Each lens is identified by its LensSummary$LensAlias.
LensArn (string) --
The ARN for the lens.
LensVersion (string) --
The version of the lens.
LensName (string) --
The full name of the lens.
LensStatus (string) --
The status of the lens.
PillarReviewSummaries (list) --
List of pillar review summaries of lens review in a workload.
(dict) --
A pillar review summary of a lens review.
PillarId (string) --
The ID used to identify a pillar, for example, security.
A pillar is identified by its PillarReviewSummary$PillarId.
PillarName (string) --
The name of the pillar.
Notes (string) --
The notes associated with the workload.
RiskCounts (dict) --
A map from risk names to the count of how questions have that rating.
(string) --
The risk for a given workload, lens review, pillar, or question.
(integer) --
A non-negative integer that denotes how many.
UpdatedAt (datetime) --
The date and time recorded.
Notes (string) --
The notes associated with the workload.
RiskCounts (dict) --
A map from risk names to the count of how questions have that rating.
(string) --
The risk for a given workload, lens review, pillar, or question.
(integer) --
A non-negative integer that denotes how many.
NextToken (string) --
The token to use to retrieve the next set of results.