UNPKG

57.2 kBTypeScriptView Raw
1import {Request} from '../lib/request';
2import {Response} from '../lib/response';
3import {AWSError} from '../lib/error';
4import {Service} from '../lib/service';
5import {WaiterConfiguration} from '../lib/service';
6import {ServiceConfigurationOptions} from '../lib/service';
7import {ConfigBase as Config} from '../lib/config';
8interface Blob {}
9declare class OpsWorksCM extends Service {
10 /**
11 * Constructs a service object. This object has one method for each API operation.
12 */
13 constructor(options?: OpsWorksCM.Types.ClientConfiguration)
14 config: Config & OpsWorksCM.Types.ClientConfiguration;
15 /**
16 * Associates a new node with the server. For more information about how to disassociate a node, see DisassociateNode. On a Chef server: This command is an alternative to knife bootstrap. Example (Chef): aws opsworks-cm associate-node --server-name MyServer --node-name MyManagedNode --engine-attributes "Name=CHEF_ORGANIZATION,Value=default" "Name=CHEF_NODE_PUBLIC_KEY,Value=public-key-pem" On a Puppet server, this command is an alternative to the puppet cert sign command that signs a Puppet node CSR. Example (Chef): aws opsworks-cm associate-node --server-name MyServer --node-name MyManagedNode --engine-attributes "Name=PUPPET_NODE_CSR,Value=csr-pem" A node can can only be associated with servers that are in a HEALTHY state. Otherwise, an InvalidStateException is thrown. A ResourceNotFoundException is thrown when the server does not exist. A ValidationException is raised when parameters of the request are not valid. The AssociateNode API call can be integrated into Auto Scaling configurations, AWS Cloudformation templates, or the user data of a server's instance.
17 */
18 associateNode(params: OpsWorksCM.Types.AssociateNodeRequest, callback?: (err: AWSError, data: OpsWorksCM.Types.AssociateNodeResponse) => void): Request<OpsWorksCM.Types.AssociateNodeResponse, AWSError>;
19 /**
20 * Associates a new node with the server. For more information about how to disassociate a node, see DisassociateNode. On a Chef server: This command is an alternative to knife bootstrap. Example (Chef): aws opsworks-cm associate-node --server-name MyServer --node-name MyManagedNode --engine-attributes "Name=CHEF_ORGANIZATION,Value=default" "Name=CHEF_NODE_PUBLIC_KEY,Value=public-key-pem" On a Puppet server, this command is an alternative to the puppet cert sign command that signs a Puppet node CSR. Example (Chef): aws opsworks-cm associate-node --server-name MyServer --node-name MyManagedNode --engine-attributes "Name=PUPPET_NODE_CSR,Value=csr-pem" A node can can only be associated with servers that are in a HEALTHY state. Otherwise, an InvalidStateException is thrown. A ResourceNotFoundException is thrown when the server does not exist. A ValidationException is raised when parameters of the request are not valid. The AssociateNode API call can be integrated into Auto Scaling configurations, AWS Cloudformation templates, or the user data of a server's instance.
21 */
22 associateNode(callback?: (err: AWSError, data: OpsWorksCM.Types.AssociateNodeResponse) => void): Request<OpsWorksCM.Types.AssociateNodeResponse, AWSError>;
23 /**
24 * Creates an application-level backup of a server. While the server is in the BACKING_UP state, the server cannot be changed, and no additional backup can be created. Backups can be created for servers in RUNNING, HEALTHY, and UNHEALTHY states. By default, you can create a maximum of 50 manual backups. This operation is asynchronous. A LimitExceededException is thrown when the maximum number of manual backups is reached. An InvalidStateException is thrown when the server is not in any of the following states: RUNNING, HEALTHY, or UNHEALTHY. A ResourceNotFoundException is thrown when the server is not found. A ValidationException is thrown when parameters of the request are not valid.
25 */
26 createBackup(params: OpsWorksCM.Types.CreateBackupRequest, callback?: (err: AWSError, data: OpsWorksCM.Types.CreateBackupResponse) => void): Request<OpsWorksCM.Types.CreateBackupResponse, AWSError>;
27 /**
28 * Creates an application-level backup of a server. While the server is in the BACKING_UP state, the server cannot be changed, and no additional backup can be created. Backups can be created for servers in RUNNING, HEALTHY, and UNHEALTHY states. By default, you can create a maximum of 50 manual backups. This operation is asynchronous. A LimitExceededException is thrown when the maximum number of manual backups is reached. An InvalidStateException is thrown when the server is not in any of the following states: RUNNING, HEALTHY, or UNHEALTHY. A ResourceNotFoundException is thrown when the server is not found. A ValidationException is thrown when parameters of the request are not valid.
29 */
30 createBackup(callback?: (err: AWSError, data: OpsWorksCM.Types.CreateBackupResponse) => void): Request<OpsWorksCM.Types.CreateBackupResponse, AWSError>;
31 /**
32 * Creates and immedately starts a new server. The server is ready to use when it is in the HEALTHY state. By default, you can create a maximum of 10 servers. This operation is asynchronous. A LimitExceededException is thrown when you have created the maximum number of servers (10). A ResourceAlreadyExistsException is thrown when a server with the same name already exists in the account. A ResourceNotFoundException is thrown when you specify a backup ID that is not valid or is for a backup that does not exist. A ValidationException is thrown when parameters of the request are not valid. If you do not specify a security group by adding the SecurityGroupIds parameter, AWS OpsWorks creates a new security group. Chef Automate: The default security group opens the Chef server to the world on TCP port 443. If a KeyName is present, AWS OpsWorks enables SSH access. SSH is also open to the world on TCP port 22. Puppet Enterprise: The default security group opens TCP ports 22, 443, 4433, 8140, 8142, 8143, and 8170. If a KeyName is present, AWS OpsWorks enables SSH access. SSH is also open to the world on TCP port 22. By default, your server is accessible from any IP address. We recommend that you update your security group rules to allow access from known IP addresses and address ranges only. To edit security group rules, open Security Groups in the navigation pane of the EC2 management console. To specify your own domain for a server, and provide your own self-signed or CA-signed certificate and private key, specify values for CustomDomain, CustomCertificate, and CustomPrivateKey.
33 */
34 createServer(params: OpsWorksCM.Types.CreateServerRequest, callback?: (err: AWSError, data: OpsWorksCM.Types.CreateServerResponse) => void): Request<OpsWorksCM.Types.CreateServerResponse, AWSError>;
35 /**
36 * Creates and immedately starts a new server. The server is ready to use when it is in the HEALTHY state. By default, you can create a maximum of 10 servers. This operation is asynchronous. A LimitExceededException is thrown when you have created the maximum number of servers (10). A ResourceAlreadyExistsException is thrown when a server with the same name already exists in the account. A ResourceNotFoundException is thrown when you specify a backup ID that is not valid or is for a backup that does not exist. A ValidationException is thrown when parameters of the request are not valid. If you do not specify a security group by adding the SecurityGroupIds parameter, AWS OpsWorks creates a new security group. Chef Automate: The default security group opens the Chef server to the world on TCP port 443. If a KeyName is present, AWS OpsWorks enables SSH access. SSH is also open to the world on TCP port 22. Puppet Enterprise: The default security group opens TCP ports 22, 443, 4433, 8140, 8142, 8143, and 8170. If a KeyName is present, AWS OpsWorks enables SSH access. SSH is also open to the world on TCP port 22. By default, your server is accessible from any IP address. We recommend that you update your security group rules to allow access from known IP addresses and address ranges only. To edit security group rules, open Security Groups in the navigation pane of the EC2 management console. To specify your own domain for a server, and provide your own self-signed or CA-signed certificate and private key, specify values for CustomDomain, CustomCertificate, and CustomPrivateKey.
37 */
38 createServer(callback?: (err: AWSError, data: OpsWorksCM.Types.CreateServerResponse) => void): Request<OpsWorksCM.Types.CreateServerResponse, AWSError>;
39 /**
40 * Deletes a backup. You can delete both manual and automated backups. This operation is asynchronous. An InvalidStateException is thrown when a backup deletion is already in progress. A ResourceNotFoundException is thrown when the backup does not exist. A ValidationException is thrown when parameters of the request are not valid.
41 */
42 deleteBackup(params: OpsWorksCM.Types.DeleteBackupRequest, callback?: (err: AWSError, data: OpsWorksCM.Types.DeleteBackupResponse) => void): Request<OpsWorksCM.Types.DeleteBackupResponse, AWSError>;
43 /**
44 * Deletes a backup. You can delete both manual and automated backups. This operation is asynchronous. An InvalidStateException is thrown when a backup deletion is already in progress. A ResourceNotFoundException is thrown when the backup does not exist. A ValidationException is thrown when parameters of the request are not valid.
45 */
46 deleteBackup(callback?: (err: AWSError, data: OpsWorksCM.Types.DeleteBackupResponse) => void): Request<OpsWorksCM.Types.DeleteBackupResponse, AWSError>;
47 /**
48 * Deletes the server and the underlying AWS CloudFormation stacks (including the server's EC2 instance). When you run this command, the server state is updated to DELETING. After the server is deleted, it is no longer returned by DescribeServer requests. If the AWS CloudFormation stack cannot be deleted, the server cannot be deleted. This operation is asynchronous. An InvalidStateException is thrown when a server deletion is already in progress. A ResourceNotFoundException is thrown when the server does not exist. A ValidationException is raised when parameters of the request are not valid.
49 */
50 deleteServer(params: OpsWorksCM.Types.DeleteServerRequest, callback?: (err: AWSError, data: OpsWorksCM.Types.DeleteServerResponse) => void): Request<OpsWorksCM.Types.DeleteServerResponse, AWSError>;
51 /**
52 * Deletes the server and the underlying AWS CloudFormation stacks (including the server's EC2 instance). When you run this command, the server state is updated to DELETING. After the server is deleted, it is no longer returned by DescribeServer requests. If the AWS CloudFormation stack cannot be deleted, the server cannot be deleted. This operation is asynchronous. An InvalidStateException is thrown when a server deletion is already in progress. A ResourceNotFoundException is thrown when the server does not exist. A ValidationException is raised when parameters of the request are not valid.
53 */
54 deleteServer(callback?: (err: AWSError, data: OpsWorksCM.Types.DeleteServerResponse) => void): Request<OpsWorksCM.Types.DeleteServerResponse, AWSError>;
55 /**
56 * Describes your OpsWorks-CM account attributes. This operation is synchronous.
57 */
58 describeAccountAttributes(params: OpsWorksCM.Types.DescribeAccountAttributesRequest, callback?: (err: AWSError, data: OpsWorksCM.Types.DescribeAccountAttributesResponse) => void): Request<OpsWorksCM.Types.DescribeAccountAttributesResponse, AWSError>;
59 /**
60 * Describes your OpsWorks-CM account attributes. This operation is synchronous.
61 */
62 describeAccountAttributes(callback?: (err: AWSError, data: OpsWorksCM.Types.DescribeAccountAttributesResponse) => void): Request<OpsWorksCM.Types.DescribeAccountAttributesResponse, AWSError>;
63 /**
64 * Describes backups. The results are ordered by time, with newest backups first. If you do not specify a BackupId or ServerName, the command returns all backups. This operation is synchronous. A ResourceNotFoundException is thrown when the backup does not exist. A ValidationException is raised when parameters of the request are not valid.
65 */
66 describeBackups(params: OpsWorksCM.Types.DescribeBackupsRequest, callback?: (err: AWSError, data: OpsWorksCM.Types.DescribeBackupsResponse) => void): Request<OpsWorksCM.Types.DescribeBackupsResponse, AWSError>;
67 /**
68 * Describes backups. The results are ordered by time, with newest backups first. If you do not specify a BackupId or ServerName, the command returns all backups. This operation is synchronous. A ResourceNotFoundException is thrown when the backup does not exist. A ValidationException is raised when parameters of the request are not valid.
69 */
70 describeBackups(callback?: (err: AWSError, data: OpsWorksCM.Types.DescribeBackupsResponse) => void): Request<OpsWorksCM.Types.DescribeBackupsResponse, AWSError>;
71 /**
72 * Describes events for a specified server. Results are ordered by time, with newest events first. This operation is synchronous. A ResourceNotFoundException is thrown when the server does not exist. A ValidationException is raised when parameters of the request are not valid.
73 */
74 describeEvents(params: OpsWorksCM.Types.DescribeEventsRequest, callback?: (err: AWSError, data: OpsWorksCM.Types.DescribeEventsResponse) => void): Request<OpsWorksCM.Types.DescribeEventsResponse, AWSError>;
75 /**
76 * Describes events for a specified server. Results are ordered by time, with newest events first. This operation is synchronous. A ResourceNotFoundException is thrown when the server does not exist. A ValidationException is raised when parameters of the request are not valid.
77 */
78 describeEvents(callback?: (err: AWSError, data: OpsWorksCM.Types.DescribeEventsResponse) => void): Request<OpsWorksCM.Types.DescribeEventsResponse, AWSError>;
79 /**
80 * Returns the current status of an existing association or disassociation request. A ResourceNotFoundException is thrown when no recent association or disassociation request with the specified token is found, or when the server does not exist. A ValidationException is raised when parameters of the request are not valid.
81 */
82 describeNodeAssociationStatus(params: OpsWorksCM.Types.DescribeNodeAssociationStatusRequest, callback?: (err: AWSError, data: OpsWorksCM.Types.DescribeNodeAssociationStatusResponse) => void): Request<OpsWorksCM.Types.DescribeNodeAssociationStatusResponse, AWSError>;
83 /**
84 * Returns the current status of an existing association or disassociation request. A ResourceNotFoundException is thrown when no recent association or disassociation request with the specified token is found, or when the server does not exist. A ValidationException is raised when parameters of the request are not valid.
85 */
86 describeNodeAssociationStatus(callback?: (err: AWSError, data: OpsWorksCM.Types.DescribeNodeAssociationStatusResponse) => void): Request<OpsWorksCM.Types.DescribeNodeAssociationStatusResponse, AWSError>;
87 /**
88 * Lists all configuration management servers that are identified with your account. Only the stored results from Amazon DynamoDB are returned. AWS OpsWorks CM does not query other services. This operation is synchronous. A ResourceNotFoundException is thrown when the server does not exist. A ValidationException is raised when parameters of the request are not valid.
89 */
90 describeServers(params: OpsWorksCM.Types.DescribeServersRequest, callback?: (err: AWSError, data: OpsWorksCM.Types.DescribeServersResponse) => void): Request<OpsWorksCM.Types.DescribeServersResponse, AWSError>;
91 /**
92 * Lists all configuration management servers that are identified with your account. Only the stored results from Amazon DynamoDB are returned. AWS OpsWorks CM does not query other services. This operation is synchronous. A ResourceNotFoundException is thrown when the server does not exist. A ValidationException is raised when parameters of the request are not valid.
93 */
94 describeServers(callback?: (err: AWSError, data: OpsWorksCM.Types.DescribeServersResponse) => void): Request<OpsWorksCM.Types.DescribeServersResponse, AWSError>;
95 /**
96 * Disassociates a node from an AWS OpsWorks CM server, and removes the node from the server's managed nodes. After a node is disassociated, the node key pair is no longer valid for accessing the configuration manager's API. For more information about how to associate a node, see AssociateNode. A node can can only be disassociated from a server that is in a HEALTHY state. Otherwise, an InvalidStateException is thrown. A ResourceNotFoundException is thrown when the server does not exist. A ValidationException is raised when parameters of the request are not valid.
97 */
98 disassociateNode(params: OpsWorksCM.Types.DisassociateNodeRequest, callback?: (err: AWSError, data: OpsWorksCM.Types.DisassociateNodeResponse) => void): Request<OpsWorksCM.Types.DisassociateNodeResponse, AWSError>;
99 /**
100 * Disassociates a node from an AWS OpsWorks CM server, and removes the node from the server's managed nodes. After a node is disassociated, the node key pair is no longer valid for accessing the configuration manager's API. For more information about how to associate a node, see AssociateNode. A node can can only be disassociated from a server that is in a HEALTHY state. Otherwise, an InvalidStateException is thrown. A ResourceNotFoundException is thrown when the server does not exist. A ValidationException is raised when parameters of the request are not valid.
101 */
102 disassociateNode(callback?: (err: AWSError, data: OpsWorksCM.Types.DisassociateNodeResponse) => void): Request<OpsWorksCM.Types.DisassociateNodeResponse, AWSError>;
103 /**
104 * Exports a specified server engine attribute as a base64-encoded string. For example, you can export user data that you can use in EC2 to associate nodes with a server. This operation is synchronous. A ValidationException is raised when parameters of the request are not valid. A ResourceNotFoundException is thrown when the server does not exist. An InvalidStateException is thrown when the server is in any of the following states: CREATING, TERMINATED, FAILED or DELETING.
105 */
106 exportServerEngineAttribute(params: OpsWorksCM.Types.ExportServerEngineAttributeRequest, callback?: (err: AWSError, data: OpsWorksCM.Types.ExportServerEngineAttributeResponse) => void): Request<OpsWorksCM.Types.ExportServerEngineAttributeResponse, AWSError>;
107 /**
108 * Exports a specified server engine attribute as a base64-encoded string. For example, you can export user data that you can use in EC2 to associate nodes with a server. This operation is synchronous. A ValidationException is raised when parameters of the request are not valid. A ResourceNotFoundException is thrown when the server does not exist. An InvalidStateException is thrown when the server is in any of the following states: CREATING, TERMINATED, FAILED or DELETING.
109 */
110 exportServerEngineAttribute(callback?: (err: AWSError, data: OpsWorksCM.Types.ExportServerEngineAttributeResponse) => void): Request<OpsWorksCM.Types.ExportServerEngineAttributeResponse, AWSError>;
111 /**
112 * Restores a backup to a server that is in a CONNECTION_LOST, HEALTHY, RUNNING, UNHEALTHY, or TERMINATED state. When you run RestoreServer, the server's EC2 instance is deleted, and a new EC2 instance is configured. RestoreServer maintains the existing server endpoint, so configuration management of the server's client devices (nodes) should continue to work. This operation is asynchronous. An InvalidStateException is thrown when the server is not in a valid state. A ResourceNotFoundException is thrown when the server does not exist. A ValidationException is raised when parameters of the request are not valid.
113 */
114 restoreServer(params: OpsWorksCM.Types.RestoreServerRequest, callback?: (err: AWSError, data: OpsWorksCM.Types.RestoreServerResponse) => void): Request<OpsWorksCM.Types.RestoreServerResponse, AWSError>;
115 /**
116 * Restores a backup to a server that is in a CONNECTION_LOST, HEALTHY, RUNNING, UNHEALTHY, or TERMINATED state. When you run RestoreServer, the server's EC2 instance is deleted, and a new EC2 instance is configured. RestoreServer maintains the existing server endpoint, so configuration management of the server's client devices (nodes) should continue to work. This operation is asynchronous. An InvalidStateException is thrown when the server is not in a valid state. A ResourceNotFoundException is thrown when the server does not exist. A ValidationException is raised when parameters of the request are not valid.
117 */
118 restoreServer(callback?: (err: AWSError, data: OpsWorksCM.Types.RestoreServerResponse) => void): Request<OpsWorksCM.Types.RestoreServerResponse, AWSError>;
119 /**
120 * Manually starts server maintenance. This command can be useful if an earlier maintenance attempt failed, and the underlying cause of maintenance failure has been resolved. The server is in an UNDER_MAINTENANCE state while maintenance is in progress. Maintenance can only be started on servers in HEALTHY and UNHEALTHY states. Otherwise, an InvalidStateException is thrown. A ResourceNotFoundException is thrown when the server does not exist. A ValidationException is raised when parameters of the request are not valid.
121 */
122 startMaintenance(params: OpsWorksCM.Types.StartMaintenanceRequest, callback?: (err: AWSError, data: OpsWorksCM.Types.StartMaintenanceResponse) => void): Request<OpsWorksCM.Types.StartMaintenanceResponse, AWSError>;
123 /**
124 * Manually starts server maintenance. This command can be useful if an earlier maintenance attempt failed, and the underlying cause of maintenance failure has been resolved. The server is in an UNDER_MAINTENANCE state while maintenance is in progress. Maintenance can only be started on servers in HEALTHY and UNHEALTHY states. Otherwise, an InvalidStateException is thrown. A ResourceNotFoundException is thrown when the server does not exist. A ValidationException is raised when parameters of the request are not valid.
125 */
126 startMaintenance(callback?: (err: AWSError, data: OpsWorksCM.Types.StartMaintenanceResponse) => void): Request<OpsWorksCM.Types.StartMaintenanceResponse, AWSError>;
127 /**
128 * Updates settings for a server. This operation is synchronous.
129 */
130 updateServer(params: OpsWorksCM.Types.UpdateServerRequest, callback?: (err: AWSError, data: OpsWorksCM.Types.UpdateServerResponse) => void): Request<OpsWorksCM.Types.UpdateServerResponse, AWSError>;
131 /**
132 * Updates settings for a server. This operation is synchronous.
133 */
134 updateServer(callback?: (err: AWSError, data: OpsWorksCM.Types.UpdateServerResponse) => void): Request<OpsWorksCM.Types.UpdateServerResponse, AWSError>;
135 /**
136 * Updates engine-specific attributes on a specified server. The server enters the MODIFYING state when this operation is in progress. Only one update can occur at a time. You can use this command to reset a Chef server's public key (CHEF_PIVOTAL_KEY) or a Puppet server's admin password (PUPPET_ADMIN_PASSWORD). This operation is asynchronous. This operation can only be called for servers in HEALTHY or UNHEALTHY states. Otherwise, an InvalidStateException is raised. A ResourceNotFoundException is thrown when the server does not exist. A ValidationException is raised when parameters of the request are not valid.
137 */
138 updateServerEngineAttributes(params: OpsWorksCM.Types.UpdateServerEngineAttributesRequest, callback?: (err: AWSError, data: OpsWorksCM.Types.UpdateServerEngineAttributesResponse) => void): Request<OpsWorksCM.Types.UpdateServerEngineAttributesResponse, AWSError>;
139 /**
140 * Updates engine-specific attributes on a specified server. The server enters the MODIFYING state when this operation is in progress. Only one update can occur at a time. You can use this command to reset a Chef server's public key (CHEF_PIVOTAL_KEY) or a Puppet server's admin password (PUPPET_ADMIN_PASSWORD). This operation is asynchronous. This operation can only be called for servers in HEALTHY or UNHEALTHY states. Otherwise, an InvalidStateException is raised. A ResourceNotFoundException is thrown when the server does not exist. A ValidationException is raised when parameters of the request are not valid.
141 */
142 updateServerEngineAttributes(callback?: (err: AWSError, data: OpsWorksCM.Types.UpdateServerEngineAttributesResponse) => void): Request<OpsWorksCM.Types.UpdateServerEngineAttributesResponse, AWSError>;
143 /**
144 * Waits for the nodeAssociated state by periodically calling the underlying OpsWorksCM.describeNodeAssociationStatusoperation every 15 seconds (at most 15 times). Wait until node is associated or disassociated.
145 */
146 waitFor(state: "nodeAssociated", params: OpsWorksCM.Types.DescribeNodeAssociationStatusRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: OpsWorksCM.Types.DescribeNodeAssociationStatusResponse) => void): Request<OpsWorksCM.Types.DescribeNodeAssociationStatusResponse, AWSError>;
147 /**
148 * Waits for the nodeAssociated state by periodically calling the underlying OpsWorksCM.describeNodeAssociationStatusoperation every 15 seconds (at most 15 times). Wait until node is associated or disassociated.
149 */
150 waitFor(state: "nodeAssociated", callback?: (err: AWSError, data: OpsWorksCM.Types.DescribeNodeAssociationStatusResponse) => void): Request<OpsWorksCM.Types.DescribeNodeAssociationStatusResponse, AWSError>;
151}
152declare namespace OpsWorksCM {
153 export interface AccountAttribute {
154 /**
155 * The attribute name. The following are supported attribute names. ServerLimit: The number of current servers/maximum number of servers allowed. By default, you can have a maximum of 10 servers. ManualBackupLimit: The number of current manual backups/maximum number of backups allowed. By default, you can have a maximum of 50 manual backups saved.
156 */
157 Name?: String;
158 /**
159 * The maximum allowed value.
160 */
161 Maximum?: Integer;
162 /**
163 * The current usage, such as the current number of servers that are associated with the account.
164 */
165 Used?: Integer;
166 }
167 export type AccountAttributes = AccountAttribute[];
168 export interface AssociateNodeRequest {
169 /**
170 * The name of the server with which to associate the node.
171 */
172 ServerName: ServerName;
173 /**
174 * The name of the node.
175 */
176 NodeName: NodeName;
177 /**
178 * Engine attributes used for associating the node. Attributes accepted in a AssociateNode request for Chef CHEF_ORGANIZATION: The Chef organization with which the node is associated. By default only one organization named default can exist. CHEF_NODE_PUBLIC_KEY: A PEM-formatted public key. This key is required for the chef-client agent to access the Chef API. Attributes accepted in a AssociateNode request for Puppet PUPPET_NODE_CSR: A PEM-formatted certificate-signing request (CSR) that is created by the node.
179 */
180 EngineAttributes: EngineAttributes;
181 }
182 export interface AssociateNodeResponse {
183 /**
184 * Contains a token which can be passed to the DescribeNodeAssociationStatus API call to get the status of the association request.
185 */
186 NodeAssociationStatusToken?: NodeAssociationStatusToken;
187 }
188 export type AttributeName = string;
189 export type AttributeValue = string;
190 export interface Backup {
191 /**
192 * The ARN of the backup.
193 */
194 BackupArn?: String;
195 /**
196 * The generated ID of the backup. Example: myServerName-yyyyMMddHHmmssSSS
197 */
198 BackupId?: BackupId;
199 /**
200 * The backup type. Valid values are automated or manual.
201 */
202 BackupType?: BackupType;
203 /**
204 * The time stamp when the backup was created in the database. Example: 2016-07-29T13:38:47.520Z
205 */
206 CreatedAt?: Timestamp;
207 /**
208 * A user-provided description for a manual backup. This field is empty for automated backups.
209 */
210 Description?: String;
211 /**
212 * The engine type that is obtained from the server when the backup is created.
213 */
214 Engine?: String;
215 /**
216 * The engine model that is obtained from the server when the backup is created.
217 */
218 EngineModel?: String;
219 /**
220 * The engine version that is obtained from the server when the backup is created.
221 */
222 EngineVersion?: String;
223 /**
224 * The EC2 instance profile ARN that is obtained from the server when the backup is created. Because this value is stored, you are not required to provide the InstanceProfileArn again if you restore a backup.
225 */
226 InstanceProfileArn?: String;
227 /**
228 * The instance type that is obtained from the server when the backup is created.
229 */
230 InstanceType?: String;
231 /**
232 * The key pair that is obtained from the server when the backup is created.
233 */
234 KeyPair?: String;
235 /**
236 * The preferred backup period that is obtained from the server when the backup is created.
237 */
238 PreferredBackupWindow?: TimeWindowDefinition;
239 /**
240 * The preferred maintenance period that is obtained from the server when the backup is created.
241 */
242 PreferredMaintenanceWindow?: TimeWindowDefinition;
243 /**
244 * This field is deprecated and is no longer used.
245 */
246 S3DataSize?: Integer;
247 /**
248 * This field is deprecated and is no longer used.
249 */
250 S3DataUrl?: String;
251 /**
252 * The Amazon S3 URL of the backup's log file.
253 */
254 S3LogUrl?: String;
255 /**
256 * The security group IDs that are obtained from the server when the backup is created.
257 */
258 SecurityGroupIds?: Strings;
259 /**
260 * The name of the server from which the backup was made.
261 */
262 ServerName?: ServerName;
263 /**
264 * The service role ARN that is obtained from the server when the backup is created.
265 */
266 ServiceRoleArn?: String;
267 /**
268 * The status of a backup while in progress.
269 */
270 Status?: BackupStatus;
271 /**
272 * An informational message about backup status.
273 */
274 StatusDescription?: String;
275 /**
276 * The subnet IDs that are obtained from the server when the backup is created.
277 */
278 SubnetIds?: Strings;
279 /**
280 * The version of AWS OpsWorks CM-specific tools that is obtained from the server when the backup is created.
281 */
282 ToolsVersion?: String;
283 /**
284 * The IAM user ARN of the requester for manual backups. This field is empty for automated backups.
285 */
286 UserArn?: String;
287 }
288 export type BackupId = string;
289 export type BackupRetentionCountDefinition = number;
290 export type BackupStatus = "IN_PROGRESS"|"OK"|"FAILED"|"DELETING"|string;
291 export type BackupType = "AUTOMATED"|"MANUAL"|string;
292 export type Backups = Backup[];
293 export type Boolean = boolean;
294 export interface CreateBackupRequest {
295 /**
296 * The name of the server that you want to back up.
297 */
298 ServerName: ServerName;
299 /**
300 * A user-defined description of the backup.
301 */
302 Description?: String;
303 }
304 export interface CreateBackupResponse {
305 /**
306 * Backup created by request.
307 */
308 Backup?: Backup;
309 }
310 export interface CreateServerRequest {
311 /**
312 * Associate a public IP address with a server that you are launching. Valid values are true or false. The default value is true.
313 */
314 AssociatePublicIpAddress?: Boolean;
315 /**
316 * An optional public endpoint of a server, such as https://aws.my-company.com. To access the server, create a CNAME DNS record in your preferred DNS service that points the custom domain to the endpoint that is generated when the server is created (the value of the CreateServer Endpoint attribute). You cannot access the server by using the generated Endpoint value if the server is using a custom domain. If you specify a custom domain, you must also specify values for CustomCertificate and CustomPrivateKey.
317 */
318 CustomDomain?: CustomDomain;
319 /**
320 * A PEM-formatted HTTPS certificate. The value can be be a single, self-signed certificate, or a certificate chain. If you specify a custom certificate, you must also specify values for CustomDomain and CustomPrivateKey. The following are requirements for the CustomCertificate value: You can provide either a self-signed, custom certificate, or the full certificate chain. The certificate must be a valid X509 certificate, or a certificate chain in PEM format. The certificate must be valid at the time of upload. A certificate can't be used before its validity period begins (the certificate's NotBefore date), or after it expires (the certificate's NotAfter date). The certificate’s common name or subject alternative names (SANs), if present, must match the value of CustomDomain. The certificate must match the value of CustomPrivateKey.
321 */
322 CustomCertificate?: CustomCertificate;
323 /**
324 * A private key in PEM format for connecting to the server by using HTTPS. The private key must not be encrypted; it cannot be protected by a password or passphrase. If you specify a custom private key, you must also specify values for CustomDomain and CustomCertificate.
325 */
326 CustomPrivateKey?: CustomPrivateKey;
327 /**
328 * Enable or disable scheduled backups. Valid values are true or false. The default value is true.
329 */
330 DisableAutomatedBackup?: Boolean;
331 /**
332 * The configuration management engine to use. Valid values include ChefAutomate and Puppet.
333 */
334 Engine?: String;
335 /**
336 * The engine model of the server. Valid values in this release include Monolithic for Puppet and Single for Chef.
337 */
338 EngineModel?: String;
339 /**
340 * The major release version of the engine that you want to use. For a Chef server, the valid value for EngineVersion is currently 12. For a Puppet server, the valid value is 2017.
341 */
342 EngineVersion?: String;
343 /**
344 * Optional engine attributes on a specified server. Attributes accepted in a Chef createServer request: CHEF_AUTOMATE_PIVOTAL_KEY: A base64-encoded RSA public key. The corresponding private key is required to access the Chef API. When no CHEF_AUTOMATE_PIVOTAL_KEY is set, a private key is generated and returned in the response. CHEF_AUTOMATE_ADMIN_PASSWORD: The password for the administrative user in the Chef Automate web-based dashboard. The password length is a minimum of eight characters, and a maximum of 32. The password can contain letters, numbers, and special characters (!/@#$%^&amp;+=_). The password must contain at least one lower case letter, one upper case letter, one number, and one special character. When no CHEF_AUTOMATE_ADMIN_PASSWORD is set, one is generated and returned in the response. Attributes accepted in a Puppet createServer request: PUPPET_ADMIN_PASSWORD: To work with the Puppet Enterprise console, a password must use ASCII characters. PUPPET_R10K_REMOTE: The r10k remote is the URL of your control repository (for example, ssh://git@your.git-repo.com:user/control-repo.git). Specifying an r10k remote opens TCP port 8170. PUPPET_R10K_PRIVATE_KEY: If you are using a private Git repository, add PUPPET_R10K_PRIVATE_KEY to specify a PEM-encoded private SSH key.
345 */
346 EngineAttributes?: EngineAttributes;
347 /**
348 * The number of automated backups that you want to keep. Whenever a new backup is created, AWS OpsWorks CM deletes the oldest backups if this number is exceeded. The default value is 1.
349 */
350 BackupRetentionCount?: BackupRetentionCountDefinition;
351 /**
352 * The name of the server. The server name must be unique within your AWS account, within each region. Server names must start with a letter; then letters, numbers, or hyphens (-) are allowed, up to a maximum of 40 characters.
353 */
354 ServerName: ServerName;
355 /**
356 * The ARN of the instance profile that your Amazon EC2 instances use. Although the AWS OpsWorks console typically creates the instance profile for you, if you are using API commands instead, run the service-role-creation.yaml AWS CloudFormation template, located at https://s3.amazonaws.com/opsworks-cm-us-east-1-prod-default-assets/misc/opsworks-cm-roles.yaml. This template creates a CloudFormation stack that includes the instance profile you need.
357 */
358 InstanceProfileArn: InstanceProfileArn;
359 /**
360 * The Amazon EC2 instance type to use. For example, m5.large.
361 */
362 InstanceType: String;
363 /**
364 * The Amazon EC2 key pair to set for the instance. This parameter is optional; if desired, you may specify this parameter to connect to your instances by using SSH.
365 */
366 KeyPair?: KeyPair;
367 /**
368 * The start time for a one-hour period each week during which AWS OpsWorks CM performs maintenance on the instance. Valid values must be specified in the following format: DDD:HH:MM. The specified time is in coordinated universal time (UTC). The default value is a random one-hour period on Tuesday, Wednesday, or Friday. See TimeWindowDefinition for more information. Example: Mon:08:00, which represents a start time of every Monday at 08:00 UTC. (8:00 a.m.)
369 */
370 PreferredMaintenanceWindow?: TimeWindowDefinition;
371 /**
372 * The start time for a one-hour period during which AWS OpsWorks CM backs up application-level data on your server if automated backups are enabled. Valid values must be specified in one of the following formats: HH:MM for daily backups DDD:HH:MM for weekly backups The specified time is in coordinated universal time (UTC). The default value is a random, daily start time. Example: 08:00, which represents a daily start time of 08:00 UTC. Example: Mon:08:00, which represents a start time of every Monday at 08:00 UTC. (8:00 a.m.)
373 */
374 PreferredBackupWindow?: TimeWindowDefinition;
375 /**
376 * A list of security group IDs to attach to the Amazon EC2 instance. If you add this parameter, the specified security groups must be within the VPC that is specified by SubnetIds. If you do not specify this parameter, AWS OpsWorks CM creates one new security group that uses TCP ports 22 and 443, open to 0.0.0.0/0 (everyone).
377 */
378 SecurityGroupIds?: Strings;
379 /**
380 * The service role that the AWS OpsWorks CM service backend uses to work with your account. Although the AWS OpsWorks management console typically creates the service role for you, if you are using the AWS CLI or API commands, run the service-role-creation.yaml AWS CloudFormation template, located at https://s3.amazonaws.com/opsworks-cm-us-east-1-prod-default-assets/misc/opsworks-cm-roles.yaml. This template creates a CloudFormation stack that includes the service role and instance profile that you need.
381 */
382 ServiceRoleArn: ServiceRoleArn;
383 /**
384 * The IDs of subnets in which to launch the server EC2 instance. Amazon EC2-Classic customers: This field is required. All servers must run within a VPC. The VPC must have "Auto Assign Public IP" enabled. EC2-VPC customers: This field is optional. If you do not specify subnet IDs, your EC2 instances are created in a default subnet that is selected by Amazon EC2. If you specify subnet IDs, the VPC must have "Auto Assign Public IP" enabled. For more information about supported Amazon EC2 platforms, see Supported Platforms.
385 */
386 SubnetIds?: Strings;
387 /**
388 * If you specify this field, AWS OpsWorks CM creates the server by using the backup represented by BackupId.
389 */
390 BackupId?: BackupId;
391 }
392 export interface CreateServerResponse {
393 /**
394 * The server that is created by the request.
395 */
396 Server?: Server;
397 }
398 export type CustomCertificate = string;
399 export type CustomDomain = string;
400 export type CustomPrivateKey = string;
401 export interface DeleteBackupRequest {
402 /**
403 * The ID of the backup to delete. Run the DescribeBackups command to get a list of backup IDs. Backup IDs are in the format ServerName-yyyyMMddHHmmssSSS.
404 */
405 BackupId: BackupId;
406 }
407 export interface DeleteBackupResponse {
408 }
409 export interface DeleteServerRequest {
410 /**
411 * The ID of the server to delete.
412 */
413 ServerName: ServerName;
414 }
415 export interface DeleteServerResponse {
416 }
417 export interface DescribeAccountAttributesRequest {
418 }
419 export interface DescribeAccountAttributesResponse {
420 /**
421 * The attributes that are currently set for the account.
422 */
423 Attributes?: AccountAttributes;
424 }
425 export interface DescribeBackupsRequest {
426 /**
427 * Describes a single backup.
428 */
429 BackupId?: BackupId;
430 /**
431 * Returns backups for the server with the specified ServerName.
432 */
433 ServerName?: ServerName;
434 /**
435 * This is not currently implemented for DescribeBackups requests.
436 */
437 NextToken?: NextToken;
438 /**
439 * This is not currently implemented for DescribeBackups requests.
440 */
441 MaxResults?: MaxResults;
442 }
443 export interface DescribeBackupsResponse {
444 /**
445 * Contains the response to a DescribeBackups request.
446 */
447 Backups?: Backups;
448 /**
449 * This is not currently implemented for DescribeBackups requests.
450 */
451 NextToken?: String;
452 }
453 export interface DescribeEventsRequest {
454 /**
455 * The name of the server for which you want to view events.
456 */
457 ServerName: ServerName;
458 /**
459 * NextToken is a string that is returned in some command responses. It indicates that not all entries have been returned, and that you must run at least one more request to get remaining items. To get remaining results, call DescribeEvents again, and assign the token from the previous results as the value of the nextToken parameter. If there are no more results, the response object's nextToken parameter value is null. Setting a nextToken value that was not returned in your previous results causes an InvalidNextTokenException to occur.
460 */
461 NextToken?: NextToken;
462 /**
463 * To receive a paginated response, use this parameter to specify the maximum number of results to be returned with a single call. If the number of available results exceeds this maximum, the response includes a NextToken value that you can assign to the NextToken request parameter to get the next set of results.
464 */
465 MaxResults?: MaxResults;
466 }
467 export interface DescribeEventsResponse {
468 /**
469 * Contains the response to a DescribeEvents request.
470 */
471 ServerEvents?: ServerEvents;
472 /**
473 * NextToken is a string that is returned in some command responses. It indicates that not all entries have been returned, and that you must run at least one more request to get remaining items. To get remaining results, call DescribeEvents again, and assign the token from the previous results as the value of the nextToken parameter. If there are no more results, the response object's nextToken parameter value is null. Setting a nextToken value that was not returned in your previous results causes an InvalidNextTokenException to occur.
474 */
475 NextToken?: String;
476 }
477 export interface DescribeNodeAssociationStatusRequest {
478 /**
479 * The token returned in either the AssociateNodeResponse or the DisassociateNodeResponse.
480 */
481 NodeAssociationStatusToken: NodeAssociationStatusToken;
482 /**
483 * The name of the server from which to disassociate the node.
484 */
485 ServerName: ServerName;
486 }
487 export interface DescribeNodeAssociationStatusResponse {
488 /**
489 * The status of the association or disassociation request. Possible values: SUCCESS: The association or disassociation succeeded. FAILED: The association or disassociation failed. IN_PROGRESS: The association or disassociation is still in progress.
490 */
491 NodeAssociationStatus?: NodeAssociationStatus;
492 /**
493 * Attributes specific to the node association. In Puppet, the attibute PUPPET_NODE_CERT contains the signed certificate (the result of the CSR).
494 */
495 EngineAttributes?: EngineAttributes;
496 }
497 export interface DescribeServersRequest {
498 /**
499 * Describes the server with the specified ServerName.
500 */
501 ServerName?: ServerName;
502 /**
503 * This is not currently implemented for DescribeServers requests.
504 */
505 NextToken?: NextToken;
506 /**
507 * This is not currently implemented for DescribeServers requests.
508 */
509 MaxResults?: MaxResults;
510 }
511 export interface DescribeServersResponse {
512 /**
513 * Contains the response to a DescribeServers request. For Puppet Server: DescribeServersResponse$Servers$EngineAttributes contains PUPPET_API_CA_CERT. This is the PEM-encoded CA certificate that is used by the Puppet API over TCP port number 8140. The CA certificate is also used to sign node certificates.
514 */
515 Servers?: Servers;
516 /**
517 * This is not currently implemented for DescribeServers requests.
518 */
519 NextToken?: String;
520 }
521 export interface DisassociateNodeRequest {
522 /**
523 * The name of the server from which to disassociate the node.
524 */
525 ServerName: ServerName;
526 /**
527 * The name of the client node.
528 */
529 NodeName: NodeName;
530 /**
531 * Engine attributes that are used for disassociating the node. No attributes are required for Puppet. Attributes required in a DisassociateNode request for Chef CHEF_ORGANIZATION: The Chef organization with which the node was associated. By default only one organization named default can exist.
532 */
533 EngineAttributes?: EngineAttributes;
534 }
535 export interface DisassociateNodeResponse {
536 /**
537 * Contains a token which can be passed to the DescribeNodeAssociationStatus API call to get the status of the disassociation request.
538 */
539 NodeAssociationStatusToken?: NodeAssociationStatusToken;
540 }
541 export interface EngineAttribute {
542 /**
543 * The name of the engine attribute.
544 */
545 Name?: EngineAttributeName;
546 /**
547 * The value of the engine attribute.
548 */
549 Value?: EngineAttributeValue;
550 }
551 export type EngineAttributeName = string;
552 export type EngineAttributeValue = string;
553 export type EngineAttributes = EngineAttribute[];
554 export interface ExportServerEngineAttributeRequest {
555 /**
556 * The name of the export attribute. Currently, the supported export attribute is Userdata. This exports a user data script that includes parameters and values provided in the InputAttributes list.
557 */
558 ExportAttributeName: String;
559 /**
560 * The name of the server from which you are exporting the attribute.
561 */
562 ServerName: ServerName;
563 /**
564 * The list of engine attributes. The list type is EngineAttribute. An EngineAttribute list item is a pair that includes an attribute name and its value. For the Userdata ExportAttributeName, the following are supported engine attribute names. RunList In Chef, a list of roles or recipes that are run in the specified order. In Puppet, this parameter is ignored. OrganizationName In Chef, an organization name. AWS OpsWorks for Chef Automate always creates the organization default. In Puppet, this parameter is ignored. NodeEnvironment In Chef, a node environment (for example, development, staging, or one-box). In Puppet, this parameter is ignored. NodeClientVersion In Chef, the version of the Chef engine (three numbers separated by dots, such as 13.8.5). If this attribute is empty, OpsWorks for Chef Automate uses the most current version. In Puppet, this parameter is ignored.
565 */
566 InputAttributes?: EngineAttributes;
567 }
568 export interface ExportServerEngineAttributeResponse {
569 /**
570 * The requested engine attribute pair with attribute name and value.
571 */
572 EngineAttribute?: EngineAttribute;
573 /**
574 * The server name used in the request.
575 */
576 ServerName?: ServerName;
577 }
578 export type InstanceProfileArn = string;
579 export type Integer = number;
580 export type KeyPair = string;
581 export type MaintenanceStatus = "SUCCESS"|"FAILED"|string;
582 export type MaxResults = number;
583 export type NextToken = string;
584 export type NodeAssociationStatus = "SUCCESS"|"FAILED"|"IN_PROGRESS"|string;
585 export type NodeAssociationStatusToken = string;
586 export type NodeName = string;
587 export interface RestoreServerRequest {
588 /**
589 * The ID of the backup that you want to use to restore a server.
590 */
591 BackupId: BackupId;
592 /**
593 * The name of the server that you want to restore.
594 */
595 ServerName: ServerName;
596 /**
597 * The type of the instance to create. Valid values must be specified in the following format: ^([cm][34]|t2).* For example, m5.large. Valid values are m5.large, r5.xlarge, and r5.2xlarge. If you do not specify this parameter, RestoreServer uses the instance type from the specified backup.
598 */
599 InstanceType?: String;
600 /**
601 * The name of the key pair to set on the new EC2 instance. This can be helpful if the administrator no longer has the SSH key.
602 */
603 KeyPair?: KeyPair;
604 }
605 export interface RestoreServerResponse {
606 }
607 export interface Server {
608 /**
609 * Associate a public IP address with a server that you are launching.
610 */
611 AssociatePublicIpAddress?: Boolean;
612 /**
613 * The number of automated backups to keep.
614 */
615 BackupRetentionCount?: Integer;
616 /**
617 * The name of the server.
618 */
619 ServerName?: String;
620 /**
621 * Time stamp of server creation. Example 2016-07-29T13:38:47.520Z
622 */
623 CreatedAt?: Timestamp;
624 /**
625 * The ARN of the CloudFormation stack that was used to create the server.
626 */
627 CloudFormationStackArn?: String;
628 /**
629 * An optional public endpoint of a server, such as https://aws.my-company.com. You cannot access the server by using the Endpoint value if the server has a CustomDomain specified.
630 */
631 CustomDomain?: CustomDomain;
632 /**
633 * Disables automated backups. The number of stored backups is dependent on the value of PreferredBackupCount.
634 */
635 DisableAutomatedBackup?: Boolean;
636 /**
637 * A DNS name that can be used to access the engine. Example: myserver-asdfghjkl.us-east-1.opsworks.io. You cannot access the server by using the Endpoint value if the server has a CustomDomain specified.
638 */
639 Endpoint?: String;
640 /**
641 * The engine type of the server. Valid values in this release include ChefAutomate and Puppet.
642 */
643 Engine?: String;
644 /**
645 * The engine model of the server. Valid values in this release include Monolithic for Puppet and Single for Chef.
646 */
647 EngineModel?: String;
648 /**
649 * The response of a createServer() request returns the master credential to access the server in EngineAttributes. These credentials are not stored by AWS OpsWorks CM; they are returned only as part of the result of createServer(). Attributes returned in a createServer response for Chef CHEF_AUTOMATE_PIVOTAL_KEY: A base64-encoded RSA private key that is generated by AWS OpsWorks for Chef Automate. This private key is required to access the Chef API. CHEF_STARTER_KIT: A base64-encoded ZIP file. The ZIP file contains a Chef starter kit, which includes a README, a configuration file, and the required RSA private key. Save this file, unzip it, and then change to the directory where you've unzipped the file contents. From this directory, you can run Knife commands. Attributes returned in a createServer response for Puppet PUPPET_STARTER_KIT: A base64-encoded ZIP file. The ZIP file contains a Puppet starter kit, including a README and a required private key. Save this file, unzip it, and then change to the directory where you've unzipped the file contents. PUPPET_ADMIN_PASSWORD: An administrator password that you can use to sign in to the Puppet Enterprise console after the server is online.
650 */
651 EngineAttributes?: EngineAttributes;
652 /**
653 * The engine version of the server. For a Chef server, the valid value for EngineVersion is currently 12. For a Puppet server, the valid value is 2017.
654 */
655 EngineVersion?: String;
656 /**
657 * The instance profile ARN of the server.
658 */
659 InstanceProfileArn?: String;
660 /**
661 * The instance type for the server, as specified in the CloudFormation stack. This might not be the same instance type that is shown in the EC2 console.
662 */
663 InstanceType?: String;
664 /**
665 * The key pair associated with the server.
666 */
667 KeyPair?: String;
668 /**
669 * The status of the most recent server maintenance run. Shows SUCCESS or FAILED.
670 */
671 MaintenanceStatus?: MaintenanceStatus;
672 /**
673 * The preferred maintenance period specified for the server.
674 */
675 PreferredMaintenanceWindow?: TimeWindowDefinition;
676 /**
677 * The preferred backup period specified for the server.
678 */
679 PreferredBackupWindow?: TimeWindowDefinition;
680 /**
681 * The security group IDs for the server, as specified in the CloudFormation stack. These might not be the same security groups that are shown in the EC2 console.
682 */
683 SecurityGroupIds?: Strings;
684 /**
685 * The service role ARN used to create the server.
686 */
687 ServiceRoleArn?: String;
688 /**
689 * The server's status. This field displays the states of actions in progress, such as creating, running, or backing up the server, as well as the server's health state.
690 */
691 Status?: ServerStatus;
692 /**
693 * Depending on the server status, this field has either a human-readable message (such as a create or backup error), or an escaped block of JSON (used for health check results).
694 */
695 StatusReason?: String;
696 /**
697 * The subnet IDs specified in a CreateServer request.
698 */
699 SubnetIds?: Strings;
700 /**
701 * The ARN of the server.
702 */
703 ServerArn?: String;
704 }
705 export interface ServerEvent {
706 /**
707 * The time when the event occurred.
708 */
709 CreatedAt?: Timestamp;
710 /**
711 * The name of the server on or for which the event occurred.
712 */
713 ServerName?: String;
714 /**
715 * A human-readable informational or status message.
716 */
717 Message?: String;
718 /**
719 * The Amazon S3 URL of the event's log file.
720 */
721 LogUrl?: String;
722 }
723 export type ServerEvents = ServerEvent[];
724 export type ServerName = string;
725 export type ServerStatus = "BACKING_UP"|"CONNECTION_LOST"|"CREATING"|"DELETING"|"MODIFYING"|"FAILED"|"HEALTHY"|"RUNNING"|"RESTORING"|"SETUP"|"UNDER_MAINTENANCE"|"UNHEALTHY"|"TERMINATED"|string;
726 export type Servers = Server[];
727 export type ServiceRoleArn = string;
728 export interface StartMaintenanceRequest {
729 /**
730 * The name of the server on which to run maintenance.
731 */
732 ServerName: ServerName;
733 /**
734 * Engine attributes that are specific to the server on which you want to run maintenance.
735 */
736 EngineAttributes?: EngineAttributes;
737 }
738 export interface StartMaintenanceResponse {
739 /**
740 * Contains the response to a StartMaintenance request.
741 */
742 Server?: Server;
743 }
744 export type String = string;
745 export type Strings = String[];
746 export type TimeWindowDefinition = string;
747 export type Timestamp = Date;
748 export interface UpdateServerEngineAttributesRequest {
749 /**
750 * The name of the server to update.
751 */
752 ServerName: ServerName;
753 /**
754 * The name of the engine attribute to update.
755 */
756 AttributeName: AttributeName;
757 /**
758 * The value to set for the attribute.
759 */
760 AttributeValue?: AttributeValue;
761 }
762 export interface UpdateServerEngineAttributesResponse {
763 /**
764 * Contains the response to an UpdateServerEngineAttributes request.
765 */
766 Server?: Server;
767 }
768 export interface UpdateServerRequest {
769 /**
770 * Setting DisableAutomatedBackup to true disables automated or scheduled backups. Automated backups are enabled by default.
771 */
772 DisableAutomatedBackup?: Boolean;
773 /**
774 * Sets the number of automated backups that you want to keep.
775 */
776 BackupRetentionCount?: Integer;
777 /**
778 * The name of the server to update.
779 */
780 ServerName: ServerName;
781 PreferredMaintenanceWindow?: TimeWindowDefinition;
782 PreferredBackupWindow?: TimeWindowDefinition;
783 }
784 export interface UpdateServerResponse {
785 /**
786 * Contains the response to a UpdateServer request.
787 */
788 Server?: Server;
789 }
790 /**
791 * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
792 */
793 export type apiVersion = "2016-11-01"|"latest"|string;
794 export interface ClientApiVersions {
795 /**
796 * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
797 */
798 apiVersion?: apiVersion;
799 }
800 export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
801 /**
802 * Contains interfaces for use with the OpsWorksCM client.
803 */
804 export import Types = OpsWorksCM;
805}
806export = OpsWorksCM;