SystemInformation

pydantic model openapi_client.models.system_information.SystemInformation

GET /system-information body. No properties are required; projectionExpression can omit any field.

Fields:
field version: Optional[StrictStr] = None (alias 'Version')

Product version from the Lambda environment.

field environment: Optional[StrictStr] = None (alias 'Environment')

Deployment environment name.

field project_name: Optional[StrictStr] = None (alias 'ProjectName')

Full project name.

field project_shortname: Optional[StrictStr] = None (alias 'ProjectShortname')

Project short name.

field aws_region: Optional[StrictStr] = None (alias 'AWSRegion')

AWS region of the deployment.

field aws_account_id: Optional[StrictStr] = None (alias 'AWSAccountId')

AWS account ID.

to_str()

Returns the string representation of the model using alias

Return type:

str

to_json()

Returns the JSON representation of the model using alias

Return type:

str

classmethod from_json(json_str)

Create an instance of SystemInformation from a JSON string

Return type:

Optional[Self]

to_dict()

Return the dictionary representation of the model using alias.

This has the following differences from calling pydantic’s self.model_dump(by_alias=True):

  • None is only added to the output dict for nullable fields that were set at model initialization. Other fields with value None are ignored.

Return type:

Dict[str, Any]

classmethod from_dict(obj)

Create an instance of SystemInformation from a dict

Return type:

Optional[Self]