Table: codedeploy_application
Table to manage AWS CodeDeploy application entities. An application is simply a name or container used by CodeDeploy to ensure that the correct revision, deployment configuration, and deployment group are referenced during a deployment.
Example
INSERT INTO codedeploy_application (name, compute_platform) VALUES ('application-name', 'Server');
SELECT * FROM codedeploy_application WHERE name='application-name';
DELETE FROM codedeploy_application WHERE name = 'application-name';
See
- https://github.com/iasql/iasql/blob/main/test/modules/aws-codedeploy-integration.ts#L289
- https://docs.aws.amazon.com/codedeploy/latest/userguide/applications-create.html
Columns
• Optional
application_id: string
AWS generated ID for the application
• compute_platform: compute_platform
Compute platform where the application will run
• Optional
deployment_groups: codedeploy_deployment_group
[]
Deployment groups attached to this specific application
See
https://docs.aws.amazon.com/codedeploy/latest/userguide/deployment-groups.html
• name: string
Name for the Codedeploy application
• region: string
Region for the Codedeploy application