Skip to content

Commit

Permalink
Update Config models for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeskew committed Dec 17, 2015
1 parent 1472d24 commit f0d8dfa
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,7 @@
## next release

* `Aws\CloudFront` - Added support for generating signed cookies.
* `Aws\Config` - Added for IAM resource types.
* `Aws\Rds` - Added support for enhanced monitoring.

## 3.11.6 - 2015-12-15
Expand Down
25 changes: 21 additions & 4 deletions src/data/config/2014-11-12/api-2.json
Expand Up @@ -19,7 +19,8 @@
},
"input":{"shape":"DeleteConfigRuleRequest"},
"errors":[
{"shape":"NoSuchConfigRuleException"}
{"shape":"NoSuchConfigRuleException"},
{"shape":"ResourceInUseException"}
]
},
"DeleteDeliveryChannel":{
Expand Down Expand Up @@ -234,7 +235,8 @@
"errors":[
{"shape":"InvalidParameterValueException"},
{"shape":"MaxNumberOfConfigRulesExceededException"},
{"shape":"ResourceInUseException"}
{"shape":"ResourceInUseException"},
{"shape":"InsufficientPermissionsException"}
]
},
"PutConfigurationRecorder":{
Expand Down Expand Up @@ -436,9 +438,12 @@
"ConfigRuleId":{"shape":"String"},
"LastSuccessfulInvocationTime":{"shape":"Date"},
"LastFailedInvocationTime":{"shape":"Date"},
"LastSuccessfulEvaluationTime":{"shape":"Date"},
"LastFailedEvaluationTime":{"shape":"Date"},
"FirstActivatedTime":{"shape":"Date"},
"LastErrorCode":{"shape":"String"},
"LastErrorMessage":{"shape":"String"}
"LastErrorMessage":{"shape":"String"},
"FirstEvaluationStarted":{"shape":"Boolean"}
}
},
"ConfigRuleEvaluationStatusList":{
Expand Down Expand Up @@ -862,12 +867,19 @@
"nextToken":{"shape":"NextToken"}
}
},
"IncludeGlobalResourceTypes":{"type":"boolean"},
"InsufficientDeliveryPolicyException":{
"type":"structure",
"members":{
},
"exception":true
},
"InsufficientPermissionsException":{
"type":"structure",
"members":{
},
"exception":true
},
"Integer":{"type":"integer"},
"InvalidConfigurationRecorderNameException":{
"type":"structure",
Expand Down Expand Up @@ -1105,6 +1117,7 @@
"type":"structure",
"members":{
"allSupported":{"shape":"AllSupported"},
"includeGlobalResourceTypes":{"shape":"IncludeGlobalResourceTypes"},
"resourceTypes":{"shape":"ResourceTypeList"}
}
},
Expand Down Expand Up @@ -1177,7 +1190,11 @@
"AWS::EC2::Volume",
"AWS::EC2::VPC",
"AWS::EC2::VPNConnection",
"AWS::EC2::VPNGateway"
"AWS::EC2::VPNGateway",
"AWS::IAM::Group",
"AWS::IAM::Policy",
"AWS::IAM::Role",
"AWS::IAM::User"
]
},
"ResourceTypeList":{
Expand Down
2 changes: 1 addition & 1 deletion src/data/config/2014-11-12/api-2.json.php

Large diffs are not rendered by default.

22 changes: 18 additions & 4 deletions src/data/config/2014-11-12/docs-2.json
Expand Up @@ -42,7 +42,7 @@
"AllSupported": {
"base": null,
"refs": {
"RecordingGroup$allSupported": "<p>Records all supported resource types in the recording group. For a list of supported resource types, see <a href=\"http://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources\">Supported resource types</a>. If you specify <b>allSupported</b>, you cannot enumerate a list of <b>resourceTypes</b>. </p>"
"RecordingGroup$allSupported": "<p>Specifies whether AWS Config records configuration changes for every supported type of regional resource.</p> <p>If you set this option to <code>true</code>, when AWS Config adds support for a new type of regional resource, it automatically starts recording resources of that type.</p> <p>If you set this option to <code>true</code>, you cannot enumerate a list of <code>resourceTypes</code>.</p>"
}
},
"AvailabilityZone": {
Expand All @@ -61,6 +61,7 @@
"base": null,
"refs": {
"ComplianceContributorCount$CapExceeded": "<p>Indicates whether the maximum count is reached.</p>",
"ConfigRuleEvaluationStatus$FirstEvaluationStarted": "<p>Indicates whether AWS Config has evaluated your resources against the rule at least once.</p> <ul> <li><code>true</code> - AWS Config has evaluated your AWS resources against the rule at least once.</li> <li><code>false</code> - AWS Config has not once finished evaluating your AWS resources against the rule.</li> </ul>",
"ConfigurationRecorderStatus$recording": "<p>Specifies whether the recorder is currently recording or not.</p>",
"ListDiscoveredResourcesRequest$includeDeletedResources": "<p>Specifies whether AWS Config includes deleted resources in the results. By default, deleted resources are not included.</p>"
}
Expand Down Expand Up @@ -303,6 +304,8 @@
"ConfigExportDeliveryInfo$nextDeliveryTime": "<p>The time that the next delivery occurs.</p>",
"ConfigRuleEvaluationStatus$LastSuccessfulInvocationTime": "<p>The time that AWS Config last successfully invoked the AWS Config rule to evaluate your AWS resources.</p>",
"ConfigRuleEvaluationStatus$LastFailedInvocationTime": "<p>The time that AWS Config last failed to invoke the AWS Config rule to evaluate your AWS resources.</p>",
"ConfigRuleEvaluationStatus$LastSuccessfulEvaluationTime": "<p>The time that AWS Config last successfully evaluated your AWS resources against the rule.</p>",
"ConfigRuleEvaluationStatus$LastFailedEvaluationTime": "<p>The time that AWS Config last failed to evaluate your AWS resources against the rule.</p>",
"ConfigRuleEvaluationStatus$FirstActivatedTime": "<p>The time that you first activated the AWS Config rule.</p>",
"ConfigStreamDeliveryInfo$lastStatusChangeTime": "<p>The time from the last status change.</p>",
"ConfigurationRecorderStatus$lastStartTime": "<p>The time the recorder was last started.</p>",
Expand Down Expand Up @@ -553,11 +556,22 @@
"refs": {
}
},
"IncludeGlobalResourceTypes": {
"base": null,
"refs": {
"RecordingGroup$includeGlobalResourceTypes": "<p>Specifies whether AWS Config includes all supported types of global resources with the resources that it records.</p> <p>Before you can set this option to <code>true</code>, you must set the <code>allSupported</code> option to <code>true</code>.</p> <p>If you set this option to <code>true</code>, when AWS Config adds support for a new type of global resource, it automatically starts recording resources of that type.</p>"
}
},
"InsufficientDeliveryPolicyException": {
"base": "<p>Your Amazon S3 bucket policy does not permit AWS Config to write to it.</p>",
"refs": {
}
},
"InsufficientPermissionsException": {
"base": "<p>Indicates one of the following errors:</p> <ul> <li>The rule cannot be created because the IAM role assigned to AWS Config lacks permissions to perform the config:Put* action.</li> <li>The AWS Lambda function cannot be invoked. Check the function ARN, and check the function's permissions.</li> </ul>",
"refs": {
}
},
"Integer": {
"base": null,
"refs": {
Expand Down Expand Up @@ -784,9 +798,9 @@
}
},
"RecordingGroup": {
"base": "<p>The group of AWS resource types that AWS Config records when starting the configuration recorder.</p> <p><b>recordingGroup</b> can have one and only one parameter. Choose either <b>allSupported</b> or <b>resourceTypes</b>.</p>",
"base": "<p>Specifies the types of AWS resource for which AWS Config records configuration changes.</p> <p>In the recording group, you specify whether all supported types or specific types of resources are recorded.</p> <p>By default, AWS Config records configuration changes for all supported types of regional resources that AWS Config discovers in the region in which it is running. Regional resources are tied to a region and can be used only in that region. Examples of regional resources are EC2 instances and EBS volumes.</p> <p>You can also have AWS Config record configuration changes for supported types of global resources. Global resources are not tied to an individual region and can be used in all regions.</p> <important>The configuration details for any global resource are the same in all regions. If you customize AWS Config in multiple regions to record global resources, it will create multiple configuration items each time a global resource changes: one configuration item for each region. These configuration items will contain identical data. To prevent duplicate configuration items, you should consider customizing AWS Config in only one region to record global resources, unless you want the configuration items to be available in multiple regions.</important> <p>If you don't want AWS Config to record all resources, you can specify which types of resources it will record with the <code>resourceTypes</code> parameter.</p> <p>For a list of supported resource types, see <a href=\"http://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources\">Supported resource types</a>.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/config/latest/developerguide/select-resources.html\">Selecting Which Resources AWS Config Records</a>.</p>",
"refs": {
"ConfigurationRecorder$recordingGroup": "<p>The recording group specifies either to record configurations for all supported resources or to provide a list of resource types to record. The list of resource types must be a subset of supported resource types.</p>"
"ConfigurationRecorder$recordingGroup": "<p>Specifies the types of AWS resource for which AWS Config records configuration changes.</p>"
}
},
"RelatedEvent": {
Expand Down Expand Up @@ -892,7 +906,7 @@
"ResourceTypeList": {
"base": null,
"refs": {
"RecordingGroup$resourceTypes": "<p>A comma-separated list of strings representing valid AWS resource types (for example, <code>AWS::EC2::Instance</code> or <code>AWS::CloudTrail::Trail</code>). <b>resourceTypes</b> is only valid if you have chosen not to select <b>allSupported</b>. For a list of valid <b>resourceTypes</b> values, see the <b>resourceType Value</b> column in the following topic: <a href=\"http://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources\">Supported AWS Resource Types</a>.</p>"
"RecordingGroup$resourceTypes": "<p>A comma-separated list that specifies the types of AWS resources for which AWS Config records configuration changes (for example, <code>AWS::EC2::Instance</code> or <code>AWS::CloudTrail::Trail</code>).</p> <p>Before you can set this option to <code>true</code>, you must set the <code>allSupported</code> option to <code>false</code>.</p> <p>If you set this option to <code>true</code>, 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.</p> <p>For a list of valid <code>resourceTypes</code> values, see the <b>resourceType Value</b> column in <a href=\"http://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources\">Supported AWS Resource Types</a>.</p>"
}
},
"ResourceTypes": {
Expand Down
2 changes: 1 addition & 1 deletion src/data/config/2014-11-12/docs-2.json.php

Large diffs are not rendered by default.

0 comments on commit f0d8dfa

Please sign in to comment.