configservice.d.ts (79533B)
1 import {Request} from '../lib/request'; 2 import {Response} from '../lib/response'; 3 import {AWSError} from '../lib/error'; 4 import {Service} from '../lib/service'; 5 import {ServiceConfigurationOptions} from '../lib/service'; 6 import {ConfigBase as Config} from '../lib/config'; 7 interface Blob {} 8 declare class ConfigService extends Service { 9 /** 10 * Constructs a service object. This object has one method for each API operation. 11 */ 12 constructor(options?: ConfigService.Types.ClientConfiguration) 13 config: Config & ConfigService.Types.ClientConfiguration; 14 /** 15 * Deletes the specified AWS Config rule and all of its evaluation results. AWS Config sets the state of a rule to DELETING until the deletion is complete. You cannot update a rule while it is in this state. If you make a PutConfigRule or DeleteConfigRule request for the rule, you will receive a ResourceInUseException. You can check the state of a rule by using the DescribeConfigRules request. 16 */ 17 deleteConfigRule(params: ConfigService.Types.DeleteConfigRuleRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 18 /** 19 * Deletes the specified AWS Config rule and all of its evaluation results. AWS Config sets the state of a rule to DELETING until the deletion is complete. You cannot update a rule while it is in this state. If you make a PutConfigRule or DeleteConfigRule request for the rule, you will receive a ResourceInUseException. You can check the state of a rule by using the DescribeConfigRules request. 20 */ 21 deleteConfigRule(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 22 /** 23 * Deletes the configuration recorder. After the configuration recorder is deleted, AWS Config will not record resource configuration changes until you create a new configuration recorder. This action does not delete the configuration information that was previously recorded. You will be able to access the previously recorded information by using the GetResourceConfigHistory action, but you will not be able to access this information in the AWS Config console until you create a new configuration recorder. 24 */ 25 deleteConfigurationRecorder(params: ConfigService.Types.DeleteConfigurationRecorderRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 26 /** 27 * Deletes the configuration recorder. After the configuration recorder is deleted, AWS Config will not record resource configuration changes until you create a new configuration recorder. This action does not delete the configuration information that was previously recorded. You will be able to access the previously recorded information by using the GetResourceConfigHistory action, but you will not be able to access this information in the AWS Config console until you create a new configuration recorder. 28 */ 29 deleteConfigurationRecorder(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 30 /** 31 * Deletes the delivery channel. Before you can delete the delivery channel, you must stop the configuration recorder by using the StopConfigurationRecorder action. 32 */ 33 deleteDeliveryChannel(params: ConfigService.Types.DeleteDeliveryChannelRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 34 /** 35 * Deletes the delivery channel. Before you can delete the delivery channel, you must stop the configuration recorder by using the StopConfigurationRecorder action. 36 */ 37 deleteDeliveryChannel(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 38 /** 39 * Deletes the evaluation results for the specified Config rule. You can specify one Config rule per request. After you delete the evaluation results, you can call the StartConfigRulesEvaluation API to start evaluating your AWS resources against the rule. 40 */ 41 deleteEvaluationResults(params: ConfigService.Types.DeleteEvaluationResultsRequest, callback?: (err: AWSError, data: ConfigService.Types.DeleteEvaluationResultsResponse) => void): Request<ConfigService.Types.DeleteEvaluationResultsResponse, AWSError>; 42 /** 43 * Deletes the evaluation results for the specified Config rule. You can specify one Config rule per request. After you delete the evaluation results, you can call the StartConfigRulesEvaluation API to start evaluating your AWS resources against the rule. 44 */ 45 deleteEvaluationResults(callback?: (err: AWSError, data: ConfigService.Types.DeleteEvaluationResultsResponse) => void): Request<ConfigService.Types.DeleteEvaluationResultsResponse, AWSError>; 46 /** 47 * Schedules delivery of a configuration snapshot to the Amazon S3 bucket in the specified delivery channel. After the delivery has started, AWS Config sends following notifications using an Amazon SNS topic that you have specified. Notification of starting the delivery. Notification of delivery completed, if the delivery was successfully completed. Notification of delivery failure, if the delivery failed to complete. 48 */ 49 deliverConfigSnapshot(params: ConfigService.Types.DeliverConfigSnapshotRequest, callback?: (err: AWSError, data: ConfigService.Types.DeliverConfigSnapshotResponse) => void): Request<ConfigService.Types.DeliverConfigSnapshotResponse, AWSError>; 50 /** 51 * Schedules delivery of a configuration snapshot to the Amazon S3 bucket in the specified delivery channel. After the delivery has started, AWS Config sends following notifications using an Amazon SNS topic that you have specified. Notification of starting the delivery. Notification of delivery completed, if the delivery was successfully completed. Notification of delivery failure, if the delivery failed to complete. 52 */ 53 deliverConfigSnapshot(callback?: (err: AWSError, data: ConfigService.Types.DeliverConfigSnapshotResponse) => void): Request<ConfigService.Types.DeliverConfigSnapshotResponse, AWSError>; 54 /** 55 * Indicates whether the specified AWS Config rules are compliant. If a rule is noncompliant, this action returns the number of AWS resources that do not comply with the rule. A rule is compliant if all of the evaluated resources comply with it, and it is noncompliant if any of these resources do not comply. If AWS Config has no current evaluation results for the rule, it returns INSUFFICIENT_DATA. This result might indicate one of the following conditions: AWS Config has never invoked an evaluation for the rule. To check whether it has, use the DescribeConfigRuleEvaluationStatus action to get the LastSuccessfulInvocationTime and LastFailedInvocationTime. The rule's AWS Lambda function is failing to send evaluation results to AWS Config. Verify that the role that you assigned to your configuration recorder includes the config:PutEvaluations permission. If the rule is a custom rule, verify that the AWS Lambda execution role includes the config:PutEvaluations permission. The rule's AWS Lambda function has returned NOT_APPLICABLE for all evaluation results. This can occur if the resources were deleted or removed from the rule's scope. 56 */ 57 describeComplianceByConfigRule(params: ConfigService.Types.DescribeComplianceByConfigRuleRequest, callback?: (err: AWSError, data: ConfigService.Types.DescribeComplianceByConfigRuleResponse) => void): Request<ConfigService.Types.DescribeComplianceByConfigRuleResponse, AWSError>; 58 /** 59 * Indicates whether the specified AWS Config rules are compliant. If a rule is noncompliant, this action returns the number of AWS resources that do not comply with the rule. A rule is compliant if all of the evaluated resources comply with it, and it is noncompliant if any of these resources do not comply. If AWS Config has no current evaluation results for the rule, it returns INSUFFICIENT_DATA. This result might indicate one of the following conditions: AWS Config has never invoked an evaluation for the rule. To check whether it has, use the DescribeConfigRuleEvaluationStatus action to get the LastSuccessfulInvocationTime and LastFailedInvocationTime. The rule's AWS Lambda function is failing to send evaluation results to AWS Config. Verify that the role that you assigned to your configuration recorder includes the config:PutEvaluations permission. If the rule is a custom rule, verify that the AWS Lambda execution role includes the config:PutEvaluations permission. The rule's AWS Lambda function has returned NOT_APPLICABLE for all evaluation results. This can occur if the resources were deleted or removed from the rule's scope. 60 */ 61 describeComplianceByConfigRule(callback?: (err: AWSError, data: ConfigService.Types.DescribeComplianceByConfigRuleResponse) => void): Request<ConfigService.Types.DescribeComplianceByConfigRuleResponse, AWSError>; 62 /** 63 * Indicates whether the specified AWS resources are compliant. If a resource is noncompliant, this action returns the number of AWS Config rules that the resource does not comply with. A resource is compliant if it complies with all the AWS Config rules that evaluate it. It is noncompliant if it does not comply with one or more of these rules. If AWS Config has no current evaluation results for the resource, it returns INSUFFICIENT_DATA. This result might indicate one of the following conditions about the rules that evaluate the resource: AWS Config has never invoked an evaluation for the rule. To check whether it has, use the DescribeConfigRuleEvaluationStatus action to get the LastSuccessfulInvocationTime and LastFailedInvocationTime. The rule's AWS Lambda function is failing to send evaluation results to AWS Config. Verify that the role that you assigned to your configuration recorder includes the config:PutEvaluations permission. If the rule is a custom rule, verify that the AWS Lambda execution role includes the config:PutEvaluations permission. The rule's AWS Lambda function has returned NOT_APPLICABLE for all evaluation results. This can occur if the resources were deleted or removed from the rule's scope. 64 */ 65 describeComplianceByResource(params: ConfigService.Types.DescribeComplianceByResourceRequest, callback?: (err: AWSError, data: ConfigService.Types.DescribeComplianceByResourceResponse) => void): Request<ConfigService.Types.DescribeComplianceByResourceResponse, AWSError>; 66 /** 67 * Indicates whether the specified AWS resources are compliant. If a resource is noncompliant, this action returns the number of AWS Config rules that the resource does not comply with. A resource is compliant if it complies with all the AWS Config rules that evaluate it. It is noncompliant if it does not comply with one or more of these rules. If AWS Config has no current evaluation results for the resource, it returns INSUFFICIENT_DATA. This result might indicate one of the following conditions about the rules that evaluate the resource: AWS Config has never invoked an evaluation for the rule. To check whether it has, use the DescribeConfigRuleEvaluationStatus action to get the LastSuccessfulInvocationTime and LastFailedInvocationTime. The rule's AWS Lambda function is failing to send evaluation results to AWS Config. Verify that the role that you assigned to your configuration recorder includes the config:PutEvaluations permission. If the rule is a custom rule, verify that the AWS Lambda execution role includes the config:PutEvaluations permission. The rule's AWS Lambda function has returned NOT_APPLICABLE for all evaluation results. This can occur if the resources were deleted or removed from the rule's scope. 68 */ 69 describeComplianceByResource(callback?: (err: AWSError, data: ConfigService.Types.DescribeComplianceByResourceResponse) => void): Request<ConfigService.Types.DescribeComplianceByResourceResponse, AWSError>; 70 /** 71 * Returns status information for each of your AWS managed Config rules. The status includes information such as the last time AWS Config invoked the rule, the last time AWS Config failed to invoke the rule, and the related error for the last failure. 72 */ 73 describeConfigRuleEvaluationStatus(params: ConfigService.Types.DescribeConfigRuleEvaluationStatusRequest, callback?: (err: AWSError, data: ConfigService.Types.DescribeConfigRuleEvaluationStatusResponse) => void): Request<ConfigService.Types.DescribeConfigRuleEvaluationStatusResponse, AWSError>; 74 /** 75 * Returns status information for each of your AWS managed Config rules. The status includes information such as the last time AWS Config invoked the rule, the last time AWS Config failed to invoke the rule, and the related error for the last failure. 76 */ 77 describeConfigRuleEvaluationStatus(callback?: (err: AWSError, data: ConfigService.Types.DescribeConfigRuleEvaluationStatusResponse) => void): Request<ConfigService.Types.DescribeConfigRuleEvaluationStatusResponse, AWSError>; 78 /** 79 * Returns details about your AWS Config rules. 80 */ 81 describeConfigRules(params: ConfigService.Types.DescribeConfigRulesRequest, callback?: (err: AWSError, data: ConfigService.Types.DescribeConfigRulesResponse) => void): Request<ConfigService.Types.DescribeConfigRulesResponse, AWSError>; 82 /** 83 * Returns details about your AWS Config rules. 84 */ 85 describeConfigRules(callback?: (err: AWSError, data: ConfigService.Types.DescribeConfigRulesResponse) => void): Request<ConfigService.Types.DescribeConfigRulesResponse, AWSError>; 86 /** 87 * Returns the current status of the specified configuration recorder. If a configuration recorder is not specified, this action returns the status of all configuration recorder associated with the account. Currently, you can specify only one configuration recorder per region in your account. 88 */ 89 describeConfigurationRecorderStatus(params: ConfigService.Types.DescribeConfigurationRecorderStatusRequest, callback?: (err: AWSError, data: ConfigService.Types.DescribeConfigurationRecorderStatusResponse) => void): Request<ConfigService.Types.DescribeConfigurationRecorderStatusResponse, AWSError>; 90 /** 91 * Returns the current status of the specified configuration recorder. If a configuration recorder is not specified, this action returns the status of all configuration recorder associated with the account. Currently, you can specify only one configuration recorder per region in your account. 92 */ 93 describeConfigurationRecorderStatus(callback?: (err: AWSError, data: ConfigService.Types.DescribeConfigurationRecorderStatusResponse) => void): Request<ConfigService.Types.DescribeConfigurationRecorderStatusResponse, AWSError>; 94 /** 95 * Returns the details for the specified configuration recorders. If the configuration recorder is not specified, this action returns the details for all configuration recorders associated with the account. Currently, you can specify only one configuration recorder per region in your account. 96 */ 97 describeConfigurationRecorders(params: ConfigService.Types.DescribeConfigurationRecordersRequest, callback?: (err: AWSError, data: ConfigService.Types.DescribeConfigurationRecordersResponse) => void): Request<ConfigService.Types.DescribeConfigurationRecordersResponse, AWSError>; 98 /** 99 * Returns the details for the specified configuration recorders. If the configuration recorder is not specified, this action returns the details for all configuration recorders associated with the account. Currently, you can specify only one configuration recorder per region in your account. 100 */ 101 describeConfigurationRecorders(callback?: (err: AWSError, data: ConfigService.Types.DescribeConfigurationRecordersResponse) => void): Request<ConfigService.Types.DescribeConfigurationRecordersResponse, AWSError>; 102 /** 103 * Returns the current status of the specified delivery channel. If a delivery channel is not specified, this action returns the current status of all delivery channels associated with the account. Currently, you can specify only one delivery channel per region in your account. 104 */ 105 describeDeliveryChannelStatus(params: ConfigService.Types.DescribeDeliveryChannelStatusRequest, callback?: (err: AWSError, data: ConfigService.Types.DescribeDeliveryChannelStatusResponse) => void): Request<ConfigService.Types.DescribeDeliveryChannelStatusResponse, AWSError>; 106 /** 107 * Returns the current status of the specified delivery channel. If a delivery channel is not specified, this action returns the current status of all delivery channels associated with the account. Currently, you can specify only one delivery channel per region in your account. 108 */ 109 describeDeliveryChannelStatus(callback?: (err: AWSError, data: ConfigService.Types.DescribeDeliveryChannelStatusResponse) => void): Request<ConfigService.Types.DescribeDeliveryChannelStatusResponse, AWSError>; 110 /** 111 * Returns details about the specified delivery channel. If a delivery channel is not specified, this action returns the details of all delivery channels associated with the account. Currently, you can specify only one delivery channel per region in your account. 112 */ 113 describeDeliveryChannels(params: ConfigService.Types.DescribeDeliveryChannelsRequest, callback?: (err: AWSError, data: ConfigService.Types.DescribeDeliveryChannelsResponse) => void): Request<ConfigService.Types.DescribeDeliveryChannelsResponse, AWSError>; 114 /** 115 * Returns details about the specified delivery channel. If a delivery channel is not specified, this action returns the details of all delivery channels associated with the account. Currently, you can specify only one delivery channel per region in your account. 116 */ 117 describeDeliveryChannels(callback?: (err: AWSError, data: ConfigService.Types.DescribeDeliveryChannelsResponse) => void): Request<ConfigService.Types.DescribeDeliveryChannelsResponse, AWSError>; 118 /** 119 * Returns the evaluation results for the specified AWS Config rule. The results indicate which AWS resources were evaluated by the rule, when each resource was last evaluated, and whether each resource complies with the rule. 120 */ 121 getComplianceDetailsByConfigRule(params: ConfigService.Types.GetComplianceDetailsByConfigRuleRequest, callback?: (err: AWSError, data: ConfigService.Types.GetComplianceDetailsByConfigRuleResponse) => void): Request<ConfigService.Types.GetComplianceDetailsByConfigRuleResponse, AWSError>; 122 /** 123 * Returns the evaluation results for the specified AWS Config rule. The results indicate which AWS resources were evaluated by the rule, when each resource was last evaluated, and whether each resource complies with the rule. 124 */ 125 getComplianceDetailsByConfigRule(callback?: (err: AWSError, data: ConfigService.Types.GetComplianceDetailsByConfigRuleResponse) => void): Request<ConfigService.Types.GetComplianceDetailsByConfigRuleResponse, AWSError>; 126 /** 127 * Returns the evaluation results for the specified AWS resource. The results indicate which AWS Config rules were used to evaluate the resource, when each rule was last used, and whether the resource complies with each rule. 128 */ 129 getComplianceDetailsByResource(params: ConfigService.Types.GetComplianceDetailsByResourceRequest, callback?: (err: AWSError, data: ConfigService.Types.GetComplianceDetailsByResourceResponse) => void): Request<ConfigService.Types.GetComplianceDetailsByResourceResponse, AWSError>; 130 /** 131 * Returns the evaluation results for the specified AWS resource. The results indicate which AWS Config rules were used to evaluate the resource, when each rule was last used, and whether the resource complies with each rule. 132 */ 133 getComplianceDetailsByResource(callback?: (err: AWSError, data: ConfigService.Types.GetComplianceDetailsByResourceResponse) => void): Request<ConfigService.Types.GetComplianceDetailsByResourceResponse, AWSError>; 134 /** 135 * Returns the number of AWS Config rules that are compliant and noncompliant, up to a maximum of 25 for each. 136 */ 137 getComplianceSummaryByConfigRule(callback?: (err: AWSError, data: ConfigService.Types.GetComplianceSummaryByConfigRuleResponse) => void): Request<ConfigService.Types.GetComplianceSummaryByConfigRuleResponse, AWSError>; 138 /** 139 * Returns the number of resources that are compliant and the number that are noncompliant. You can specify one or more resource types to get these numbers for each resource type. The maximum number returned is 100. 140 */ 141 getComplianceSummaryByResourceType(params: ConfigService.Types.GetComplianceSummaryByResourceTypeRequest, callback?: (err: AWSError, data: ConfigService.Types.GetComplianceSummaryByResourceTypeResponse) => void): Request<ConfigService.Types.GetComplianceSummaryByResourceTypeResponse, AWSError>; 142 /** 143 * Returns the number of resources that are compliant and the number that are noncompliant. You can specify one or more resource types to get these numbers for each resource type. The maximum number returned is 100. 144 */ 145 getComplianceSummaryByResourceType(callback?: (err: AWSError, data: ConfigService.Types.GetComplianceSummaryByResourceTypeResponse) => void): Request<ConfigService.Types.GetComplianceSummaryByResourceTypeResponse, AWSError>; 146 /** 147 * Returns a list of configuration items for the specified resource. The list contains details about each state of the resource during the specified time interval. The response is paginated, and by default, AWS Config returns a limit of 10 configuration items per page. You can customize this number with the limit parameter. The response includes a nextToken string, and to get the next page of results, run the request again and enter this string for the nextToken parameter. Each call to the API is limited to span a duration of seven days. It is likely that the number of records returned is smaller than the specified limit. In such cases, you can make another call, using the nextToken. 148 */ 149 getResourceConfigHistory(params: ConfigService.Types.GetResourceConfigHistoryRequest, callback?: (err: AWSError, data: ConfigService.Types.GetResourceConfigHistoryResponse) => void): Request<ConfigService.Types.GetResourceConfigHistoryResponse, AWSError>; 150 /** 151 * Returns a list of configuration items for the specified resource. The list contains details about each state of the resource during the specified time interval. The response is paginated, and by default, AWS Config returns a limit of 10 configuration items per page. You can customize this number with the limit parameter. The response includes a nextToken string, and to get the next page of results, run the request again and enter this string for the nextToken parameter. Each call to the API is limited to span a duration of seven days. It is likely that the number of records returned is smaller than the specified limit. In such cases, you can make another call, using the nextToken. 152 */ 153 getResourceConfigHistory(callback?: (err: AWSError, data: ConfigService.Types.GetResourceConfigHistoryResponse) => void): Request<ConfigService.Types.GetResourceConfigHistoryResponse, AWSError>; 154 /** 155 * Accepts a resource type and returns a list of resource identifiers for the resources of that type. A resource identifier includes the resource type, ID, and (if available) the custom resource name. The results consist of resources that AWS Config has discovered, including those that AWS Config is not currently recording. You can narrow the results to include only resources that have specific resource IDs or a resource name. You can specify either resource IDs or a resource name but not both in the same request. The response is paginated, and by default AWS Config lists 100 resource identifiers on each page. You can customize this number with the limit parameter. The response includes a nextToken string, and to get the next page of results, run the request again and enter this string for the nextToken parameter. 156 */ 157 listDiscoveredResources(params: ConfigService.Types.ListDiscoveredResourcesRequest, callback?: (err: AWSError, data: ConfigService.Types.ListDiscoveredResourcesResponse) => void): Request<ConfigService.Types.ListDiscoveredResourcesResponse, AWSError>; 158 /** 159 * Accepts a resource type and returns a list of resource identifiers for the resources of that type. A resource identifier includes the resource type, ID, and (if available) the custom resource name. The results consist of resources that AWS Config has discovered, including those that AWS Config is not currently recording. You can narrow the results to include only resources that have specific resource IDs or a resource name. You can specify either resource IDs or a resource name but not both in the same request. The response is paginated, and by default AWS Config lists 100 resource identifiers on each page. You can customize this number with the limit parameter. The response includes a nextToken string, and to get the next page of results, run the request again and enter this string for the nextToken parameter. 160 */ 161 listDiscoveredResources(callback?: (err: AWSError, data: ConfigService.Types.ListDiscoveredResourcesResponse) => void): Request<ConfigService.Types.ListDiscoveredResourcesResponse, AWSError>; 162 /** 163 * Adds or updates an AWS Config rule for evaluating whether your AWS resources comply with your desired configurations. You can use this action for custom Config rules and AWS managed Config rules. A custom Config rule is a rule that you develop and maintain. An AWS managed Config rule is a customizable, predefined rule that AWS Config provides. If you are adding a new custom Config rule, you must first create the AWS Lambda function that the rule invokes to evaluate your resources. When you use the PutConfigRule action to add the rule to AWS Config, you must specify the Amazon Resource Name (ARN) that AWS Lambda assigns to the function. Specify the ARN for the SourceIdentifier key. This key is part of the Source object, which is part of the ConfigRule object. If you are adding a new AWS managed Config rule, specify the rule's identifier for the SourceIdentifier key. To reference AWS managed Config rule identifiers, see Using AWS Managed Config Rules. For any new rule that you add, specify the ConfigRuleName in the ConfigRule object. Do not specify the ConfigRuleArn or the ConfigRuleId. These values are generated by AWS Config for new rules. If you are updating a rule that you added previously, you can specify the rule by ConfigRuleName, ConfigRuleId, or ConfigRuleArn in the ConfigRule data type that you use in this request. The maximum number of rules that AWS Config supports is 25. For more information about developing and using AWS Config rules, see Evaluating AWS Resource Configurations with AWS Config in the AWS Config Developer Guide. 164 */ 165 putConfigRule(params: ConfigService.Types.PutConfigRuleRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 166 /** 167 * Adds or updates an AWS Config rule for evaluating whether your AWS resources comply with your desired configurations. You can use this action for custom Config rules and AWS managed Config rules. A custom Config rule is a rule that you develop and maintain. An AWS managed Config rule is a customizable, predefined rule that AWS Config provides. If you are adding a new custom Config rule, you must first create the AWS Lambda function that the rule invokes to evaluate your resources. When you use the PutConfigRule action to add the rule to AWS Config, you must specify the Amazon Resource Name (ARN) that AWS Lambda assigns to the function. Specify the ARN for the SourceIdentifier key. This key is part of the Source object, which is part of the ConfigRule object. If you are adding a new AWS managed Config rule, specify the rule's identifier for the SourceIdentifier key. To reference AWS managed Config rule identifiers, see Using AWS Managed Config Rules. For any new rule that you add, specify the ConfigRuleName in the ConfigRule object. Do not specify the ConfigRuleArn or the ConfigRuleId. These values are generated by AWS Config for new rules. If you are updating a rule that you added previously, you can specify the rule by ConfigRuleName, ConfigRuleId, or ConfigRuleArn in the ConfigRule data type that you use in this request. The maximum number of rules that AWS Config supports is 25. For more information about developing and using AWS Config rules, see Evaluating AWS Resource Configurations with AWS Config in the AWS Config Developer Guide. 168 */ 169 putConfigRule(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 170 /** 171 * Creates a new configuration recorder to record the selected resource configurations. You can use this action to change the role roleARN and/or the recordingGroup of an existing recorder. To change the role, call the action on the existing configuration recorder and specify a role. Currently, you can specify only one configuration recorder per region in your account. If ConfigurationRecorder does not have the recordingGroup parameter specified, the default is to record all supported resource types. 172 */ 173 putConfigurationRecorder(params: ConfigService.Types.PutConfigurationRecorderRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 174 /** 175 * Creates a new configuration recorder to record the selected resource configurations. You can use this action to change the role roleARN and/or the recordingGroup of an existing recorder. To change the role, call the action on the existing configuration recorder and specify a role. Currently, you can specify only one configuration recorder per region in your account. If ConfigurationRecorder does not have the recordingGroup parameter specified, the default is to record all supported resource types. 176 */ 177 putConfigurationRecorder(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 178 /** 179 * Creates a delivery channel object to deliver configuration information to an Amazon S3 bucket and Amazon SNS topic. Before you can create a delivery channel, you must create a configuration recorder. You can use this action to change the Amazon S3 bucket or an Amazon SNS topic of the existing delivery channel. To change the Amazon S3 bucket or an Amazon SNS topic, call this action and specify the changed values for the S3 bucket and the SNS topic. If you specify a different value for either the S3 bucket or the SNS topic, this action will keep the existing value for the parameter that is not changed. You can have only one delivery channel per region in your account. 180 */ 181 putDeliveryChannel(params: ConfigService.Types.PutDeliveryChannelRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 182 /** 183 * Creates a delivery channel object to deliver configuration information to an Amazon S3 bucket and Amazon SNS topic. Before you can create a delivery channel, you must create a configuration recorder. You can use this action to change the Amazon S3 bucket or an Amazon SNS topic of the existing delivery channel. To change the Amazon S3 bucket or an Amazon SNS topic, call this action and specify the changed values for the S3 bucket and the SNS topic. If you specify a different value for either the S3 bucket or the SNS topic, this action will keep the existing value for the parameter that is not changed. You can have only one delivery channel per region in your account. 184 */ 185 putDeliveryChannel(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 186 /** 187 * Used by an AWS Lambda function to deliver evaluation results to AWS Config. This action is required in every AWS Lambda function that is invoked by an AWS Config rule. 188 */ 189 putEvaluations(params: ConfigService.Types.PutEvaluationsRequest, callback?: (err: AWSError, data: ConfigService.Types.PutEvaluationsResponse) => void): Request<ConfigService.Types.PutEvaluationsResponse, AWSError>; 190 /** 191 * Used by an AWS Lambda function to deliver evaluation results to AWS Config. This action is required in every AWS Lambda function that is invoked by an AWS Config rule. 192 */ 193 putEvaluations(callback?: (err: AWSError, data: ConfigService.Types.PutEvaluationsResponse) => void): Request<ConfigService.Types.PutEvaluationsResponse, AWSError>; 194 /** 195 * Evaluates your resources against the specified Config rules. You can specify up to 25 Config rules per request. An existing StartConfigRulesEvaluation call must complete for the specified rules before you can call the API again. If you chose to have AWS Config stream to an Amazon SNS topic, you will receive a ConfigRuleEvaluationStarted notification when the evaluation starts. You don't need to call the StartConfigRulesEvaluation API to run an evaluation for a new rule. When you create a new rule, AWS Config automatically evaluates your resources against the rule. The StartConfigRulesEvaluation API is useful if you want to run on-demand evaluations, such as the following example: You have a custom rule that evaluates your IAM resources every 24 hours. You update your Lambda function to add additional conditions to your rule. Instead of waiting for the next periodic evaluation, you call the StartConfigRulesEvaluation API. AWS Config invokes your Lambda function and evaluates your IAM resources. Your custom rule will still run periodic evaluations every 24 hours. 196 */ 197 startConfigRulesEvaluation(params: ConfigService.Types.StartConfigRulesEvaluationRequest, callback?: (err: AWSError, data: ConfigService.Types.StartConfigRulesEvaluationResponse) => void): Request<ConfigService.Types.StartConfigRulesEvaluationResponse, AWSError>; 198 /** 199 * Evaluates your resources against the specified Config rules. You can specify up to 25 Config rules per request. An existing StartConfigRulesEvaluation call must complete for the specified rules before you can call the API again. If you chose to have AWS Config stream to an Amazon SNS topic, you will receive a ConfigRuleEvaluationStarted notification when the evaluation starts. You don't need to call the StartConfigRulesEvaluation API to run an evaluation for a new rule. When you create a new rule, AWS Config automatically evaluates your resources against the rule. The StartConfigRulesEvaluation API is useful if you want to run on-demand evaluations, such as the following example: You have a custom rule that evaluates your IAM resources every 24 hours. You update your Lambda function to add additional conditions to your rule. Instead of waiting for the next periodic evaluation, you call the StartConfigRulesEvaluation API. AWS Config invokes your Lambda function and evaluates your IAM resources. Your custom rule will still run periodic evaluations every 24 hours. 200 */ 201 startConfigRulesEvaluation(callback?: (err: AWSError, data: ConfigService.Types.StartConfigRulesEvaluationResponse) => void): Request<ConfigService.Types.StartConfigRulesEvaluationResponse, AWSError>; 202 /** 203 * Starts recording configurations of the AWS resources you have selected to record in your AWS account. You must have created at least one delivery channel to successfully start the configuration recorder. 204 */ 205 startConfigurationRecorder(params: ConfigService.Types.StartConfigurationRecorderRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 206 /** 207 * Starts recording configurations of the AWS resources you have selected to record in your AWS account. You must have created at least one delivery channel to successfully start the configuration recorder. 208 */ 209 startConfigurationRecorder(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 210 /** 211 * Stops recording configurations of the AWS resources you have selected to record in your AWS account. 212 */ 213 stopConfigurationRecorder(params: ConfigService.Types.StopConfigurationRecorderRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 214 /** 215 * Stops recording configurations of the AWS resources you have selected to record in your AWS account. 216 */ 217 stopConfigurationRecorder(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>; 218 } 219 declare namespace ConfigService.Types { 220 export type ARN = string; 221 export type AccountId = string; 222 export type AllSupported = boolean; 223 export type AvailabilityZone = string; 224 export type AwsRegion = string; 225 export type Boolean = boolean; 226 export type ChannelName = string; 227 export type ChronologicalOrder = "Reverse"|"Forward"|string; 228 export interface Compliance { 229 /** 230 * Indicates whether an AWS resource or AWS Config rule is compliant. A resource is compliant if it complies with all of the AWS Config rules that evaluate it, and it is noncompliant if it does not comply with one or more of these rules. A rule is compliant if all of the resources that the rule evaluates comply with it, and it is noncompliant if any of these resources do not comply. AWS Config returns the INSUFFICIENT_DATA value when no evaluation results are available for the AWS resource or Config rule. For the Compliance data type, AWS Config supports only COMPLIANT, NON_COMPLIANT, and INSUFFICIENT_DATA values. AWS Config does not support the NOT_APPLICABLE value for the Compliance data type. 231 */ 232 ComplianceType?: ComplianceType; 233 /** 234 * The number of AWS resources or AWS Config rules that cause a result of NON_COMPLIANT, up to a maximum number. 235 */ 236 ComplianceContributorCount?: ComplianceContributorCount; 237 } 238 export interface ComplianceByConfigRule { 239 /** 240 * The name of the AWS Config rule. 241 */ 242 ConfigRuleName?: StringWithCharLimit64; 243 /** 244 * Indicates whether the AWS Config rule is compliant. 245 */ 246 Compliance?: Compliance; 247 } 248 export type ComplianceByConfigRules = ComplianceByConfigRule[]; 249 export interface ComplianceByResource { 250 /** 251 * The type of the AWS resource that was evaluated. 252 */ 253 ResourceType?: StringWithCharLimit256; 254 /** 255 * The ID of the AWS resource that was evaluated. 256 */ 257 ResourceId?: StringWithCharLimit256; 258 /** 259 * Indicates whether the AWS resource complies with all of the AWS Config rules that evaluated it. 260 */ 261 Compliance?: Compliance; 262 } 263 export type ComplianceByResources = ComplianceByResource[]; 264 export interface ComplianceContributorCount { 265 /** 266 * The number of AWS resources or AWS Config rules responsible for the current compliance of the item. 267 */ 268 CappedCount?: Integer; 269 /** 270 * Indicates whether the maximum count is reached. 271 */ 272 CapExceeded?: Boolean; 273 } 274 export type ComplianceResourceTypes = StringWithCharLimit256[]; 275 export type ComplianceSummariesByResourceType = ComplianceSummaryByResourceType[]; 276 export interface ComplianceSummary { 277 /** 278 * The number of AWS Config rules or AWS resources that are compliant, up to a maximum of 25 for rules and 100 for resources. 279 */ 280 CompliantResourceCount?: ComplianceContributorCount; 281 /** 282 * The number of AWS Config rules or AWS resources that are noncompliant, up to a maximum of 25 for rules and 100 for resources. 283 */ 284 NonCompliantResourceCount?: ComplianceContributorCount; 285 /** 286 * The time that AWS Config created the compliance summary. 287 */ 288 ComplianceSummaryTimestamp?: _Date; 289 } 290 export interface ComplianceSummaryByResourceType { 291 /** 292 * The type of AWS resource. 293 */ 294 ResourceType?: StringWithCharLimit256; 295 /** 296 * The number of AWS resources that are compliant or noncompliant, up to a maximum of 100 for each compliance. 297 */ 298 ComplianceSummary?: ComplianceSummary; 299 } 300 export type ComplianceType = "COMPLIANT"|"NON_COMPLIANT"|"NOT_APPLICABLE"|"INSUFFICIENT_DATA"|string; 301 export type ComplianceTypes = ComplianceType[]; 302 export interface ConfigExportDeliveryInfo { 303 /** 304 * Status of the last attempted delivery. 305 */ 306 lastStatus?: DeliveryStatus; 307 /** 308 * The error code from the last attempted delivery. 309 */ 310 lastErrorCode?: String; 311 /** 312 * The error message from the last attempted delivery. 313 */ 314 lastErrorMessage?: String; 315 /** 316 * The time of the last attempted delivery. 317 */ 318 lastAttemptTime?: _Date; 319 /** 320 * The time of the last successful delivery. 321 */ 322 lastSuccessfulTime?: _Date; 323 /** 324 * The time that the next delivery occurs. 325 */ 326 nextDeliveryTime?: _Date; 327 } 328 export interface ConfigRule { 329 /** 330 * The name that you assign to the AWS Config rule. The name is required if you are adding a new rule. 331 */ 332 ConfigRuleName?: StringWithCharLimit64; 333 /** 334 * The Amazon Resource Name (ARN) of the AWS Config rule. 335 */ 336 ConfigRuleArn?: String; 337 /** 338 * The ID of the AWS Config rule. 339 */ 340 ConfigRuleId?: String; 341 /** 342 * The description that you provide for the AWS Config rule. 343 */ 344 Description?: EmptiableStringWithCharLimit256; 345 /** 346 * Defines which resources can trigger an evaluation for the rule. The scope can include one or more resource types, a combination of one resource type and one resource ID, or a combination of a tag key and value. Specify a scope to constrain the resources that can trigger an evaluation for the rule. If you do not specify a scope, evaluations are triggered when any resource in the recording group changes. 347 */ 348 Scope?: Scope; 349 /** 350 * Provides the rule owner (AWS or customer), the rule identifier, and the notifications that cause the function to evaluate your AWS resources. 351 */ 352 Source: Source; 353 /** 354 * A string in JSON format that is passed to the AWS Config rule Lambda function. 355 */ 356 InputParameters?: StringWithCharLimit256; 357 /** 358 * The maximum frequency with which AWS Config runs evaluations for a rule. You can specify a value for MaximumExecutionFrequency when: You are using an AWS managed rule that is triggered at a periodic frequency. Your custom rule is triggered when AWS Config delivers the configuration snapshot. For more information, see ConfigSnapshotDeliveryProperties. 359 */ 360 MaximumExecutionFrequency?: MaximumExecutionFrequency; 361 /** 362 * Indicates whether the AWS Config rule is active or is currently being deleted by AWS Config. It can also indicate the evaluation status for the Config rule. AWS Config sets the state of the rule to EVALUATING temporarily after you use the StartConfigRulesEvaluation request to evaluate your resources against the Config rule. AWS Config sets the state of the rule to DELETING_RESULTS temporarily after you use the DeleteEvaluationResults request to delete the current evaluation results for the Config rule. AWS Config sets the state of a rule to DELETING temporarily after you use the DeleteConfigRule request to delete the rule. After AWS Config deletes the rule, the rule and all of its evaluations are erased and are no longer available. 363 */ 364 ConfigRuleState?: ConfigRuleState; 365 } 366 export interface ConfigRuleEvaluationStatus { 367 /** 368 * The name of the AWS Config rule. 369 */ 370 ConfigRuleName?: StringWithCharLimit64; 371 /** 372 * The Amazon Resource Name (ARN) of the AWS Config rule. 373 */ 374 ConfigRuleArn?: String; 375 /** 376 * The ID of the AWS Config rule. 377 */ 378 ConfigRuleId?: String; 379 /** 380 * The time that AWS Config last successfully invoked the AWS Config rule to evaluate your AWS resources. 381 */ 382 LastSuccessfulInvocationTime?: _Date; 383 /** 384 * The time that AWS Config last failed to invoke the AWS Config rule to evaluate your AWS resources. 385 */ 386 LastFailedInvocationTime?: _Date; 387 /** 388 * The time that AWS Config last successfully evaluated your AWS resources against the rule. 389 */ 390 LastSuccessfulEvaluationTime?: _Date; 391 /** 392 * The time that AWS Config last failed to evaluate your AWS resources against the rule. 393 */ 394 LastFailedEvaluationTime?: _Date; 395 /** 396 * The time that you first activated the AWS Config rule. 397 */ 398 FirstActivatedTime?: _Date; 399 /** 400 * The error code that AWS Config returned when the rule last failed. 401 */ 402 LastErrorCode?: String; 403 /** 404 * The error message that AWS Config returned when the rule last failed. 405 */ 406 LastErrorMessage?: String; 407 /** 408 * Indicates whether AWS Config has evaluated your resources against the rule at least once. true - AWS Config has evaluated your AWS resources against the rule at least once. false - AWS Config has not once finished evaluating your AWS resources against the rule. 409 */ 410 FirstEvaluationStarted?: Boolean; 411 } 412 export type ConfigRuleEvaluationStatusList = ConfigRuleEvaluationStatus[]; 413 export type ConfigRuleNames = StringWithCharLimit64[]; 414 export type ConfigRuleState = "ACTIVE"|"DELETING"|"DELETING_RESULTS"|"EVALUATING"|string; 415 export type ConfigRules = ConfigRule[]; 416 export interface ConfigSnapshotDeliveryProperties { 417 /** 418 * The frequency with which AWS Config delivers configuration snapshots. 419 */ 420 deliveryFrequency?: MaximumExecutionFrequency; 421 } 422 export interface ConfigStreamDeliveryInfo { 423 /** 424 * Status of the last attempted delivery. Note Providing an SNS topic on a DeliveryChannel for AWS Config is optional. If the SNS delivery is turned off, the last status will be Not_Applicable. 425 */ 426 lastStatus?: DeliveryStatus; 427 /** 428 * The error code from the last attempted delivery. 429 */ 430 lastErrorCode?: String; 431 /** 432 * The error message from the last attempted delivery. 433 */ 434 lastErrorMessage?: String; 435 /** 436 * The time from the last status change. 437 */ 438 lastStatusChangeTime?: _Date; 439 } 440 export type Configuration = string; 441 export interface ConfigurationItem { 442 /** 443 * The version number of the resource configuration. 444 */ 445 version?: Version; 446 /** 447 * The 12 digit AWS account ID associated with the resource. 448 */ 449 accountId?: AccountId; 450 /** 451 * The time when the configuration recording was initiated. 452 */ 453 configurationItemCaptureTime?: ConfigurationItemCaptureTime; 454 /** 455 * The configuration item status. 456 */ 457 configurationItemStatus?: ConfigurationItemStatus; 458 /** 459 * An identifier that indicates the ordering of the configuration items of a resource. 460 */ 461 configurationStateId?: ConfigurationStateId; 462 /** 463 * Unique MD5 hash that represents the configuration item's state. You can use MD5 hash to compare the states of two or more configuration items that are associated with the same resource. 464 */ 465 configurationItemMD5Hash?: ConfigurationItemMD5Hash; 466 /** 467 * The Amazon Resource Name (ARN) of the resource. 468 */ 469 arn?: ARN; 470 /** 471 * The type of AWS resource. 472 */ 473 resourceType?: ResourceType; 474 /** 475 * The ID of the resource (for example., sg-xxxxxx). 476 */ 477 resourceId?: ResourceId; 478 /** 479 * The custom name of the resource, if available. 480 */ 481 resourceName?: ResourceName; 482 /** 483 * The region where the resource resides. 484 */ 485 awsRegion?: AwsRegion; 486 /** 487 * The Availability Zone associated with the resource. 488 */ 489 availabilityZone?: AvailabilityZone; 490 /** 491 * The time stamp when the resource was created. 492 */ 493 resourceCreationTime?: ResourceCreationTime; 494 /** 495 * A mapping of key value tags associated with the resource. 496 */ 497 tags?: Tags; 498 /** 499 * A list of CloudTrail event IDs. A populated field indicates that the current configuration was initiated by the events recorded in the CloudTrail log. For more information about CloudTrail, see What is AWS CloudTrail?. An empty field indicates that the current configuration was not initiated by any event. 500 */ 501 relatedEvents?: RelatedEventList; 502 /** 503 * A list of related AWS resources. 504 */ 505 relationships?: RelationshipList; 506 /** 507 * The description of the resource configuration. 508 */ 509 configuration?: Configuration; 510 /** 511 * Configuration attributes that AWS Config returns for certain resource types to supplement the information returned for the configuration parameter. 512 */ 513 supplementaryConfiguration?: SupplementaryConfiguration; 514 } 515 export type ConfigurationItemCaptureTime = Date; 516 export type ConfigurationItemList = ConfigurationItem[]; 517 export type ConfigurationItemMD5Hash = string; 518 export type ConfigurationItemStatus = "Ok"|"Failed"|"Discovered"|"Deleted"|string; 519 export interface ConfigurationRecorder { 520 /** 521 * The name of the recorder. By default, AWS Config automatically assigns the name "default" when creating the configuration recorder. You cannot change the assigned name. 522 */ 523 name?: RecorderName; 524 /** 525 * Amazon Resource Name (ARN) of the IAM role used to describe the AWS resources associated with the account. 526 */ 527 roleARN?: String; 528 /** 529 * Specifies the types of AWS resource for which AWS Config records configuration changes. 530 */ 531 recordingGroup?: RecordingGroup; 532 } 533 export type ConfigurationRecorderList = ConfigurationRecorder[]; 534 export type ConfigurationRecorderNameList = RecorderName[]; 535 export interface ConfigurationRecorderStatus { 536 /** 537 * The name of the configuration recorder. 538 */ 539 name?: String; 540 /** 541 * The time the recorder was last started. 542 */ 543 lastStartTime?: _Date; 544 /** 545 * The time the recorder was last stopped. 546 */ 547 lastStopTime?: _Date; 548 /** 549 * Specifies whether the recorder is currently recording or not. 550 */ 551 recording?: Boolean; 552 /** 553 * The last (previous) status of the recorder. 554 */ 555 lastStatus?: RecorderStatus; 556 /** 557 * The error code indicating that the recording failed. 558 */ 559 lastErrorCode?: String; 560 /** 561 * The message indicating that the recording failed due to an error. 562 */ 563 lastErrorMessage?: String; 564 /** 565 * The time when the status was last changed. 566 */ 567 lastStatusChangeTime?: _Date; 568 } 569 export type ConfigurationRecorderStatusList = ConfigurationRecorderStatus[]; 570 export type ConfigurationStateId = string; 571 export type _Date = Date; 572 export interface DeleteConfigRuleRequest { 573 /** 574 * The name of the AWS Config rule that you want to delete. 575 */ 576 ConfigRuleName: StringWithCharLimit64; 577 } 578 export interface DeleteConfigurationRecorderRequest { 579 /** 580 * The name of the configuration recorder to be deleted. You can retrieve the name of your configuration recorder by using the DescribeConfigurationRecorders action. 581 */ 582 ConfigurationRecorderName: RecorderName; 583 } 584 export interface DeleteDeliveryChannelRequest { 585 /** 586 * The name of the delivery channel to delete. 587 */ 588 DeliveryChannelName: ChannelName; 589 } 590 export interface DeleteEvaluationResultsRequest { 591 /** 592 * The name of the Config rule for which you want to delete the evaluation results. 593 */ 594 ConfigRuleName: StringWithCharLimit64; 595 } 596 export interface DeleteEvaluationResultsResponse { 597 } 598 export interface DeliverConfigSnapshotRequest { 599 /** 600 * The name of the delivery channel through which the snapshot is delivered. 601 */ 602 deliveryChannelName: ChannelName; 603 } 604 export interface DeliverConfigSnapshotResponse { 605 /** 606 * The ID of the snapshot that is being created. 607 */ 608 configSnapshotId?: String; 609 } 610 export interface DeliveryChannel { 611 /** 612 * The name of the delivery channel. By default, AWS Config assigns the name "default" when creating the delivery channel. To change the delivery channel name, you must use the DeleteDeliveryChannel action to delete your current delivery channel, and then you must use the PutDeliveryChannel command to create a delivery channel that has the desired name. 613 */ 614 name?: ChannelName; 615 /** 616 * The name of the Amazon S3 bucket to which AWS Config delivers configuration snapshots and configuration history files. If you specify a bucket that belongs to another AWS account, that bucket must have policies that grant access permissions to AWS Config. For more information, see Permissions for the Amazon S3 Bucket in the AWS Config Developer Guide. 617 */ 618 s3BucketName?: String; 619 /** 620 * The prefix for the specified Amazon S3 bucket. 621 */ 622 s3KeyPrefix?: String; 623 /** 624 * The Amazon Resource Name (ARN) of the Amazon SNS topic to which AWS Config sends notifications about configuration changes. If you choose a topic from another account, the topic must have policies that grant access permissions to AWS Config. For more information, see Permissions for the Amazon SNS Topic in the AWS Config Developer Guide. 625 */ 626 snsTopicARN?: String; 627 configSnapshotDeliveryProperties?: ConfigSnapshotDeliveryProperties; 628 } 629 export type DeliveryChannelList = DeliveryChannel[]; 630 export type DeliveryChannelNameList = ChannelName[]; 631 export interface DeliveryChannelStatus { 632 /** 633 * The name of the delivery channel. 634 */ 635 name?: String; 636 /** 637 * A list containing the status of the delivery of the snapshot to the specified Amazon S3 bucket. 638 */ 639 configSnapshotDeliveryInfo?: ConfigExportDeliveryInfo; 640 /** 641 * A list that contains the status of the delivery of the configuration history to the specified Amazon S3 bucket. 642 */ 643 configHistoryDeliveryInfo?: ConfigExportDeliveryInfo; 644 /** 645 * A list containing the status of the delivery of the configuration stream notification to the specified Amazon SNS topic. 646 */ 647 configStreamDeliveryInfo?: ConfigStreamDeliveryInfo; 648 } 649 export type DeliveryChannelStatusList = DeliveryChannelStatus[]; 650 export type DeliveryStatus = "Success"|"Failure"|"Not_Applicable"|string; 651 export interface DescribeComplianceByConfigRuleRequest { 652 /** 653 * Specify one or more AWS Config rule names to filter the results by rule. 654 */ 655 ConfigRuleNames?: ConfigRuleNames; 656 /** 657 * Filters the results by compliance. The allowed values are COMPLIANT, NON_COMPLIANT, and INSUFFICIENT_DATA. 658 */ 659 ComplianceTypes?: ComplianceTypes; 660 /** 661 * The nextToken string returned on a previous page that you use to get the next page of results in a paginated response. 662 */ 663 NextToken?: String; 664 } 665 export interface DescribeComplianceByConfigRuleResponse { 666 /** 667 * Indicates whether each of the specified AWS Config rules is compliant. 668 */ 669 ComplianceByConfigRules?: ComplianceByConfigRules; 670 /** 671 * The string that you use in a subsequent request to get the next page of results in a paginated response. 672 */ 673 NextToken?: String; 674 } 675 export interface DescribeComplianceByResourceRequest { 676 /** 677 * The types of AWS resources for which you want compliance information; for example, AWS::EC2::Instance. For this action, you can specify that the resource type is an AWS account by specifying AWS::::Account. 678 */ 679 ResourceType?: StringWithCharLimit256; 680 /** 681 * The ID of the AWS resource for which you want compliance information. You can specify only one resource ID. If you specify a resource ID, you must also specify a type for ResourceType. 682 */ 683 ResourceId?: StringWithCharLimit256; 684 /** 685 * Filters the results by compliance. The allowed values are COMPLIANT, NON_COMPLIANT, and INSUFFICIENT_DATA. 686 */ 687 ComplianceTypes?: ComplianceTypes; 688 /** 689 * The maximum number of evaluation results returned on each page. The default is 10. You cannot specify a limit greater than 100. If you specify 0, AWS Config uses the default. 690 */ 691 Limit?: Limit; 692 /** 693 * The nextToken string returned on a previous page that you use to get the next page of results in a paginated response. 694 */ 695 NextToken?: NextToken; 696 } 697 export interface DescribeComplianceByResourceResponse { 698 /** 699 * Indicates whether the specified AWS resource complies with all of the AWS Config rules that evaluate it. 700 */ 701 ComplianceByResources?: ComplianceByResources; 702 /** 703 * The string that you use in a subsequent request to get the next page of results in a paginated response. 704 */ 705 NextToken?: NextToken; 706 } 707 export interface DescribeConfigRuleEvaluationStatusRequest { 708 /** 709 * The name of the AWS managed Config rules for which you want status information. If you do not specify any names, AWS Config returns status information for all AWS managed Config rules that you use. 710 */ 711 ConfigRuleNames?: ConfigRuleNames; 712 } 713 export interface DescribeConfigRuleEvaluationStatusResponse { 714 /** 715 * Status information about your AWS managed Config rules. 716 */ 717 ConfigRulesEvaluationStatus?: ConfigRuleEvaluationStatusList; 718 } 719 export interface DescribeConfigRulesRequest { 720 /** 721 * The names of the AWS Config rules for which you want details. If you do not specify any names, AWS Config returns details for all your rules. 722 */ 723 ConfigRuleNames?: ConfigRuleNames; 724 /** 725 * The nextToken string returned on a previous page that you use to get the next page of results in a paginated response. 726 */ 727 NextToken?: String; 728 } 729 export interface DescribeConfigRulesResponse { 730 /** 731 * The details about your AWS Config rules. 732 */ 733 ConfigRules?: ConfigRules; 734 /** 735 * The string that you use in a subsequent request to get the next page of results in a paginated response. 736 */ 737 NextToken?: String; 738 } 739 export interface DescribeConfigurationRecorderStatusRequest { 740 /** 741 * The name(s) of the configuration recorder. If the name is not specified, the action returns the current status of all the configuration recorders associated with the account. 742 */ 743 ConfigurationRecorderNames?: ConfigurationRecorderNameList; 744 } 745 export interface DescribeConfigurationRecorderStatusResponse { 746 /** 747 * A list that contains status of the specified recorders. 748 */ 749 ConfigurationRecordersStatus?: ConfigurationRecorderStatusList; 750 } 751 export interface DescribeConfigurationRecordersRequest { 752 /** 753 * A list of configuration recorder names. 754 */ 755 ConfigurationRecorderNames?: ConfigurationRecorderNameList; 756 } 757 export interface DescribeConfigurationRecordersResponse { 758 /** 759 * A list that contains the descriptions of the specified configuration recorders. 760 */ 761 ConfigurationRecorders?: ConfigurationRecorderList; 762 } 763 export interface DescribeDeliveryChannelStatusRequest { 764 /** 765 * A list of delivery channel names. 766 */ 767 DeliveryChannelNames?: DeliveryChannelNameList; 768 } 769 export interface DescribeDeliveryChannelStatusResponse { 770 /** 771 * A list that contains the status of a specified delivery channel. 772 */ 773 DeliveryChannelsStatus?: DeliveryChannelStatusList; 774 } 775 export interface DescribeDeliveryChannelsRequest { 776 /** 777 * A list of delivery channel names. 778 */ 779 DeliveryChannelNames?: DeliveryChannelNameList; 780 } 781 export interface DescribeDeliveryChannelsResponse { 782 /** 783 * A list that contains the descriptions of the specified delivery channel. 784 */ 785 DeliveryChannels?: DeliveryChannelList; 786 } 787 export type EarlierTime = Date; 788 export type EmptiableStringWithCharLimit256 = string; 789 export interface Evaluation { 790 /** 791 * The type of AWS resource that was evaluated. 792 */ 793 ComplianceResourceType: StringWithCharLimit256; 794 /** 795 * The ID of the AWS resource that was evaluated. 796 */ 797 ComplianceResourceId: StringWithCharLimit256; 798 /** 799 * Indicates whether the AWS resource complies with the AWS Config rule that it was evaluated against. For the Evaluation data type, AWS Config supports only the COMPLIANT, NON_COMPLIANT, and NOT_APPLICABLE values. AWS Config does not support the INSUFFICIENT_DATA value for this data type. Similarly, AWS Config does not accept INSUFFICIENT_DATA as the value for ComplianceType from a PutEvaluations request. For example, an AWS Lambda function for a custom Config rule cannot pass an INSUFFICIENT_DATA value to AWS Config. 800 */ 801 ComplianceType: ComplianceType; 802 /** 803 * Supplementary information about how the evaluation determined the compliance. 804 */ 805 Annotation?: StringWithCharLimit256; 806 /** 807 * The time of the event in AWS Config that triggered the evaluation. For event-based evaluations, the time indicates when AWS Config created the configuration item that triggered the evaluation. For periodic evaluations, the time indicates when AWS Config delivered the configuration snapshot that triggered the evaluation. 808 */ 809 OrderingTimestamp: OrderingTimestamp; 810 } 811 export interface EvaluationResult { 812 /** 813 * Uniquely identifies the evaluation result. 814 */ 815 EvaluationResultIdentifier?: EvaluationResultIdentifier; 816 /** 817 * Indicates whether the AWS resource complies with the AWS Config rule that evaluated it. For the EvaluationResult data type, AWS Config supports only the COMPLIANT, NON_COMPLIANT, and NOT_APPLICABLE values. AWS Config does not support the INSUFFICIENT_DATA value for the EvaluationResult data type. 818 */ 819 ComplianceType?: ComplianceType; 820 /** 821 * The time when AWS Config recorded the evaluation result. 822 */ 823 ResultRecordedTime?: _Date; 824 /** 825 * The time when the AWS Config rule evaluated the AWS resource. 826 */ 827 ConfigRuleInvokedTime?: _Date; 828 /** 829 * Supplementary information about how the evaluation determined the compliance. 830 */ 831 Annotation?: StringWithCharLimit256; 832 /** 833 * An encrypted token that associates an evaluation with an AWS Config rule. The token identifies the rule, the AWS resource being evaluated, and the event that triggered the evaluation. 834 */ 835 ResultToken?: String; 836 } 837 export interface EvaluationResultIdentifier { 838 /** 839 * Identifies an AWS Config rule used to evaluate an AWS resource, and provides the type and ID of the evaluated resource. 840 */ 841 EvaluationResultQualifier?: EvaluationResultQualifier; 842 /** 843 * The time of the event that triggered the evaluation of your AWS resources. The time can indicate when AWS Config delivered a configuration item change notification, or it can indicate when AWS Config delivered the configuration snapshot, depending on which event triggered the evaluation. 844 */ 845 OrderingTimestamp?: _Date; 846 } 847 export interface EvaluationResultQualifier { 848 /** 849 * The name of the AWS Config rule that was used in the evaluation. 850 */ 851 ConfigRuleName?: StringWithCharLimit64; 852 /** 853 * The type of AWS resource that was evaluated. 854 */ 855 ResourceType?: StringWithCharLimit256; 856 /** 857 * The ID of the evaluated AWS resource. 858 */ 859 ResourceId?: StringWithCharLimit256; 860 } 861 export type EvaluationResults = EvaluationResult[]; 862 export type Evaluations = Evaluation[]; 863 export type EventSource = "aws.config"|string; 864 export interface GetComplianceDetailsByConfigRuleRequest { 865 /** 866 * The name of the AWS Config rule for which you want compliance information. 867 */ 868 ConfigRuleName: StringWithCharLimit64; 869 /** 870 * Filters the results by compliance. The allowed values are COMPLIANT, NON_COMPLIANT, and NOT_APPLICABLE. 871 */ 872 ComplianceTypes?: ComplianceTypes; 873 /** 874 * The maximum number of evaluation results returned on each page. The default is 10. You cannot specify a limit greater than 100. If you specify 0, AWS Config uses the default. 875 */ 876 Limit?: Limit; 877 /** 878 * The nextToken string returned on a previous page that you use to get the next page of results in a paginated response. 879 */ 880 NextToken?: NextToken; 881 } 882 export interface GetComplianceDetailsByConfigRuleResponse { 883 /** 884 * Indicates whether the AWS resource complies with the specified AWS Config rule. 885 */ 886 EvaluationResults?: EvaluationResults; 887 /** 888 * The string that you use in a subsequent request to get the next page of results in a paginated response. 889 */ 890 NextToken?: NextToken; 891 } 892 export interface GetComplianceDetailsByResourceRequest { 893 /** 894 * The type of the AWS resource for which you want compliance information. 895 */ 896 ResourceType: StringWithCharLimit256; 897 /** 898 * The ID of the AWS resource for which you want compliance information. 899 */ 900 ResourceId: StringWithCharLimit256; 901 /** 902 * Filters the results by compliance. The allowed values are COMPLIANT, NON_COMPLIANT, and NOT_APPLICABLE. 903 */ 904 ComplianceTypes?: ComplianceTypes; 905 /** 906 * The nextToken string returned on a previous page that you use to get the next page of results in a paginated response. 907 */ 908 NextToken?: String; 909 } 910 export interface GetComplianceDetailsByResourceResponse { 911 /** 912 * Indicates whether the specified AWS resource complies each AWS Config rule. 913 */ 914 EvaluationResults?: EvaluationResults; 915 /** 916 * The string that you use in a subsequent request to get the next page of results in a paginated response. 917 */ 918 NextToken?: String; 919 } 920 export interface GetComplianceSummaryByConfigRuleResponse { 921 /** 922 * The number of AWS Config rules that are compliant and the number that are noncompliant, up to a maximum of 25 for each. 923 */ 924 ComplianceSummary?: ComplianceSummary; 925 } 926 export interface GetComplianceSummaryByResourceTypeRequest { 927 /** 928 * Specify one or more resource types to get the number of resources that are compliant and the number that are noncompliant for each resource type. For this request, you can specify an AWS resource type such as AWS::EC2::Instance, and you can specify that the resource type is an AWS account by specifying AWS::::Account. 929 */ 930 ResourceTypes?: ResourceTypes; 931 } 932 export interface GetComplianceSummaryByResourceTypeResponse { 933 /** 934 * The number of resources that are compliant and the number that are noncompliant. If one or more resource types were provided with the request, the numbers are returned for each resource type. The maximum number returned is 100. 935 */ 936 ComplianceSummariesByResourceType?: ComplianceSummariesByResourceType; 937 } 938 export interface GetResourceConfigHistoryRequest { 939 /** 940 * The resource type. 941 */ 942 resourceType: ResourceType; 943 /** 944 * The ID of the resource (for example., sg-xxxxxx). 945 */ 946 resourceId: ResourceId; 947 /** 948 * The time stamp that indicates a later time. If not specified, current time is taken. 949 */ 950 laterTime?: LaterTime; 951 /** 952 * The time stamp that indicates an earlier time. If not specified, the action returns paginated results that contain configuration items that start from when the first configuration item was recorded. 953 */ 954 earlierTime?: EarlierTime; 955 /** 956 * The chronological order for configuration items listed. By default the results are listed in reverse chronological order. 957 */ 958 chronologicalOrder?: ChronologicalOrder; 959 /** 960 * The maximum number of configuration items returned on each page. The default is 10. You cannot specify a limit greater than 100. If you specify 0, AWS Config uses the default. 961 */ 962 limit?: Limit; 963 /** 964 * The nextToken string returned on a previous page that you use to get the next page of results in a paginated response. 965 */ 966 nextToken?: NextToken; 967 } 968 export interface GetResourceConfigHistoryResponse { 969 /** 970 * A list that contains the configuration history of one or more resources. 971 */ 972 configurationItems?: ConfigurationItemList; 973 /** 974 * The string that you use in a subsequent request to get the next page of results in a paginated response. 975 */ 976 nextToken?: NextToken; 977 } 978 export type IncludeGlobalResourceTypes = boolean; 979 export type Integer = number; 980 export type LaterTime = Date; 981 export type Limit = number; 982 export interface ListDiscoveredResourcesRequest { 983 /** 984 * The type of resources that you want AWS Config to list in the response. 985 */ 986 resourceType: ResourceType; 987 /** 988 * The IDs of only those resources that you want AWS Config to list in the response. If you do not specify this parameter, AWS Config lists all resources of the specified type that it has discovered. 989 */ 990 resourceIds?: ResourceIdList; 991 /** 992 * The custom name of only those resources that you want AWS Config to list in the response. If you do not specify this parameter, AWS Config lists all resources of the specified type that it has discovered. 993 */ 994 resourceName?: ResourceName; 995 /** 996 * The maximum number of resource identifiers returned on each page. The default is 100. You cannot specify a limit greater than 100. If you specify 0, AWS Config uses the default. 997 */ 998 limit?: Limit; 999 /** 1000 * Specifies whether AWS Config includes deleted resources in the results. By default, deleted resources are not included. 1001 */ 1002 includeDeletedResources?: Boolean; 1003 /** 1004 * The nextToken string returned on a previous page that you use to get the next page of results in a paginated response. 1005 */ 1006 nextToken?: NextToken; 1007 } 1008 export interface ListDiscoveredResourcesResponse { 1009 /** 1010 * The details that identify a resource that is discovered by AWS Config, including the resource type, ID, and (if available) the custom resource name. 1011 */ 1012 resourceIdentifiers?: ResourceIdentifierList; 1013 /** 1014 * The string that you use in a subsequent request to get the next page of results in a paginated response. 1015 */ 1016 nextToken?: NextToken; 1017 } 1018 export type MaximumExecutionFrequency = "One_Hour"|"Three_Hours"|"Six_Hours"|"Twelve_Hours"|"TwentyFour_Hours"|string; 1019 export type MessageType = "ConfigurationItemChangeNotification"|"ConfigurationSnapshotDeliveryCompleted"|"ScheduledNotification"|string; 1020 export type Name = string; 1021 export type NextToken = string; 1022 export type OrderingTimestamp = Date; 1023 export type Owner = "CUSTOM_LAMBDA"|"AWS"|string; 1024 export interface PutConfigRuleRequest { 1025 ConfigRule: ConfigRule; 1026 } 1027 export interface PutConfigurationRecorderRequest { 1028 /** 1029 * The configuration recorder object that records each configuration change made to the resources. 1030 */ 1031 ConfigurationRecorder: ConfigurationRecorder; 1032 } 1033 export interface PutDeliveryChannelRequest { 1034 /** 1035 * The configuration delivery channel object that delivers the configuration information to an Amazon S3 bucket, and to an Amazon SNS topic. 1036 */ 1037 DeliveryChannel: DeliveryChannel; 1038 } 1039 export interface PutEvaluationsRequest { 1040 /** 1041 * The assessments that the AWS Lambda function performs. Each evaluation identifies an AWS resource and indicates whether it complies with the AWS Config rule that invokes the AWS Lambda function. 1042 */ 1043 Evaluations?: Evaluations; 1044 /** 1045 * An encrypted token that associates an evaluation with an AWS Config rule. Identifies the rule and the event that triggered the evaluation 1046 */ 1047 ResultToken: String; 1048 } 1049 export interface PutEvaluationsResponse { 1050 /** 1051 * Requests that failed because of a client or server error. 1052 */ 1053 FailedEvaluations?: Evaluations; 1054 } 1055 export type RecorderName = string; 1056 export type RecorderStatus = "Pending"|"Success"|"Failure"|string; 1057 export interface RecordingGroup { 1058 /** 1059 * Specifies whether AWS Config records configuration changes for every supported type of regional resource. If you set this option to true, when AWS Config adds support for a new type of regional resource, it automatically starts recording resources of that type. If you set this option to true, you cannot enumerate a list of resourceTypes. 1060 */ 1061 allSupported?: AllSupported; 1062 /** 1063 * Specifies whether AWS Config includes all supported types of global resources (for example, IAM resources) with the resources that it records. Before you can set this option to true, you must set the allSupported option to true. If you set this option to true, when AWS Config adds support for a new type of global resource, it automatically starts recording resources of that type. The configuration details for any global resource are the same in all regions. To prevent duplicate configuration items, you should consider customizing AWS Config in only one region to record global resources. 1064 */ 1065 includeGlobalResourceTypes?: IncludeGlobalResourceTypes; 1066 /** 1067 * A comma-separated list that specifies the types of AWS resources for which AWS Config records configuration changes (for example, AWS::EC2::Instance or AWS::CloudTrail::Trail). Before you can set this option to true, you must set the allSupported option to false. If you set this option to true, when AWS Config adds support for a new type of resource, it will not record resources of that type unless you manually add that type to your recording group. For a list of valid resourceTypes values, see the resourceType Value column in Supported AWS Resource Types. 1068 */ 1069 resourceTypes?: ResourceTypeList; 1070 } 1071 export type ReevaluateConfigRuleNames = StringWithCharLimit64[]; 1072 export type RelatedEvent = string; 1073 export type RelatedEventList = RelatedEvent[]; 1074 export interface Relationship { 1075 /** 1076 * The resource type of the related resource. 1077 */ 1078 resourceType?: ResourceType; 1079 /** 1080 * The ID of the related resource (for example, sg-xxxxxx). 1081 */ 1082 resourceId?: ResourceId; 1083 /** 1084 * The custom name of the related resource, if available. 1085 */ 1086 resourceName?: ResourceName; 1087 /** 1088 * The type of relationship with the related resource. 1089 */ 1090 relationshipName?: RelationshipName; 1091 } 1092 export type RelationshipList = Relationship[]; 1093 export type RelationshipName = string; 1094 export type ResourceCreationTime = Date; 1095 export type ResourceDeletionTime = Date; 1096 export type ResourceId = string; 1097 export type ResourceIdList = ResourceId[]; 1098 export interface ResourceIdentifier { 1099 /** 1100 * The type of resource. 1101 */ 1102 resourceType?: ResourceType; 1103 /** 1104 * The ID of the resource (for example., sg-xxxxxx). 1105 */ 1106 resourceId?: ResourceId; 1107 /** 1108 * The custom name of the resource (if available). 1109 */ 1110 resourceName?: ResourceName; 1111 /** 1112 * The time that the resource was deleted. 1113 */ 1114 resourceDeletionTime?: ResourceDeletionTime; 1115 } 1116 export type ResourceIdentifierList = ResourceIdentifier[]; 1117 export type ResourceName = string; 1118 export type ResourceType = "AWS::EC2::CustomerGateway"|"AWS::EC2::EIP"|"AWS::EC2::Host"|"AWS::EC2::Instance"|"AWS::EC2::InternetGateway"|"AWS::EC2::NetworkAcl"|"AWS::EC2::NetworkInterface"|"AWS::EC2::RouteTable"|"AWS::EC2::SecurityGroup"|"AWS::EC2::Subnet"|"AWS::CloudTrail::Trail"|"AWS::EC2::Volume"|"AWS::EC2::VPC"|"AWS::EC2::VPNConnection"|"AWS::EC2::VPNGateway"|"AWS::IAM::Group"|"AWS::IAM::Policy"|"AWS::IAM::Role"|"AWS::IAM::User"|"AWS::ACM::Certificate"|"AWS::RDS::DBInstance"|"AWS::RDS::DBSubnetGroup"|"AWS::RDS::DBSecurityGroup"|"AWS::RDS::DBSnapshot"|"AWS::RDS::EventSubscription"|"AWS::ElasticLoadBalancingV2::LoadBalancer"|"AWS::S3::Bucket"|string; 1119 export type ResourceTypeList = ResourceType[]; 1120 export type ResourceTypes = StringWithCharLimit256[]; 1121 export interface Scope { 1122 /** 1123 * The resource types of only those AWS resources that you want to trigger an evaluation for the rule. You can only specify one type if you also specify a resource ID for ComplianceResourceId. 1124 */ 1125 ComplianceResourceTypes?: ComplianceResourceTypes; 1126 /** 1127 * The tag key that is applied to only those AWS resources that you want you want to trigger an evaluation for the rule. 1128 */ 1129 TagKey?: StringWithCharLimit128; 1130 /** 1131 * The tag value applied to only those AWS resources that you want to trigger an evaluation for the rule. If you specify a value for TagValue, you must also specify a value for TagKey. 1132 */ 1133 TagValue?: StringWithCharLimit256; 1134 /** 1135 * The IDs of the only AWS resource that you want to trigger an evaluation for the rule. If you specify a resource ID, you must specify one resource type for ComplianceResourceTypes. 1136 */ 1137 ComplianceResourceId?: StringWithCharLimit256; 1138 } 1139 export interface Source { 1140 /** 1141 * Indicates whether AWS or the customer owns and manages the AWS Config rule. 1142 */ 1143 Owner?: Owner; 1144 /** 1145 * For AWS Config managed rules, a predefined identifier from a list. For example, IAM_PASSWORD_POLICY is a managed rule. To reference a managed rule, see Using AWS Managed Config Rules. For custom rules, the identifier is the Amazon Resource Name (ARN) of the rule's AWS Lambda function, such as arn:aws:lambda:us-east-1:123456789012:function:custom_rule_name. 1146 */ 1147 SourceIdentifier?: StringWithCharLimit256; 1148 /** 1149 * Provides the source and type of the event that causes AWS Config to evaluate your AWS resources. 1150 */ 1151 SourceDetails?: SourceDetails; 1152 } 1153 export interface SourceDetail { 1154 /** 1155 * The source of the event, such as an AWS service, that triggers AWS Config to evaluate your AWS resources. 1156 */ 1157 EventSource?: EventSource; 1158 /** 1159 * The type of notification that triggers AWS Config to run an evaluation. You can specify the following notification types: ConfigurationItemChangeNotification - Triggers an evaluation when AWS Config delivers a configuration item change notification. ScheduledNotification - Triggers a periodic evaluation at the frequency specified for MaximumExecutionFrequency. ConfigurationSnapshotDeliveryCompleted - Triggers a periodic evaluation when AWS Config delivers a configuration snapshot. 1160 */ 1161 MessageType?: MessageType; 1162 /** 1163 * The frequency that you want AWS Config to run evaluations for a rule that is triggered periodically. If you specify a value for MaximumExecutionFrequency, then MessageType must use the ScheduledNotification value. 1164 */ 1165 MaximumExecutionFrequency?: MaximumExecutionFrequency; 1166 } 1167 export type SourceDetails = SourceDetail[]; 1168 export interface StartConfigRulesEvaluationRequest { 1169 /** 1170 * The list of names of Config rules that you want to run evaluations for. 1171 */ 1172 ConfigRuleNames?: ReevaluateConfigRuleNames; 1173 } 1174 export interface StartConfigRulesEvaluationResponse { 1175 } 1176 export interface StartConfigurationRecorderRequest { 1177 /** 1178 * The name of the recorder object that records each configuration change made to the resources. 1179 */ 1180 ConfigurationRecorderName: RecorderName; 1181 } 1182 export interface StopConfigurationRecorderRequest { 1183 /** 1184 * The name of the recorder object that records each configuration change made to the resources. 1185 */ 1186 ConfigurationRecorderName: RecorderName; 1187 } 1188 export type String = string; 1189 export type StringWithCharLimit128 = string; 1190 export type StringWithCharLimit256 = string; 1191 export type StringWithCharLimit64 = string; 1192 export type SupplementaryConfiguration = {[key: string]: SupplementaryConfigurationValue}; 1193 export type SupplementaryConfigurationName = string; 1194 export type SupplementaryConfigurationValue = string; 1195 export type Tags = {[key: string]: Value}; 1196 export type Value = string; 1197 export type Version = string; 1198 /** 1199 * 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. 1200 */ 1201 export type apiVersion = "2014-11-12"|"latest"|string; 1202 export interface ClientApiVersions { 1203 /** 1204 * 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. 1205 */ 1206 apiVersion?: apiVersion; 1207 } 1208 export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions; 1209 } 1210 export = ConfigService;