Table of Contents
A low-level client representing AWS Amplify:
import boto3
client = boto3.client('amplify')
These are the available methods:
Check if an operation can be paginated.
Creates a new Amplify App.
See also: AWS API Documentation
Request Syntax
response = client.create_app(
name='string',
description='string',
repository='string',
platform='IOS'|'ANDROID'|'WEB'|'REACT_NATIVE',
iamServiceRoleArn='string',
oauthToken='string',
environmentVariables={
'string': 'string'
},
enableBranchAutoBuild=True|False,
enableBasicAuth=True|False,
basicAuthCredentials='string',
customRules=[
{
'source': 'string',
'target': 'string',
'status': 'string',
'condition': 'string'
},
],
tags={
'string': 'string'
},
buildSpec='string'
)
[REQUIRED]
Name for the Amplify App
[REQUIRED]
Repository for an Amplify App
[REQUIRED]
Platform / framework for an Amplify App
[REQUIRED]
OAuth token for 3rd party source control system for an Amplify App, used to create webhook and read-only deploy key. OAuth token is not stored.
Environment variables map for an Amplify App.
Custom rewrite / redirect rules for an Amplify App.
Custom rewrite / redirect rule.
The source pattern for a URL rewrite or redirect rule.
The target pattern for a URL rewrite or redirect rule.
The status code for a URL rewrite or redirect rule.
The condition for a URL rewrite or redirect rule, e.g. country code.
Tag for an Amplify App
dict
Response Syntax
{
'app': {
'appId': 'string',
'appArn': 'string',
'name': 'string',
'tags': {
'string': 'string'
},
'description': 'string',
'repository': 'string',
'platform': 'IOS'|'ANDROID'|'WEB'|'REACT_NATIVE',
'createTime': datetime(2015, 1, 1),
'updateTime': datetime(2015, 1, 1),
'iamServiceRoleArn': 'string',
'environmentVariables': {
'string': 'string'
},
'defaultDomain': 'string',
'enableBranchAutoBuild': True|False,
'enableBasicAuth': True|False,
'basicAuthCredentials': 'string',
'customRules': [
{
'source': 'string',
'target': 'string',
'status': 'string',
'condition': 'string'
},
],
'productionBranch': {
'lastDeployTime': datetime(2015, 1, 1),
'status': 'string',
'thumbnailUrl': 'string',
'branchName': 'string'
},
'buildSpec': 'string'
}
}
Response Structure
(dict) --
app (dict) --
Amplify App represents different branches of a repository for building, deploying, and hosting.
appId (string) --
Unique Id for the Amplify App.
appArn (string) --
ARN for the Amplify App.
name (string) --
Name for the Amplify App.
tags (dict) --
Tag for Amplify App.
description (string) --
Description for the Amplify App.
repository (string) --
Repository for the Amplify App.
platform (string) --
Platform for the Amplify App.
createTime (datetime) --
Create date / time for the Amplify App.
updateTime (datetime) --
Update date / time for the Amplify App.
iamServiceRoleArn (string) --
IAM service role ARN for the Amplify App.
environmentVariables (dict) --
Environment Variables for the Amplify App.
defaultDomain (string) --
Default domain for the Amplify App.
enableBranchAutoBuild (boolean) --
Enables auto-building of branches for the Amplify App.
enableBasicAuth (boolean) --
Enables Basic Authorization for branches for the Amplify App.
basicAuthCredentials (string) --
Basic Authorization credentials for branches for the Amplify App.
customRules (list) --
Custom redirect / rewrite rules for the Amplify App.
(dict) --
Custom rewrite / redirect rule.
source (string) --
The source pattern for a URL rewrite or redirect rule.
target (string) --
The target pattern for a URL rewrite or redirect rule.
status (string) --
The status code for a URL rewrite or redirect rule.
condition (string) --
The condition for a URL rewrite or redirect rule, e.g. country code.
productionBranch (dict) --
Structure with Production Branch information.
lastDeployTime (datetime) --
Last Deploy Time of Production Branch.
status (string) --
Status of Production Branch.
thumbnailUrl (string) --
Thumbnail Url for Production Branch.
branchName (string) --
Branch Name for Production Branch.
buildSpec (string) --
BuildSpec content for Amplify App.
Creates a new Branch for an Amplify App.
See also: AWS API Documentation
Request Syntax
response = client.create_branch(
appId='string',
branchName='string',
description='string',
stage='PRODUCTION'|'BETA'|'DEVELOPMENT'|'EXPERIMENTAL',
framework='string',
enableNotification=True|False,
enableAutoBuild=True|False,
environmentVariables={
'string': 'string'
},
basicAuthCredentials='string',
enableBasicAuth=True|False,
tags={
'string': 'string'
},
buildSpec='string',
ttl='string'
)
[REQUIRED]
Unique Id for an Amplify App.
[REQUIRED]
Name for the branch.
Environment Variables for the branch.
Tag for the branch.
dict
Response Syntax
{
'branch': {
'branchArn': 'string',
'branchName': 'string',
'description': 'string',
'tags': {
'string': 'string'
},
'stage': 'PRODUCTION'|'BETA'|'DEVELOPMENT'|'EXPERIMENTAL',
'displayName': 'string',
'enableNotification': True|False,
'createTime': datetime(2015, 1, 1),
'updateTime': datetime(2015, 1, 1),
'environmentVariables': {
'string': 'string'
},
'enableAutoBuild': True|False,
'customDomains': [
'string',
],
'framework': 'string',
'activeJobId': 'string',
'totalNumberOfJobs': 'string',
'enableBasicAuth': True|False,
'thumbnailUrl': 'string',
'basicAuthCredentials': 'string',
'buildSpec': 'string',
'ttl': 'string'
}
}
Response Structure
(dict) --
Result structure for create branch request.
branch (dict) --
Branch structure for an Amplify App.
branchArn (string) --
ARN for a branch, part of an Amplify App.
branchName (string) --
Name for a branch, part of an Amplify App.
description (string) --
Description for a branch, part of an Amplify App.
tags (dict) --
Tag for branch for Amplify App.
stage (string) --
Stage for a branch, part of an Amplify App.
displayName (string) --
Display name for a branch, part of an Amplify App.
enableNotification (boolean) --
Enables notifications for a branch, part of an Amplify App.
createTime (datetime) --
Creation date and time for a branch, part of an Amplify App.
updateTime (datetime) --
Last updated date and time for a branch, part of an Amplify App.
environmentVariables (dict) --
Environment Variables specific to a branch, part of an Amplify App.
enableAutoBuild (boolean) --
Enables auto-building on push for a branch, part of an Amplify App.
customDomains (list) --
Custom domains for a branch, part of an Amplify App.
framework (string) --
Framework for a branch, part of an Amplify App.
activeJobId (string) --
Id of the active job for a branch, part of an Amplify App.
totalNumberOfJobs (string) --
Total number of Jobs part of an Amplify App.
enableBasicAuth (boolean) --
Enables Basic Authorization for a branch, part of an Amplify App.
thumbnailUrl (string) --
Thumbnail Url for the branch.
basicAuthCredentials (string) --
Basic Authorization credentials for a branch, part of an Amplify App.
buildSpec (string) --
BuildSpec content for branch for Amplify App.
ttl (string) --
The content TTL for the website in seconds.
Create a new DomainAssociation on an App
See also: AWS API Documentation
Request Syntax
response = client.create_domain_association(
appId='string',
domainName='string',
enableAutoSubDomain=True|False,
subDomainSettings=[
{
'prefix': 'string',
'branchName': 'string'
},
]
)
[REQUIRED]
Unique Id for an Amplify App.
[REQUIRED]
Domain name for the Domain Association.
[REQUIRED]
Setting structure for the Subdomain.
Setting for the Subdomain.
Prefix setting for the Subdomain.
Branch name setting for the Subdomain.
dict
Response Syntax
{
'domainAssociation': {
'domainAssociationArn': 'string',
'domainName': 'string',
'enableAutoSubDomain': True|False,
'domainStatus': 'PENDING_VERIFICATION'|'IN_PROGRESS'|'AVAILABLE'|'PENDING_DEPLOYMENT'|'FAILED',
'statusReason': 'string',
'certificateVerificationDNSRecord': 'string',
'subDomains': [
{
'subDomainSetting': {
'prefix': 'string',
'branchName': 'string'
},
'verified': True|False,
'dnsRecord': 'string'
},
]
}
}
Response Structure
(dict) --
Result structure for the create Domain Association request.
domainAssociation (dict) --
Domain Association structure.
domainAssociationArn (string) --
ARN for the Domain Association.
domainName (string) --
Name of the domain.
enableAutoSubDomain (boolean) --
Enables automated creation of Subdomains for branches.
domainStatus (string) --
Status fo the Domain Association.
statusReason (string) --
Reason for the current status of the Domain Association.
certificateVerificationDNSRecord (string) --
DNS Record for certificate verification.
subDomains (list) --
Subdomains for the Domain Association.
(dict) --
Subdomain for the Domain Association.
subDomainSetting (dict) --
Setting structure for the Subdomain.
prefix (string) --
Prefix setting for the Subdomain.
branchName (string) --
Branch name setting for the Subdomain.
verified (boolean) --
Verified status of the Subdomain
dnsRecord (string) --
DNS record for the Subdomain.
Delete an existing Amplify App by appId.
See also: AWS API Documentation
Request Syntax
response = client.delete_app(
appId='string'
)
[REQUIRED]
Unique Id for an Amplify App.
{
'app': {
'appId': 'string',
'appArn': 'string',
'name': 'string',
'tags': {
'string': 'string'
},
'description': 'string',
'repository': 'string',
'platform': 'IOS'|'ANDROID'|'WEB'|'REACT_NATIVE',
'createTime': datetime(2015, 1, 1),
'updateTime': datetime(2015, 1, 1),
'iamServiceRoleArn': 'string',
'environmentVariables': {
'string': 'string'
},
'defaultDomain': 'string',
'enableBranchAutoBuild': True|False,
'enableBasicAuth': True|False,
'basicAuthCredentials': 'string',
'customRules': [
{
'source': 'string',
'target': 'string',
'status': 'string',
'condition': 'string'
},
],
'productionBranch': {
'lastDeployTime': datetime(2015, 1, 1),
'status': 'string',
'thumbnailUrl': 'string',
'branchName': 'string'
},
'buildSpec': 'string'
}
}
Response Structure
Result structure for an Amplify App delete request.
Amplify App represents different branches of a repository for building, deploying, and hosting.
Unique Id for the Amplify App.
ARN for the Amplify App.
Name for the Amplify App.
Tag for Amplify App.
Description for the Amplify App.
Repository for the Amplify App.
Platform for the Amplify App.
Create date / time for the Amplify App.
Update date / time for the Amplify App.
IAM service role ARN for the Amplify App.
Environment Variables for the Amplify App.
Default domain for the Amplify App.
Enables auto-building of branches for the Amplify App.
Enables Basic Authorization for branches for the Amplify App.
Basic Authorization credentials for branches for the Amplify App.
Custom redirect / rewrite rules for the Amplify App.
Custom rewrite / redirect rule.
The source pattern for a URL rewrite or redirect rule.
The target pattern for a URL rewrite or redirect rule.
The status code for a URL rewrite or redirect rule.
The condition for a URL rewrite or redirect rule, e.g. country code.
Structure with Production Branch information.
Last Deploy Time of Production Branch.
Status of Production Branch.
Thumbnail Url for Production Branch.
Branch Name for Production Branch.
BuildSpec content for Amplify App.
Deletes a branch for an Amplify App.
See also: AWS API Documentation
Request Syntax
response = client.delete_branch(
appId='string',
branchName='string'
)
[REQUIRED]
Unique Id for an Amplify App.
[REQUIRED]
Name for the branch.
dict
Response Syntax
{
'branch': {
'branchArn': 'string',
'branchName': 'string',
'description': 'string',
'tags': {
'string': 'string'
},
'stage': 'PRODUCTION'|'BETA'|'DEVELOPMENT'|'EXPERIMENTAL',
'displayName': 'string',
'enableNotification': True|False,
'createTime': datetime(2015, 1, 1),
'updateTime': datetime(2015, 1, 1),
'environmentVariables': {
'string': 'string'
},
'enableAutoBuild': True|False,
'customDomains': [
'string',
],
'framework': 'string',
'activeJobId': 'string',
'totalNumberOfJobs': 'string',
'enableBasicAuth': True|False,
'thumbnailUrl': 'string',
'basicAuthCredentials': 'string',
'buildSpec': 'string',
'ttl': 'string'
}
}
Response Structure
(dict) --
Result structure for delete branch request.
branch (dict) --
Branch structure for an Amplify App.
branchArn (string) --
ARN for a branch, part of an Amplify App.
branchName (string) --
Name for a branch, part of an Amplify App.
description (string) --
Description for a branch, part of an Amplify App.
tags (dict) --
Tag for branch for Amplify App.
stage (string) --
Stage for a branch, part of an Amplify App.
displayName (string) --
Display name for a branch, part of an Amplify App.
enableNotification (boolean) --
Enables notifications for a branch, part of an Amplify App.
createTime (datetime) --
Creation date and time for a branch, part of an Amplify App.
updateTime (datetime) --
Last updated date and time for a branch, part of an Amplify App.
environmentVariables (dict) --
Environment Variables specific to a branch, part of an Amplify App.
enableAutoBuild (boolean) --
Enables auto-building on push for a branch, part of an Amplify App.
customDomains (list) --
Custom domains for a branch, part of an Amplify App.
framework (string) --
Framework for a branch, part of an Amplify App.
activeJobId (string) --
Id of the active job for a branch, part of an Amplify App.
totalNumberOfJobs (string) --
Total number of Jobs part of an Amplify App.
enableBasicAuth (boolean) --
Enables Basic Authorization for a branch, part of an Amplify App.
thumbnailUrl (string) --
Thumbnail Url for the branch.
basicAuthCredentials (string) --
Basic Authorization credentials for a branch, part of an Amplify App.
buildSpec (string) --
BuildSpec content for branch for Amplify App.
ttl (string) --
The content TTL for the website in seconds.
Deletes a DomainAssociation.
See also: AWS API Documentation
Request Syntax
response = client.delete_domain_association(
appId='string',
domainName='string'
)
[REQUIRED]
Unique Id for an Amplify App.
[REQUIRED]
Name of the domain.
dict
Response Syntax
{
'domainAssociation': {
'domainAssociationArn': 'string',
'domainName': 'string',
'enableAutoSubDomain': True|False,
'domainStatus': 'PENDING_VERIFICATION'|'IN_PROGRESS'|'AVAILABLE'|'PENDING_DEPLOYMENT'|'FAILED',
'statusReason': 'string',
'certificateVerificationDNSRecord': 'string',
'subDomains': [
{
'subDomainSetting': {
'prefix': 'string',
'branchName': 'string'
},
'verified': True|False,
'dnsRecord': 'string'
},
]
}
}
Response Structure
(dict) --
domainAssociation (dict) --
Structure for Domain Association, which associates a custom domain with an Amplify App.
domainAssociationArn (string) --
ARN for the Domain Association.
domainName (string) --
Name of the domain.
enableAutoSubDomain (boolean) --
Enables automated creation of Subdomains for branches.
domainStatus (string) --
Status fo the Domain Association.
statusReason (string) --
Reason for the current status of the Domain Association.
certificateVerificationDNSRecord (string) --
DNS Record for certificate verification.
subDomains (list) --
Subdomains for the Domain Association.
(dict) --
Subdomain for the Domain Association.
subDomainSetting (dict) --
Setting structure for the Subdomain.
prefix (string) --
Prefix setting for the Subdomain.
branchName (string) --
Branch name setting for the Subdomain.
verified (boolean) --
Verified status of the Subdomain
dnsRecord (string) --
DNS record for the Subdomain.
Delete a job, for an Amplify branch, part of Amplify App.
See also: AWS API Documentation
Request Syntax
response = client.delete_job(
appId='string',
branchName='string',
jobId='string'
)
[REQUIRED]
Unique Id for an Amplify App.
[REQUIRED]
Name for the branch, for the Job.
[REQUIRED]
Unique Id for the Job.
dict
Response Syntax
{
'jobSummary': {
'jobArn': 'string',
'jobId': 'string',
'commitId': 'string',
'commitMessage': 'string',
'commitTime': datetime(2015, 1, 1),
'startTime': datetime(2015, 1, 1),
'status': 'PENDING'|'PROVISIONING'|'RUNNING'|'FAILED'|'SUCCEED'|'CANCELLING'|'CANCELLED',
'endTime': datetime(2015, 1, 1),
'jobType': 'RELEASE'|'RETRY'|'WEB_HOOK'
}
}
Response Structure
(dict) --
Result structure for the delete job request.
jobSummary (dict) --
Structure for the summary of a Job.
jobArn (string) --
Arn for the Job.
jobId (string) --
Unique Id for the Job.
commitId (string) --
Commit Id from 3rd party repository provider for the Job.
commitMessage (string) --
Commit message from 3rd party repository provider for the Job.
commitTime (datetime) --
Commit date / time for the Job.
startTime (datetime) --
Start date / time for the Job.
status (string) --
Status for the Job.
endTime (datetime) --
End date / time for the Job.
jobType (string) --
Type for the Job.
Generate a presigned url given a client, its method, and arguments
The presigned url
Retrieves an existing Amplify App by appId.
See also: AWS API Documentation
Request Syntax
response = client.get_app(
appId='string'
)
[REQUIRED]
Unique Id for an Amplify App.
{
'app': {
'appId': 'string',
'appArn': 'string',
'name': 'string',
'tags': {
'string': 'string'
},
'description': 'string',
'repository': 'string',
'platform': 'IOS'|'ANDROID'|'WEB'|'REACT_NATIVE',
'createTime': datetime(2015, 1, 1),
'updateTime': datetime(2015, 1, 1),
'iamServiceRoleArn': 'string',
'environmentVariables': {
'string': 'string'
},
'defaultDomain': 'string',
'enableBranchAutoBuild': True|False,
'enableBasicAuth': True|False,
'basicAuthCredentials': 'string',
'customRules': [
{
'source': 'string',
'target': 'string',
'status': 'string',
'condition': 'string'
},
],
'productionBranch': {
'lastDeployTime': datetime(2015, 1, 1),
'status': 'string',
'thumbnailUrl': 'string',
'branchName': 'string'
},
'buildSpec': 'string'
}
}
Response Structure
Amplify App represents different branches of a repository for building, deploying, and hosting.
Unique Id for the Amplify App.
ARN for the Amplify App.
Name for the Amplify App.
Tag for Amplify App.
Description for the Amplify App.
Repository for the Amplify App.
Platform for the Amplify App.
Create date / time for the Amplify App.
Update date / time for the Amplify App.
IAM service role ARN for the Amplify App.
Environment Variables for the Amplify App.
Default domain for the Amplify App.
Enables auto-building of branches for the Amplify App.
Enables Basic Authorization for branches for the Amplify App.
Basic Authorization credentials for branches for the Amplify App.
Custom redirect / rewrite rules for the Amplify App.
Custom rewrite / redirect rule.
The source pattern for a URL rewrite or redirect rule.
The target pattern for a URL rewrite or redirect rule.
The status code for a URL rewrite or redirect rule.
The condition for a URL rewrite or redirect rule, e.g. country code.
Structure with Production Branch information.
Last Deploy Time of Production Branch.
Status of Production Branch.
Thumbnail Url for Production Branch.
Branch Name for Production Branch.
BuildSpec content for Amplify App.
Retrieves a branch for an Amplify App.
See also: AWS API Documentation
Request Syntax
response = client.get_branch(
appId='string',
branchName='string'
)
[REQUIRED]
Unique Id for an Amplify App.
[REQUIRED]
Name for the branch.
dict
Response Syntax
{
'branch': {
'branchArn': 'string',
'branchName': 'string',
'description': 'string',
'tags': {
'string': 'string'
},
'stage': 'PRODUCTION'|'BETA'|'DEVELOPMENT'|'EXPERIMENTAL',
'displayName': 'string',
'enableNotification': True|False,
'createTime': datetime(2015, 1, 1),
'updateTime': datetime(2015, 1, 1),
'environmentVariables': {
'string': 'string'
},
'enableAutoBuild': True|False,
'customDomains': [
'string',
],
'framework': 'string',
'activeJobId': 'string',
'totalNumberOfJobs': 'string',
'enableBasicAuth': True|False,
'thumbnailUrl': 'string',
'basicAuthCredentials': 'string',
'buildSpec': 'string',
'ttl': 'string'
}
}
Response Structure
(dict) --
branch (dict) --
Branch for an Amplify App, which maps to a 3rd party repository branch.
branchArn (string) --
ARN for a branch, part of an Amplify App.
branchName (string) --
Name for a branch, part of an Amplify App.
description (string) --
Description for a branch, part of an Amplify App.
tags (dict) --
Tag for branch for Amplify App.
stage (string) --
Stage for a branch, part of an Amplify App.
displayName (string) --
Display name for a branch, part of an Amplify App.
enableNotification (boolean) --
Enables notifications for a branch, part of an Amplify App.
createTime (datetime) --
Creation date and time for a branch, part of an Amplify App.
updateTime (datetime) --
Last updated date and time for a branch, part of an Amplify App.
environmentVariables (dict) --
Environment Variables specific to a branch, part of an Amplify App.
enableAutoBuild (boolean) --
Enables auto-building on push for a branch, part of an Amplify App.
customDomains (list) --
Custom domains for a branch, part of an Amplify App.
framework (string) --
Framework for a branch, part of an Amplify App.
activeJobId (string) --
Id of the active job for a branch, part of an Amplify App.
totalNumberOfJobs (string) --
Total number of Jobs part of an Amplify App.
enableBasicAuth (boolean) --
Enables Basic Authorization for a branch, part of an Amplify App.
thumbnailUrl (string) --
Thumbnail Url for the branch.
basicAuthCredentials (string) --
Basic Authorization credentials for a branch, part of an Amplify App.
buildSpec (string) --
BuildSpec content for branch for Amplify App.
ttl (string) --
The content TTL for the website in seconds.
Retrieves domain info that corresponds to an appId and domainName.
See also: AWS API Documentation
Request Syntax
response = client.get_domain_association(
appId='string',
domainName='string'
)
[REQUIRED]
Unique Id for an Amplify App.
[REQUIRED]
Name of the domain.
dict
Response Syntax
{
'domainAssociation': {
'domainAssociationArn': 'string',
'domainName': 'string',
'enableAutoSubDomain': True|False,
'domainStatus': 'PENDING_VERIFICATION'|'IN_PROGRESS'|'AVAILABLE'|'PENDING_DEPLOYMENT'|'FAILED',
'statusReason': 'string',
'certificateVerificationDNSRecord': 'string',
'subDomains': [
{
'subDomainSetting': {
'prefix': 'string',
'branchName': 'string'
},
'verified': True|False,
'dnsRecord': 'string'
},
]
}
}
Response Structure
(dict) --
Result structure for the get Domain Association request.
domainAssociation (dict) --
Domain Association structure.
domainAssociationArn (string) --
ARN for the Domain Association.
domainName (string) --
Name of the domain.
enableAutoSubDomain (boolean) --
Enables automated creation of Subdomains for branches.
domainStatus (string) --
Status fo the Domain Association.
statusReason (string) --
Reason for the current status of the Domain Association.
certificateVerificationDNSRecord (string) --
DNS Record for certificate verification.
subDomains (list) --
Subdomains for the Domain Association.
(dict) --
Subdomain for the Domain Association.
subDomainSetting (dict) --
Setting structure for the Subdomain.
prefix (string) --
Prefix setting for the Subdomain.
branchName (string) --
Branch name setting for the Subdomain.
verified (boolean) --
Verified status of the Subdomain
dnsRecord (string) --
DNS record for the Subdomain.
Get a job for a branch, part of an Amplify App.
See also: AWS API Documentation
Request Syntax
response = client.get_job(
appId='string',
branchName='string',
jobId='string'
)
[REQUIRED]
Unique Id for an Amplify App.
[REQUIRED]
Name for the branch, for the Job.
[REQUIRED]
Unique Id for the Job.
dict
Response Syntax
{
'job': {
'summary': {
'jobArn': 'string',
'jobId': 'string',
'commitId': 'string',
'commitMessage': 'string',
'commitTime': datetime(2015, 1, 1),
'startTime': datetime(2015, 1, 1),
'status': 'PENDING'|'PROVISIONING'|'RUNNING'|'FAILED'|'SUCCEED'|'CANCELLING'|'CANCELLED',
'endTime': datetime(2015, 1, 1),
'jobType': 'RELEASE'|'RETRY'|'WEB_HOOK'
},
'steps': [
{
'stepName': 'string',
'startTime': datetime(2015, 1, 1),
'status': 'PENDING'|'PROVISIONING'|'RUNNING'|'FAILED'|'SUCCEED'|'CANCELLING'|'CANCELLED',
'endTime': datetime(2015, 1, 1),
'logUrl': 'string',
'artifactsUrl': 'string',
'screenshots': {
'string': 'string'
}
},
]
}
}
Response Structure
(dict) --
job (dict) --
Structure for an execution job for an Amplify App.
summary (dict) --
Summary for an execution job for an Amplify App.
jobArn (string) --
Arn for the Job.
jobId (string) --
Unique Id for the Job.
commitId (string) --
Commit Id from 3rd party repository provider for the Job.
commitMessage (string) --
Commit message from 3rd party repository provider for the Job.
commitTime (datetime) --
Commit date / time for the Job.
startTime (datetime) --
Start date / time for the Job.
status (string) --
Status for the Job.
endTime (datetime) --
End date / time for the Job.
jobType (string) --
Type for the Job.
steps (list) --
Execution steps for an execution job, for an Amplify App.
(dict) --
Structure for an execution step for an execution job, for an Amplify App.
stepName (string) --
Name of the execution step.
startTime (datetime) --
Start date/ time of the execution step.
status (string) --
Status of the execution step.
endTime (datetime) --
End date/ time of the execution step.
logUrl (string) --
Url to the logs for the execution step.
artifactsUrl (string) --
Url to teh artifact for the execution step.
screenshots (dict) --
List of screenshot Urls for the execution step, if relevant.
Create a paginator for an operation.
Returns an object that can wait for some condition.
Lists existing Amplify Apps.
See also: AWS API Documentation
Request Syntax
response = client.list_apps(
nextToken='string',
maxResults=123
)
dict
Response Syntax
{
'apps': [
{
'appId': 'string',
'appArn': 'string',
'name': 'string',
'tags': {
'string': 'string'
},
'description': 'string',
'repository': 'string',
'platform': 'IOS'|'ANDROID'|'WEB'|'REACT_NATIVE',
'createTime': datetime(2015, 1, 1),
'updateTime': datetime(2015, 1, 1),
'iamServiceRoleArn': 'string',
'environmentVariables': {
'string': 'string'
},
'defaultDomain': 'string',
'enableBranchAutoBuild': True|False,
'enableBasicAuth': True|False,
'basicAuthCredentials': 'string',
'customRules': [
{
'source': 'string',
'target': 'string',
'status': 'string',
'condition': 'string'
},
],
'productionBranch': {
'lastDeployTime': datetime(2015, 1, 1),
'status': 'string',
'thumbnailUrl': 'string',
'branchName': 'string'
},
'buildSpec': 'string'
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
Result structure for an Amplify App list request.
apps (list) --
List of Amplify Apps.
(dict) --
Amplify App represents different branches of a repository for building, deploying, and hosting.
appId (string) --
Unique Id for the Amplify App.
appArn (string) --
ARN for the Amplify App.
name (string) --
Name for the Amplify App.
tags (dict) --
Tag for Amplify App.
description (string) --
Description for the Amplify App.
repository (string) --
Repository for the Amplify App.
platform (string) --
Platform for the Amplify App.
createTime (datetime) --
Create date / time for the Amplify App.
updateTime (datetime) --
Update date / time for the Amplify App.
iamServiceRoleArn (string) --
IAM service role ARN for the Amplify App.
environmentVariables (dict) --
Environment Variables for the Amplify App.
defaultDomain (string) --
Default domain for the Amplify App.
enableBranchAutoBuild (boolean) --
Enables auto-building of branches for the Amplify App.
enableBasicAuth (boolean) --
Enables Basic Authorization for branches for the Amplify App.
basicAuthCredentials (string) --
Basic Authorization credentials for branches for the Amplify App.
customRules (list) --
Custom redirect / rewrite rules for the Amplify App.
(dict) --
Custom rewrite / redirect rule.
source (string) --
The source pattern for a URL rewrite or redirect rule.
target (string) --
The target pattern for a URL rewrite or redirect rule.
status (string) --
The status code for a URL rewrite or redirect rule.
condition (string) --
The condition for a URL rewrite or redirect rule, e.g. country code.
productionBranch (dict) --
Structure with Production Branch information.
lastDeployTime (datetime) --
Last Deploy Time of Production Branch.
status (string) --
Status of Production Branch.
thumbnailUrl (string) --
Thumbnail Url for Production Branch.
branchName (string) --
Branch Name for Production Branch.
buildSpec (string) --
BuildSpec content for Amplify App.
nextToken (string) --
Pagination token. Set to null to start listing Apps from start. If non-null pagination token is returned in a result, then pass its value in here to list more projects.
Lists branches for an Amplify App.
See also: AWS API Documentation
Request Syntax
response = client.list_branches(
appId='string',
nextToken='string',
maxResults=123
)
[REQUIRED]
Unique Id for an Amplify App.
dict
Response Syntax
{
'branches': [
{
'branchArn': 'string',
'branchName': 'string',
'description': 'string',
'tags': {
'string': 'string'
},
'stage': 'PRODUCTION'|'BETA'|'DEVELOPMENT'|'EXPERIMENTAL',
'displayName': 'string',
'enableNotification': True|False,
'createTime': datetime(2015, 1, 1),
'updateTime': datetime(2015, 1, 1),
'environmentVariables': {
'string': 'string'
},
'enableAutoBuild': True|False,
'customDomains': [
'string',
],
'framework': 'string',
'activeJobId': 'string',
'totalNumberOfJobs': 'string',
'enableBasicAuth': True|False,
'thumbnailUrl': 'string',
'basicAuthCredentials': 'string',
'buildSpec': 'string',
'ttl': 'string'
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
Result structure for list branches request.
branches (list) --
List of branches for an Amplify App.
(dict) --
Branch for an Amplify App, which maps to a 3rd party repository branch.
branchArn (string) --
ARN for a branch, part of an Amplify App.
branchName (string) --
Name for a branch, part of an Amplify App.
description (string) --
Description for a branch, part of an Amplify App.
tags (dict) --
Tag for branch for Amplify App.
stage (string) --
Stage for a branch, part of an Amplify App.
displayName (string) --
Display name for a branch, part of an Amplify App.
enableNotification (boolean) --
Enables notifications for a branch, part of an Amplify App.
createTime (datetime) --
Creation date and time for a branch, part of an Amplify App.
updateTime (datetime) --
Last updated date and time for a branch, part of an Amplify App.
environmentVariables (dict) --
Environment Variables specific to a branch, part of an Amplify App.
enableAutoBuild (boolean) --
Enables auto-building on push for a branch, part of an Amplify App.
customDomains (list) --
Custom domains for a branch, part of an Amplify App.
framework (string) --
Framework for a branch, part of an Amplify App.
activeJobId (string) --
Id of the active job for a branch, part of an Amplify App.
totalNumberOfJobs (string) --
Total number of Jobs part of an Amplify App.
enableBasicAuth (boolean) --
Enables Basic Authorization for a branch, part of an Amplify App.
thumbnailUrl (string) --
Thumbnail Url for the branch.
basicAuthCredentials (string) --
Basic Authorization credentials for a branch, part of an Amplify App.
buildSpec (string) --
BuildSpec content for branch for Amplify App.
ttl (string) --
The content TTL for the website in seconds.
nextToken (string) --
Pagination token. If non-null pagination token is returned in a result, then pass its value in another request to fetch more entries.
List domains with an app
See also: AWS API Documentation
Request Syntax
response = client.list_domain_associations(
appId='string',
nextToken='string',
maxResults=123
)
[REQUIRED]
Unique Id for an Amplify App.
dict
Response Syntax
{
'domainAssociations': [
{
'domainAssociationArn': 'string',
'domainName': 'string',
'enableAutoSubDomain': True|False,
'domainStatus': 'PENDING_VERIFICATION'|'IN_PROGRESS'|'AVAILABLE'|'PENDING_DEPLOYMENT'|'FAILED',
'statusReason': 'string',
'certificateVerificationDNSRecord': 'string',
'subDomains': [
{
'subDomainSetting': {
'prefix': 'string',
'branchName': 'string'
},
'verified': True|False,
'dnsRecord': 'string'
},
]
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
Result structure for the list Domain Association request.
domainAssociations (list) --
List of Domain Associations.
(dict) --
Structure for Domain Association, which associates a custom domain with an Amplify App.
domainAssociationArn (string) --
ARN for the Domain Association.
domainName (string) --
Name of the domain.
enableAutoSubDomain (boolean) --
Enables automated creation of Subdomains for branches.
domainStatus (string) --
Status fo the Domain Association.
statusReason (string) --
Reason for the current status of the Domain Association.
certificateVerificationDNSRecord (string) --
DNS Record for certificate verification.
subDomains (list) --
Subdomains for the Domain Association.
(dict) --
Subdomain for the Domain Association.
subDomainSetting (dict) --
Setting structure for the Subdomain.
prefix (string) --
Prefix setting for the Subdomain.
branchName (string) --
Branch name setting for the Subdomain.
verified (boolean) --
Verified status of the Subdomain
dnsRecord (string) --
DNS record for the Subdomain.
nextToken (string) --
Pagination token. If non-null pagination token is returned in a result, then pass its value in another request to fetch more entries.
List Jobs for a branch, part of an Amplify App.
See also: AWS API Documentation
Request Syntax
response = client.list_jobs(
appId='string',
branchName='string',
nextToken='string',
maxResults=123
)
[REQUIRED]
Unique Id for an Amplify App.
[REQUIRED]
Name for a branch.
dict
Response Syntax
{
'jobSummaries': [
{
'jobArn': 'string',
'jobId': 'string',
'commitId': 'string',
'commitMessage': 'string',
'commitTime': datetime(2015, 1, 1),
'startTime': datetime(2015, 1, 1),
'status': 'PENDING'|'PROVISIONING'|'RUNNING'|'FAILED'|'SUCCEED'|'CANCELLING'|'CANCELLED',
'endTime': datetime(2015, 1, 1),
'jobType': 'RELEASE'|'RETRY'|'WEB_HOOK'
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
Maximum number of records to list in a single response.
jobSummaries (list) --
Result structure for list job result request.
(dict) --
Structure for the summary of a Job.
jobArn (string) --
Arn for the Job.
jobId (string) --
Unique Id for the Job.
commitId (string) --
Commit Id from 3rd party repository provider for the Job.
commitMessage (string) --
Commit message from 3rd party repository provider for the Job.
commitTime (datetime) --
Commit date / time for the Job.
startTime (datetime) --
Start date / time for the Job.
status (string) --
Status for the Job.
endTime (datetime) --
End date / time for the Job.
jobType (string) --
Type for the Job.
nextToken (string) --
Pagination token. If non-null pagination token is returned in a result, then pass its value in another request to fetch more entries.
Starts a new job for a branch, part of an Amplify App.
See also: AWS API Documentation
Request Syntax
response = client.start_job(
appId='string',
branchName='string',
jobId='string',
jobType='RELEASE'|'RETRY'|'WEB_HOOK',
jobReason='string',
commitId='string',
commitMessage='string',
commitTime=datetime(2015, 1, 1)
)
[REQUIRED]
Unique Id for an Amplify App.
[REQUIRED]
Name for the branch, for the Job.
[REQUIRED]
Type for the Job.
dict
Response Syntax
{
'jobSummary': {
'jobArn': 'string',
'jobId': 'string',
'commitId': 'string',
'commitMessage': 'string',
'commitTime': datetime(2015, 1, 1),
'startTime': datetime(2015, 1, 1),
'status': 'PENDING'|'PROVISIONING'|'RUNNING'|'FAILED'|'SUCCEED'|'CANCELLING'|'CANCELLED',
'endTime': datetime(2015, 1, 1),
'jobType': 'RELEASE'|'RETRY'|'WEB_HOOK'
}
}
Response Structure
(dict) --
Result structure for run job request.
jobSummary (dict) --
Summary for the Job.
jobArn (string) --
Arn for the Job.
jobId (string) --
Unique Id for the Job.
commitId (string) --
Commit Id from 3rd party repository provider for the Job.
commitMessage (string) --
Commit message from 3rd party repository provider for the Job.
commitTime (datetime) --
Commit date / time for the Job.
startTime (datetime) --
Start date / time for the Job.
status (string) --
Status for the Job.
endTime (datetime) --
End date / time for the Job.
jobType (string) --
Type for the Job.
Stop a job that is in progress, for an Amplify branch, part of Amplify App.
See also: AWS API Documentation
Request Syntax
response = client.stop_job(
appId='string',
branchName='string',
jobId='string'
)
[REQUIRED]
Unique Id for an Amplify App.
[REQUIRED]
Name for the branch, for the Job.
[REQUIRED]
Unique Id for the Job.
dict
Response Syntax
{
'jobSummary': {
'jobArn': 'string',
'jobId': 'string',
'commitId': 'string',
'commitMessage': 'string',
'commitTime': datetime(2015, 1, 1),
'startTime': datetime(2015, 1, 1),
'status': 'PENDING'|'PROVISIONING'|'RUNNING'|'FAILED'|'SUCCEED'|'CANCELLING'|'CANCELLED',
'endTime': datetime(2015, 1, 1),
'jobType': 'RELEASE'|'RETRY'|'WEB_HOOK'
}
}
Response Structure
(dict) --
Result structure for the stop job request.
jobSummary (dict) --
Summary for the Job.
jobArn (string) --
Arn for the Job.
jobId (string) --
Unique Id for the Job.
commitId (string) --
Commit Id from 3rd party repository provider for the Job.
commitMessage (string) --
Commit message from 3rd party repository provider for the Job.
commitTime (datetime) --
Commit date / time for the Job.
startTime (datetime) --
Start date / time for the Job.
status (string) --
Status for the Job.
endTime (datetime) --
End date / time for the Job.
jobType (string) --
Type for the Job.
Updates an existing Amplify App.
See also: AWS API Documentation
Request Syntax
response = client.update_app(
appId='string',
name='string',
description='string',
platform='IOS'|'ANDROID'|'WEB'|'REACT_NATIVE',
iamServiceRoleArn='string',
environmentVariables={
'string': 'string'
},
enableBranchAutoBuild=True|False,
enableBasicAuth=True|False,
basicAuthCredentials='string',
customRules=[
{
'source': 'string',
'target': 'string',
'status': 'string',
'condition': 'string'
},
],
buildSpec='string'
)
[REQUIRED]
Unique Id for an Amplify App.
Environment Variables for an Amplify App.
Custom redirect / rewrite rules for an Amplify App.
Custom rewrite / redirect rule.
The source pattern for a URL rewrite or redirect rule.
The target pattern for a URL rewrite or redirect rule.
The status code for a URL rewrite or redirect rule.
The condition for a URL rewrite or redirect rule, e.g. country code.
dict
Response Syntax
{
'app': {
'appId': 'string',
'appArn': 'string',
'name': 'string',
'tags': {
'string': 'string'
},
'description': 'string',
'repository': 'string',
'platform': 'IOS'|'ANDROID'|'WEB'|'REACT_NATIVE',
'createTime': datetime(2015, 1, 1),
'updateTime': datetime(2015, 1, 1),
'iamServiceRoleArn': 'string',
'environmentVariables': {
'string': 'string'
},
'defaultDomain': 'string',
'enableBranchAutoBuild': True|False,
'enableBasicAuth': True|False,
'basicAuthCredentials': 'string',
'customRules': [
{
'source': 'string',
'target': 'string',
'status': 'string',
'condition': 'string'
},
],
'productionBranch': {
'lastDeployTime': datetime(2015, 1, 1),
'status': 'string',
'thumbnailUrl': 'string',
'branchName': 'string'
},
'buildSpec': 'string'
}
}
Response Structure
(dict) --
Result structure for an Amplify App update request.
app (dict) --
App structure for the updated App.
appId (string) --
Unique Id for the Amplify App.
appArn (string) --
ARN for the Amplify App.
name (string) --
Name for the Amplify App.
tags (dict) --
Tag for Amplify App.
description (string) --
Description for the Amplify App.
repository (string) --
Repository for the Amplify App.
platform (string) --
Platform for the Amplify App.
createTime (datetime) --
Create date / time for the Amplify App.
updateTime (datetime) --
Update date / time for the Amplify App.
iamServiceRoleArn (string) --
IAM service role ARN for the Amplify App.
environmentVariables (dict) --
Environment Variables for the Amplify App.
defaultDomain (string) --
Default domain for the Amplify App.
enableBranchAutoBuild (boolean) --
Enables auto-building of branches for the Amplify App.
enableBasicAuth (boolean) --
Enables Basic Authorization for branches for the Amplify App.
basicAuthCredentials (string) --
Basic Authorization credentials for branches for the Amplify App.
customRules (list) --
Custom redirect / rewrite rules for the Amplify App.
(dict) --
Custom rewrite / redirect rule.
source (string) --
The source pattern for a URL rewrite or redirect rule.
target (string) --
The target pattern for a URL rewrite or redirect rule.
status (string) --
The status code for a URL rewrite or redirect rule.
condition (string) --
The condition for a URL rewrite or redirect rule, e.g. country code.
productionBranch (dict) --
Structure with Production Branch information.
lastDeployTime (datetime) --
Last Deploy Time of Production Branch.
status (string) --
Status of Production Branch.
thumbnailUrl (string) --
Thumbnail Url for Production Branch.
branchName (string) --
Branch Name for Production Branch.
buildSpec (string) --
BuildSpec content for Amplify App.
Updates a branch for an Amplify App.
See also: AWS API Documentation
Request Syntax
response = client.update_branch(
appId='string',
branchName='string',
description='string',
framework='string',
stage='PRODUCTION'|'BETA'|'DEVELOPMENT'|'EXPERIMENTAL',
enableNotification=True|False,
enableAutoBuild=True|False,
environmentVariables={
'string': 'string'
},
basicAuthCredentials='string',
enableBasicAuth=True|False,
buildSpec='string',
ttl='string'
)
[REQUIRED]
Unique Id for an Amplify App.
[REQUIRED]
Name for the branch.
Environment Variables for the branch.
dict
Response Syntax
{
'branch': {
'branchArn': 'string',
'branchName': 'string',
'description': 'string',
'tags': {
'string': 'string'
},
'stage': 'PRODUCTION'|'BETA'|'DEVELOPMENT'|'EXPERIMENTAL',
'displayName': 'string',
'enableNotification': True|False,
'createTime': datetime(2015, 1, 1),
'updateTime': datetime(2015, 1, 1),
'environmentVariables': {
'string': 'string'
},
'enableAutoBuild': True|False,
'customDomains': [
'string',
],
'framework': 'string',
'activeJobId': 'string',
'totalNumberOfJobs': 'string',
'enableBasicAuth': True|False,
'thumbnailUrl': 'string',
'basicAuthCredentials': 'string',
'buildSpec': 'string',
'ttl': 'string'
}
}
Response Structure
(dict) --
Result structure for update branch request.
branch (dict) --
Branch structure for an Amplify App.
branchArn (string) --
ARN for a branch, part of an Amplify App.
branchName (string) --
Name for a branch, part of an Amplify App.
description (string) --
Description for a branch, part of an Amplify App.
tags (dict) --
Tag for branch for Amplify App.
stage (string) --
Stage for a branch, part of an Amplify App.
displayName (string) --
Display name for a branch, part of an Amplify App.
enableNotification (boolean) --
Enables notifications for a branch, part of an Amplify App.
createTime (datetime) --
Creation date and time for a branch, part of an Amplify App.
updateTime (datetime) --
Last updated date and time for a branch, part of an Amplify App.
environmentVariables (dict) --
Environment Variables specific to a branch, part of an Amplify App.
enableAutoBuild (boolean) --
Enables auto-building on push for a branch, part of an Amplify App.
customDomains (list) --
Custom domains for a branch, part of an Amplify App.
framework (string) --
Framework for a branch, part of an Amplify App.
activeJobId (string) --
Id of the active job for a branch, part of an Amplify App.
totalNumberOfJobs (string) --
Total number of Jobs part of an Amplify App.
enableBasicAuth (boolean) --
Enables Basic Authorization for a branch, part of an Amplify App.
thumbnailUrl (string) --
Thumbnail Url for the branch.
basicAuthCredentials (string) --
Basic Authorization credentials for a branch, part of an Amplify App.
buildSpec (string) --
BuildSpec content for branch for Amplify App.
ttl (string) --
The content TTL for the website in seconds.
Create a new DomainAssociation on an App
See also: AWS API Documentation
Request Syntax
response = client.update_domain_association(
appId='string',
domainName='string',
enableAutoSubDomain=True|False,
subDomainSettings=[
{
'prefix': 'string',
'branchName': 'string'
},
]
)
[REQUIRED]
Unique Id for an Amplify App.
[REQUIRED]
Name of the domain.
[REQUIRED]
Setting structure for the Subdomain.
Setting for the Subdomain.
Prefix setting for the Subdomain.
Branch name setting for the Subdomain.
dict
Response Syntax
{
'domainAssociation': {
'domainAssociationArn': 'string',
'domainName': 'string',
'enableAutoSubDomain': True|False,
'domainStatus': 'PENDING_VERIFICATION'|'IN_PROGRESS'|'AVAILABLE'|'PENDING_DEPLOYMENT'|'FAILED',
'statusReason': 'string',
'certificateVerificationDNSRecord': 'string',
'subDomains': [
{
'subDomainSetting': {
'prefix': 'string',
'branchName': 'string'
},
'verified': True|False,
'dnsRecord': 'string'
},
]
}
}
Response Structure
(dict) --
Result structure for the update Domain Association request.
domainAssociation (dict) --
Domain Association structure.
domainAssociationArn (string) --
ARN for the Domain Association.
domainName (string) --
Name of the domain.
enableAutoSubDomain (boolean) --
Enables automated creation of Subdomains for branches.
domainStatus (string) --
Status fo the Domain Association.
statusReason (string) --
Reason for the current status of the Domain Association.
certificateVerificationDNSRecord (string) --
DNS Record for certificate verification.
subDomains (list) --
Subdomains for the Domain Association.
(dict) --
Subdomain for the Domain Association.
subDomainSetting (dict) --
Setting structure for the Subdomain.
prefix (string) --
Prefix setting for the Subdomain.
branchName (string) --
Branch name setting for the Subdomain.
verified (boolean) --
Verified status of the Subdomain
dnsRecord (string) --
DNS record for the Subdomain.
The available paginators are:
paginator = client.get_paginator('list_apps')
Creates an iterator that will paginate through responses from Amplify.Client.list_apps().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken from a previous response.
{
'apps': [
{
'appId': 'string',
'appArn': 'string',
'name': 'string',
'tags': {
'string': 'string'
},
'description': 'string',
'repository': 'string',
'platform': 'IOS'|'ANDROID'|'WEB'|'REACT_NATIVE',
'createTime': datetime(2015, 1, 1),
'updateTime': datetime(2015, 1, 1),
'iamServiceRoleArn': 'string',
'environmentVariables': {
'string': 'string'
},
'defaultDomain': 'string',
'enableBranchAutoBuild': True|False,
'enableBasicAuth': True|False,
'basicAuthCredentials': 'string',
'customRules': [
{
'source': 'string',
'target': 'string',
'status': 'string',
'condition': 'string'
},
],
'productionBranch': {
'lastDeployTime': datetime(2015, 1, 1),
'status': 'string',
'thumbnailUrl': 'string',
'branchName': 'string'
},
'buildSpec': 'string'
},
],
'NextToken': 'string'
}
Response Structure
Result structure for an Amplify App list request.
List of Amplify Apps.
Amplify App represents different branches of a repository for building, deploying, and hosting.
Unique Id for the Amplify App.
ARN for the Amplify App.
Name for the Amplify App.
Tag for Amplify App.
Description for the Amplify App.
Repository for the Amplify App.
Platform for the Amplify App.
Create date / time for the Amplify App.
Update date / time for the Amplify App.
IAM service role ARN for the Amplify App.
Environment Variables for the Amplify App.
Default domain for the Amplify App.
Enables auto-building of branches for the Amplify App.
Enables Basic Authorization for branches for the Amplify App.
Basic Authorization credentials for branches for the Amplify App.
Custom redirect / rewrite rules for the Amplify App.
Custom rewrite / redirect rule.
The source pattern for a URL rewrite or redirect rule.
The target pattern for a URL rewrite or redirect rule.
The status code for a URL rewrite or redirect rule.
The condition for a URL rewrite or redirect rule, e.g. country code.
Structure with Production Branch information.
Last Deploy Time of Production Branch.
Status of Production Branch.
Thumbnail Url for Production Branch.
Branch Name for Production Branch.
BuildSpec content for Amplify App.
A token to resume pagination.
paginator = client.get_paginator('list_branches')
Creates an iterator that will paginate through responses from Amplify.Client.list_branches().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
appId='string',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
[REQUIRED]
Unique Id for an Amplify App.
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken from a previous response.
dict
Response Syntax
{
'branches': [
{
'branchArn': 'string',
'branchName': 'string',
'description': 'string',
'tags': {
'string': 'string'
},
'stage': 'PRODUCTION'|'BETA'|'DEVELOPMENT'|'EXPERIMENTAL',
'displayName': 'string',
'enableNotification': True|False,
'createTime': datetime(2015, 1, 1),
'updateTime': datetime(2015, 1, 1),
'environmentVariables': {
'string': 'string'
},
'enableAutoBuild': True|False,
'customDomains': [
'string',
],
'framework': 'string',
'activeJobId': 'string',
'totalNumberOfJobs': 'string',
'enableBasicAuth': True|False,
'thumbnailUrl': 'string',
'basicAuthCredentials': 'string',
'buildSpec': 'string',
'ttl': 'string'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
Result structure for list branches request.
branches (list) --
List of branches for an Amplify App.
(dict) --
Branch for an Amplify App, which maps to a 3rd party repository branch.
branchArn (string) --
ARN for a branch, part of an Amplify App.
branchName (string) --
Name for a branch, part of an Amplify App.
description (string) --
Description for a branch, part of an Amplify App.
tags (dict) --
Tag for branch for Amplify App.
stage (string) --
Stage for a branch, part of an Amplify App.
displayName (string) --
Display name for a branch, part of an Amplify App.
enableNotification (boolean) --
Enables notifications for a branch, part of an Amplify App.
createTime (datetime) --
Creation date and time for a branch, part of an Amplify App.
updateTime (datetime) --
Last updated date and time for a branch, part of an Amplify App.
environmentVariables (dict) --
Environment Variables specific to a branch, part of an Amplify App.
enableAutoBuild (boolean) --
Enables auto-building on push for a branch, part of an Amplify App.
customDomains (list) --
Custom domains for a branch, part of an Amplify App.
framework (string) --
Framework for a branch, part of an Amplify App.
activeJobId (string) --
Id of the active job for a branch, part of an Amplify App.
totalNumberOfJobs (string) --
Total number of Jobs part of an Amplify App.
enableBasicAuth (boolean) --
Enables Basic Authorization for a branch, part of an Amplify App.
thumbnailUrl (string) --
Thumbnail Url for the branch.
basicAuthCredentials (string) --
Basic Authorization credentials for a branch, part of an Amplify App.
buildSpec (string) --
BuildSpec content for branch for Amplify App.
ttl (string) --
The content TTL for the website in seconds.
NextToken (string) --
A token to resume pagination.
paginator = client.get_paginator('list_domain_associations')
Creates an iterator that will paginate through responses from Amplify.Client.list_domain_associations().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
appId='string',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
[REQUIRED]
Unique Id for an Amplify App.
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken from a previous response.
dict
Response Syntax
{
'domainAssociations': [
{
'domainAssociationArn': 'string',
'domainName': 'string',
'enableAutoSubDomain': True|False,
'domainStatus': 'PENDING_VERIFICATION'|'IN_PROGRESS'|'AVAILABLE'|'PENDING_DEPLOYMENT'|'FAILED',
'statusReason': 'string',
'certificateVerificationDNSRecord': 'string',
'subDomains': [
{
'subDomainSetting': {
'prefix': 'string',
'branchName': 'string'
},
'verified': True|False,
'dnsRecord': 'string'
},
]
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
Result structure for the list Domain Association request.
domainAssociations (list) --
List of Domain Associations.
(dict) --
Structure for Domain Association, which associates a custom domain with an Amplify App.
domainAssociationArn (string) --
ARN for the Domain Association.
domainName (string) --
Name of the domain.
enableAutoSubDomain (boolean) --
Enables automated creation of Subdomains for branches.
domainStatus (string) --
Status fo the Domain Association.
statusReason (string) --
Reason for the current status of the Domain Association.
certificateVerificationDNSRecord (string) --
DNS Record for certificate verification.
subDomains (list) --
Subdomains for the Domain Association.
(dict) --
Subdomain for the Domain Association.
subDomainSetting (dict) --
Setting structure for the Subdomain.
prefix (string) --
Prefix setting for the Subdomain.
branchName (string) --
Branch name setting for the Subdomain.
verified (boolean) --
Verified status of the Subdomain
dnsRecord (string) --
DNS record for the Subdomain.
NextToken (string) --
A token to resume pagination.
paginator = client.get_paginator('list_jobs')
Creates an iterator that will paginate through responses from Amplify.Client.list_jobs().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
appId='string',
branchName='string',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
[REQUIRED]
Unique Id for an Amplify App.
[REQUIRED]
Name for a branch.
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken from a previous response.
dict
Response Syntax
{
'jobSummaries': [
{
'jobArn': 'string',
'jobId': 'string',
'commitId': 'string',
'commitMessage': 'string',
'commitTime': datetime(2015, 1, 1),
'startTime': datetime(2015, 1, 1),
'status': 'PENDING'|'PROVISIONING'|'RUNNING'|'FAILED'|'SUCCEED'|'CANCELLING'|'CANCELLED',
'endTime': datetime(2015, 1, 1),
'jobType': 'RELEASE'|'RETRY'|'WEB_HOOK'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
Maximum number of records to list in a single response.
jobSummaries (list) --
Result structure for list job result request.
(dict) --
Structure for the summary of a Job.
jobArn (string) --
Arn for the Job.
jobId (string) --
Unique Id for the Job.
commitId (string) --
Commit Id from 3rd party repository provider for the Job.
commitMessage (string) --
Commit message from 3rd party repository provider for the Job.
commitTime (datetime) --
Commit date / time for the Job.
startTime (datetime) --
Start date / time for the Job.
status (string) --
Status for the Job.
endTime (datetime) --
End date / time for the Job.
jobType (string) --
Type for the Job.
NextToken (string) --
A token to resume pagination.