UNPKG

54.7 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.
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.
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 account attributes, and creates requests to increase limits before they are reached or exceeded. 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 account attributes, and creates requests to increase limits before they are reached or exceeded. 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 * Enable or disable scheduled backups. Valid values are true or false. The default value is true.
317 */
318 DisableAutomatedBackup?: Boolean;
319 /**
320 * The configuration management engine to use. Valid values include Chef and Puppet.
321 */
322 Engine?: String;
323 /**
324 * The engine model of the server. Valid values in this release include Monolithic for Puppet and Single for Chef.
325 */
326 EngineModel?: String;
327 /**
328 * 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.
329 */
330 EngineVersion?: String;
331 /**
332 * Optional engine attributes on a specified server. Attributes accepted in a Chef createServer request: CHEF_PIVOTAL_KEY: A base64-encoded RSA public key. The corresponding private key is required to access the Chef API. When no CHEF_PIVOTAL_KEY is set, a private key is generated and returned in the response. CHEF_DELIVERY_ADMIN_PASSWORD: The password for the administrative user in the Chef Automate GUI. 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_DELIVERY_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 an SSH URL and a PEM-encoded private SSH key.
333 */
334 EngineAttributes?: EngineAttributes;
335 /**
336 * 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.
337 */
338 BackupRetentionCount?: BackupRetentionCountDefinition;
339 /**
340 * 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.
341 */
342 ServerName: ServerName;
343 /**
344 * 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.
345 */
346 InstanceProfileArn: InstanceProfileArn;
347 /**
348 * The Amazon EC2 instance type to use. For example, m4.large. Recommended instance types include t2.medium and greater, m4.*, or c4.xlarge and greater.
349 */
350 InstanceType: String;
351 /**
352 * 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.
353 */
354 KeyPair?: KeyPair;
355 /**
356 * 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.)
357 */
358 PreferredMaintenanceWindow?: TimeWindowDefinition;
359 /**
360 * 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.)
361 */
362 PreferredBackupWindow?: TimeWindowDefinition;
363 /**
364 * 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).
365 */
366 SecurityGroupIds?: Strings;
367 /**
368 * 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.
369 */
370 ServiceRoleArn: ServiceRoleArn;
371 /**
372 * 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.
373 */
374 SubnetIds?: Strings;
375 /**
376 * If you specify this field, AWS OpsWorks CM creates the server by using the backup represented by BackupId.
377 */
378 BackupId?: BackupId;
379 }
380 export interface CreateServerResponse {
381 /**
382 * The server that is created by the request.
383 */
384 Server?: Server;
385 }
386 export interface DeleteBackupRequest {
387 /**
388 * 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.
389 */
390 BackupId: BackupId;
391 }
392 export interface DeleteBackupResponse {
393 }
394 export interface DeleteServerRequest {
395 /**
396 * The ID of the server to delete.
397 */
398 ServerName: ServerName;
399 }
400 export interface DeleteServerResponse {
401 }
402 export interface DescribeAccountAttributesRequest {
403 }
404 export interface DescribeAccountAttributesResponse {
405 /**
406 * The attributes that are currently set for the account.
407 */
408 Attributes?: AccountAttributes;
409 }
410 export interface DescribeBackupsRequest {
411 /**
412 * Describes a single backup.
413 */
414 BackupId?: BackupId;
415 /**
416 * Returns backups for the server with the specified ServerName.
417 */
418 ServerName?: ServerName;
419 /**
420 * This is not currently implemented for DescribeBackups requests.
421 */
422 NextToken?: NextToken;
423 /**
424 * This is not currently implemented for DescribeBackups requests.
425 */
426 MaxResults?: MaxResults;
427 }
428 export interface DescribeBackupsResponse {
429 /**
430 * Contains the response to a DescribeBackups request.
431 */
432 Backups?: Backups;
433 /**
434 * This is not currently implemented for DescribeBackups requests.
435 */
436 NextToken?: String;
437 }
438 export interface DescribeEventsRequest {
439 /**
440 * The name of the server for which you want to view events.
441 */
442 ServerName: ServerName;
443 /**
444 * 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.
445 */
446 NextToken?: NextToken;
447 /**
448 * 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.
449 */
450 MaxResults?: MaxResults;
451 }
452 export interface DescribeEventsResponse {
453 /**
454 * Contains the response to a DescribeEvents request.
455 */
456 ServerEvents?: ServerEvents;
457 /**
458 * 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.
459 */
460 NextToken?: String;
461 }
462 export interface DescribeNodeAssociationStatusRequest {
463 /**
464 * The token returned in either the AssociateNodeResponse or the DisassociateNodeResponse.
465 */
466 NodeAssociationStatusToken: NodeAssociationStatusToken;
467 /**
468 * The name of the server from which to disassociate the node.
469 */
470 ServerName: ServerName;
471 }
472 export interface DescribeNodeAssociationStatusResponse {
473 /**
474 * 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.
475 */
476 NodeAssociationStatus?: NodeAssociationStatus;
477 /**
478 * Attributes specific to the node association. In Puppet, the attibute PUPPET_NODE_CERT contains the signed certificate (the result of the CSR).
479 */
480 EngineAttributes?: EngineAttributes;
481 }
482 export interface DescribeServersRequest {
483 /**
484 * Describes the server with the specified ServerName.
485 */
486 ServerName?: ServerName;
487 /**
488 * This is not currently implemented for DescribeServers requests.
489 */
490 NextToken?: NextToken;
491 /**
492 * This is not currently implemented for DescribeServers requests.
493 */
494 MaxResults?: MaxResults;
495 }
496 export interface DescribeServersResponse {
497 /**
498 * 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.
499 */
500 Servers?: Servers;
501 /**
502 * This is not currently implemented for DescribeServers requests.
503 */
504 NextToken?: String;
505 }
506 export interface DisassociateNodeRequest {
507 /**
508 * The name of the server from which to disassociate the node.
509 */
510 ServerName: ServerName;
511 /**
512 * The name of the client node.
513 */
514 NodeName: NodeName;
515 /**
516 * 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.
517 */
518 EngineAttributes?: EngineAttributes;
519 }
520 export interface DisassociateNodeResponse {
521 /**
522 * Contains a token which can be passed to the DescribeNodeAssociationStatus API call to get the status of the disassociation request.
523 */
524 NodeAssociationStatusToken?: NodeAssociationStatusToken;
525 }
526 export interface EngineAttribute {
527 /**
528 * The name of the engine attribute.
529 */
530 Name?: EngineAttributeName;
531 /**
532 * The value of the engine attribute.
533 */
534 Value?: EngineAttributeValue;
535 }
536 export type EngineAttributeName = string;
537 export type EngineAttributeValue = string;
538 export type EngineAttributes = EngineAttribute[];
539 export interface ExportServerEngineAttributeRequest {
540 /**
541 * 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.
542 */
543 ExportAttributeName: String;
544 /**
545 * The name of the server from which you are exporting the attribute.
546 */
547 ServerName: ServerName;
548 /**
549 * 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.
550 */
551 InputAttributes?: EngineAttributes;
552 }
553 export interface ExportServerEngineAttributeResponse {
554 /**
555 * The requested engine attribute pair with attribute name and value.
556 */
557 EngineAttribute?: EngineAttribute;
558 /**
559 * The server name used in the request.
560 */
561 ServerName?: ServerName;
562 }
563 export type InstanceProfileArn = string;
564 export type Integer = number;
565 export type KeyPair = string;
566 export type MaintenanceStatus = "SUCCESS"|"FAILED"|string;
567 export type MaxResults = number;
568 export type NextToken = string;
569 export type NodeAssociationStatus = "SUCCESS"|"FAILED"|"IN_PROGRESS"|string;
570 export type NodeAssociationStatusToken = string;
571 export type NodeName = string;
572 export interface RestoreServerRequest {
573 /**
574 * The ID of the backup that you want to use to restore a server.
575 */
576 BackupId: BackupId;
577 /**
578 * The name of the server that you want to restore.
579 */
580 ServerName: ServerName;
581 /**
582 * The type of the instance to create. Valid values must be specified in the following format: ^([cm][34]|t2).* For example, m4.large. Valid values are t2.medium, m4.large, and m4.2xlarge. If you do not specify this parameter, RestoreServer uses the instance type from the specified backup.
583 */
584 InstanceType?: String;
585 /**
586 * 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.
587 */
588 KeyPair?: KeyPair;
589 }
590 export interface RestoreServerResponse {
591 }
592 export interface Server {
593 /**
594 * Associate a public IP address with a server that you are launching.
595 */
596 AssociatePublicIpAddress?: Boolean;
597 /**
598 * The number of automated backups to keep.
599 */
600 BackupRetentionCount?: Integer;
601 /**
602 * The name of the server.
603 */
604 ServerName?: String;
605 /**
606 * Time stamp of server creation. Example 2016-07-29T13:38:47.520Z
607 */
608 CreatedAt?: Timestamp;
609 /**
610 * The ARN of the CloudFormation stack that was used to create the server.
611 */
612 CloudFormationStackArn?: String;
613 /**
614 * Disables automated backups. The number of stored backups is dependent on the value of PreferredBackupCount.
615 */
616 DisableAutomatedBackup?: Boolean;
617 /**
618 * A DNS name that can be used to access the engine. Example: myserver-asdfghjkl.us-east-1.opsworks.io
619 */
620 Endpoint?: String;
621 /**
622 * The engine type of the server. Valid values in this release include Chef and Puppet.
623 */
624 Engine?: String;
625 /**
626 * The engine model of the server. Valid values in this release include Monolithic for Puppet and Single for Chef.
627 */
628 EngineModel?: String;
629 /**
630 * 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_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.
631 */
632 EngineAttributes?: EngineAttributes;
633 /**
634 * 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.
635 */
636 EngineVersion?: String;
637 /**
638 * The instance profile ARN of the server.
639 */
640 InstanceProfileArn?: String;
641 /**
642 * 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.
643 */
644 InstanceType?: String;
645 /**
646 * The key pair associated with the server.
647 */
648 KeyPair?: String;
649 /**
650 * The status of the most recent server maintenance run. Shows SUCCESS or FAILED.
651 */
652 MaintenanceStatus?: MaintenanceStatus;
653 /**
654 * The preferred maintenance period specified for the server.
655 */
656 PreferredMaintenanceWindow?: TimeWindowDefinition;
657 /**
658 * The preferred backup period specified for the server.
659 */
660 PreferredBackupWindow?: TimeWindowDefinition;
661 /**
662 * 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.
663 */
664 SecurityGroupIds?: Strings;
665 /**
666 * The service role ARN used to create the server.
667 */
668 ServiceRoleArn?: String;
669 /**
670 * 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.
671 */
672 Status?: ServerStatus;
673 /**
674 * 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).
675 */
676 StatusReason?: String;
677 /**
678 * The subnet IDs specified in a CreateServer request.
679 */
680 SubnetIds?: Strings;
681 /**
682 * The ARN of the server.
683 */
684 ServerArn?: String;
685 }
686 export interface ServerEvent {
687 /**
688 * The time when the event occurred.
689 */
690 CreatedAt?: Timestamp;
691 /**
692 * The name of the server on or for which the event occurred.
693 */
694 ServerName?: String;
695 /**
696 * A human-readable informational or status message.
697 */
698 Message?: String;
699 /**
700 * The Amazon S3 URL of the event's log file.
701 */
702 LogUrl?: String;
703 }
704 export type ServerEvents = ServerEvent[];
705 export type ServerName = string;
706 export type ServerStatus = "BACKING_UP"|"CONNECTION_LOST"|"CREATING"|"DELETING"|"MODIFYING"|"FAILED"|"HEALTHY"|"RUNNING"|"RESTORING"|"SETUP"|"UNDER_MAINTENANCE"|"UNHEALTHY"|"TERMINATED"|string;
707 export type Servers = Server[];
708 export type ServiceRoleArn = string;
709 export interface StartMaintenanceRequest {
710 /**
711 * The name of the server on which to run maintenance.
712 */
713 ServerName: ServerName;
714 /**
715 * Engine attributes that are specific to the server on which you want to run maintenance.
716 */
717 EngineAttributes?: EngineAttributes;
718 }
719 export interface StartMaintenanceResponse {
720 /**
721 * Contains the response to a StartMaintenance request.
722 */
723 Server?: Server;
724 }
725 export type String = string;
726 export type Strings = String[];
727 export type TimeWindowDefinition = string;
728 export type Timestamp = Date;
729 export interface UpdateServerEngineAttributesRequest {
730 /**
731 * The name of the server to update.
732 */
733 ServerName: ServerName;
734 /**
735 * The name of the engine attribute to update.
736 */
737 AttributeName: AttributeName;
738 /**
739 * The value to set for the attribute.
740 */
741 AttributeValue?: AttributeValue;
742 }
743 export interface UpdateServerEngineAttributesResponse {
744 /**
745 * Contains the response to an UpdateServerEngineAttributes request.
746 */
747 Server?: Server;
748 }
749 export interface UpdateServerRequest {
750 /**
751 * Setting DisableAutomatedBackup to true disables automated or scheduled backups. Automated backups are enabled by default.
752 */
753 DisableAutomatedBackup?: Boolean;
754 /**
755 * Sets the number of automated backups that you want to keep.
756 */
757 BackupRetentionCount?: Integer;
758 /**
759 * The name of the server to update.
760 */
761 ServerName: ServerName;
762 PreferredMaintenanceWindow?: TimeWindowDefinition;
763 PreferredBackupWindow?: TimeWindowDefinition;
764 }
765 export interface UpdateServerResponse {
766 /**
767 * Contains the response to a UpdateServer request.
768 */
769 Server?: Server;
770 }
771 /**
772 * 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.
773 */
774 export type apiVersion = "2016-11-01"|"latest"|string;
775 export interface ClientApiVersions {
776 /**
777 * 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.
778 */
779 apiVersion?: apiVersion;
780 }
781 export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
782 /**
783 * Contains interfaces for use with the OpsWorksCM client.
784 */
785 export import Types = OpsWorksCM;
786}
787export = OpsWorksCM;