Amazon Mainframe Modernization · Schema
CreateApplicationRequest
CreateApplicationRequest schema from AWS Mainframe Modernization API
COBOLMainframeMigrationModernizationBatch Processing
Properties
| Name | Type | Description |
|---|---|---|
| clientToken | object | |
| definition | object | |
| description | object | |
| engineType | object | |
| kmsKeyId | object | |
| name | object | |
| roleArn | object | |
| tags | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mainframe-modernization/refs/heads/main/json-schema/amazon-mainframe-modernization-create-application-request-schema.json",
"title": "CreateApplicationRequest",
"description": "CreateApplicationRequest schema from AWS Mainframe Modernization API",
"type": "object",
"properties": {
"clientToken": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "Unique, case-sensitive identifier the service generates to ensure the idempotency of the request to create an application. The service generates the clientToken when the API call is triggered. The token expires after one hour, so if you retry the API within this timeframe with the same clientToken, you will get the same response. The service also handles deleting the clientToken after it expires. "
}
]
},
"definition": {
"allOf": [
{
"$ref": "#/components/schemas/Definition"
},
{
"description": "The application definition for this application. You can specify either inline JSON or an S3 bucket location."
}
]
},
"description": {
"allOf": [
{
"$ref": "#/components/schemas/EntityDescription"
},
{
"description": "The description of the application."
}
]
},
"engineType": {
"allOf": [
{
"$ref": "#/components/schemas/EngineType"
},
{
"description": "The type of the target platform for this application."
}
]
},
"kmsKeyId": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The identifier of a customer managed key."
}
]
},
"name": {
"allOf": [
{
"$ref": "#/components/schemas/EntityName"
},
{
"description": "The unique identifier of the application."
}
]
},
"roleArn": {
"allOf": [
{
"$ref": "#/components/schemas/Arn"
},
{
"description": "The Amazon Resource Name (ARN) that identifies a role that the application uses to access Amazon Web Services resources that are not part of the application or are in a different Amazon Web Services account."
}
]
},
"tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagMap"
},
{
"description": "A list of tags to apply to the application."
}
]
}
},
"required": [
"definition",
"engineType",
"name"
]
}