Amplify / Client / list_backend_environments
list_backend_environments#
- Amplify.Client.list_backend_environments(**kwargs)#
Lists the backend environments for an Amplify app.
See also: AWS API Documentation
Request Syntax
response = client.list_backend_environments( appId='string', environmentName='string', nextToken='string', maxResults=123 )
- Parameters:
appId (string) –
[REQUIRED]
The unique ID for an Amplify app.
environmentName (string) – The name of the backend environment
nextToken (string) – A pagination token. Set to null to start listing backend environments from the start. If a non-null pagination token is returned in a result, pass its value in here to list more backend environments.
maxResults (integer) – The maximum number of records to list in a single response.
- Return type:
dict
- Returns:
Response Syntax
{ 'backendEnvironments': [ { 'backendEnvironmentArn': 'string', 'environmentName': 'string', 'stackName': 'string', 'deploymentArtifacts': 'string', 'createTime': datetime(2015, 1, 1), 'updateTime': datetime(2015, 1, 1) }, ], 'nextToken': 'string' }
Response Structure
(dict) –
The result structure for the list backend environments result.
backendEnvironments (list) –
The list of backend environments for an Amplify app.
(dict) –
Describes the backend environment for an Amplify app.
backendEnvironmentArn (string) –
The Amazon Resource Name (ARN) for a backend environment that is part of an Amplify app.
environmentName (string) –
The name for a backend environment that is part of an Amplify app.
stackName (string) –
The AWS CloudFormation stack name of a backend environment.
deploymentArtifacts (string) –
The name of deployment artifacts.
createTime (datetime) –
The creation date and time for a backend environment that is part of an Amplify app.
updateTime (datetime) –
The last updated date and time for a backend environment that is part of an Amplify app.
nextToken (string) –
A pagination token. If a non-null pagination token is returned in a result, pass its value in another request to retrieve more entries.
Exceptions
Amplify.Client.exceptions.BadRequestException
Amplify.Client.exceptions.UnauthorizedException
Amplify.Client.exceptions.InternalFailureException