Skip to content

Commit 8decdd4

Browse files
Adds support to configure canaries with pre-configured blueprint code on supported runtime versions. This behavior can be controlled via the new BlueprintTypes property exposed in the CreateCanary and UpdateCanary APIs.
Add new warning type 'EXCLUDED_RESOURCES' Updated descriptions for the Location parameter in CreateTrustedEntitySet and CreateThreatEntitySet. New Search All Related Items API enables searching related items across cases Add support for dual-stack account endpoint generation
1 parent 506ce7e commit 8decdd4

File tree

59 files changed

+3588
-916
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+3588
-916
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.660
1+
1.11.661

generated/src/aws-cpp-sdk-cloudformation/include/aws/cloudformation/CloudFormationClient.h

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ namespace CloudFormation
491491
* <p>Deactivates a public third-party extension, such as a resource or module, or
492492
* a CloudFormation Hook when you no longer use it.</p> <p>Deactivating an
493493
* extension deletes the configuration details that are associated with it. To
494-
* temporary disable a CloudFormation Hook instead, you can use <a
494+
* temporarily disable a CloudFormation Hook instead, you can use <a
495495
* href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_SetTypeConfiguration.html">SetTypeConfiguration</a>.</p>
496496
* <p>Once deactivated, an extension can't be used in any CloudFormation operation.
497497
* This includes stack update operations where the stack template includes the
@@ -1235,7 +1235,10 @@ namespace CloudFormation
12351235
* registry in your current account and Region.</p> <p>If you specify a
12361236
* <code>VersionId</code>, <code>DescribeType</code> returns information about that
12371237
* specific extension version. Otherwise, it returns information about the default
1238-
* extension version.</p><p><h3>See Also:</h3> <a
1238+
* extension version.</p> <p>For more information, see <a
1239+
* href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-set-configuration.html">Edit
1240+
* configuration data for extensions in your account</a> in the <i>CloudFormation
1241+
* User Guide</i>.</p><p><h3>See Also:</h3> <a
12391242
* href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeType">AWS
12401243
* API Reference</a></p>
12411244
*/
@@ -1748,8 +1751,8 @@ namespace CloudFormation
17481751
/**
17491752
* <p>Returns summaries of invoked Hooks. For more information, see <a
17501753
* href="https://docs.aws.amazon.com/cloudformation-cli/latest/hooks-userguide/hooks-view-invocations.html">View
1751-
* CloudFormation Hooks invocations</a> in the <i>CloudFormation Hooks User
1752-
* Guide</i>.</p> <p>This operation supports the following parameter
1754+
* invocation summaries for CloudFormation Hooks</a> in the <i>CloudFormation Hooks
1755+
* User Guide</i>.</p> <p>This operation supports the following parameter
17531756
* combinations:</p> <ul> <li> <p>No parameters: Returns all Hook invocation
17541757
* summaries.</p> </li> <li> <p> <code>TypeArn</code> only: Returns summaries for a
17551758
* specific Hook.</p> </li> <li> <p> <code>TypeArn</code> and <code>Status</code>:
@@ -2462,19 +2465,27 @@ namespace CloudFormation
24622465
}
24632466

24642467
/**
2465-
* <p>Specifies the configuration data for a registered CloudFormation extension,
2466-
* in the given account and Region.</p> <p>To view the current configuration data
2467-
* for an extension, refer to the <code>ConfigurationSchema</code> element of <a
2468-
* href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html">DescribeType</a>.
2469-
* For more information, see <a
2468+
* <p>Specifies the configuration data for a CloudFormation extension, such as a
2469+
* resource or Hook, in the given account and Region.</p> <p>For more information,
2470+
* see <a
24702471
* href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-set-configuration.html">Edit
24712472
* configuration data for extensions in your account</a> in the <i>CloudFormation
2472-
* User Guide</i>.</p> <p>It's strongly recommended that you use
2473-
* dynamic references to restrict sensitive configuration definitions, such as
2474-
* third-party credentials. For more details on dynamic references, see <a
2473+
* User Guide</i>.</p> <p>To view the current configuration data for an extension,
2474+
* refer to the <code>ConfigurationSchema</code> element of <a
2475+
* href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html">DescribeType</a>.</p>
2476+
* <p>It's strongly recommended that you use dynamic references to
2477+
* restrict sensitive configuration definitions, such as third-party credentials.
2478+
* For more information, see <a
24752479
* href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/dynamic-references.html">Specify
24762480
* values stored in other services using dynamic references</a> in the
2477-
* <i>CloudFormation User Guide</i>.</p> <p><h3>See Also:</h3> <a
2481+
* <i>CloudFormation User Guide</i>.</p> <p>For more information about
2482+
* setting the configuration data for resource types, see <a
2483+
* href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-model.html#resource-type-howto-configuration">Defining
2484+
* the account-level configuration of an extension</a> in the <i>CloudFormation
2485+
* Command Line Interface (CLI) User Guide</i>. For more information about setting
2486+
* the configuration data for Hooks, see the <a
2487+
* href="https://docs.aws.amazon.com/cloudformation-cli/latest/hooks-userguide/what-is-cloudformation-hooks.html">CloudFormation
2488+
* Hooks User Guide</a>.</p><p><h3>See Also:</h3> <a
24782489
* href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/SetTypeConfiguration">AWS
24792490
* API Reference</a></p>
24802491
*/

generated/src/aws-cpp-sdk-cloudformation/include/aws/cloudformation/model/ActivateTypeRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ namespace Model
9595

9696
///@{
9797
/**
98-
* <p>An alias to assign to the public extension, in this account and Region. If
99-
* you specify an alias for the extension, CloudFormation treats the alias as the
98+
* <p>An alias to assign to the public extension in this account and Region. If you
99+
* specify an alias for the extension, CloudFormation treats the alias as the
100100
* extension type name within this account and Region. You must use the alias to
101101
* refer to the extension in your templates, API calls, and CloudFormation
102102
* console.</p> <p>An extension alias must be unique within a given account and

generated/src/aws-cpp-sdk-cloudformation/include/aws/cloudformation/model/ActivateTypeResult.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ namespace Model
3535

3636
///@{
3737
/**
38-
* <p>The Amazon Resource Name (ARN) of the activated extension, in this account
39-
* and Region.</p>
38+
* <p>The Amazon Resource Name (ARN) of the activated extension in this account and
39+
* Region.</p>
4040
*/
4141
inline const Aws::String& GetArn() const { return m_arn; }
4242
template<typename ArnT = Aws::String>

generated/src/aws-cpp-sdk-cloudformation/include/aws/cloudformation/model/CreateGeneratedTemplateRequest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ namespace Model
4242
///@{
4343
/**
4444
* <p>An optional list of resources to be included in the generated template.</p>
45-
* <p> If no resources are specified,the template will be created without any
45+
* <p>If no resources are specified,the template will be created without any
4646
* resources. Resources can be added to the template using the
4747
* <code>UpdateGeneratedTemplate</code> API action.</p>
4848
*/

generated/src/aws-cpp-sdk-cloudformation/include/aws/cloudformation/model/DeactivateTypeRequest.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ namespace Model
3939

4040
///@{
4141
/**
42-
* <p>The type name of the extension, in this account and Region. If you specified
43-
* a type name alias when enabling the extension, use the type name alias.</p>
42+
* <p>The type name of the extension in this account and Region. If you specified a
43+
* type name alias when enabling the extension, use the type name alias.</p>
4444
* <p>Conditional: You must specify either <code>Arn</code>, or
4545
* <code>TypeName</code> and <code>Type</code>.</p>
4646
*/
@@ -65,7 +65,7 @@ namespace Model
6565

6666
///@{
6767
/**
68-
* <p>The Amazon Resource Name (ARN) for the extension, in this account and
68+
* <p>The Amazon Resource Name (ARN) for the extension in this account and
6969
* Region.</p> <p>Conditional: You must specify either <code>Arn</code>, or
7070
* <code>TypeName</code> and <code>Type</code>.</p>
7171
*/

generated/src/aws-cpp-sdk-cloudformation/include/aws/cloudformation/model/DescribeTypeResult.h

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -158,11 +158,12 @@ namespace Model
158158

159159
///@{
160160
/**
161-
* <p>The schema that defines the extension.</p> <p>For more information about
162-
* extension schemas, see <a
161+
* <p>The schema that defines the extension.</p> <p>For more information, see <a
163162
* href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html">Resource
164163
* type schema</a> in the <i>CloudFormation Command Line Interface (CLI) User
165-
* Guide</i>.</p>
164+
* Guide</i> and the <a
165+
* href="https://docs.aws.amazon.com/cloudformation-cli/latest/hooks-userguide/what-is-cloudformation-hooks.html">CloudFormation
166+
* Hooks User Guide</a>.</p>
166167
*/
167168
inline const Aws::String& GetSchema() const { return m_schema; }
168169
template<typename SchemaT = Aws::String>
@@ -329,11 +330,7 @@ namespace Model
329330
* <p>A JSON string that represent the current configuration data for the extension
330331
* in this account and Region.</p> <p>To set the configuration data for an
331332
* extension, use <a
332-
* href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_SetTypeConfiguration.html">SetTypeConfiguration</a>.
333-
* For more information, see <a
334-
* href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-set-configuration.html">Edit
335-
* configuration data for extensions in your account</a> in the <i>CloudFormation
336-
* User Guide</i>.</p>
333+
* href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_SetTypeConfiguration.html">SetTypeConfiguration</a>.</p>
337334
*/
338335
inline const Aws::String& GetConfigurationSchema() const { return m_configurationSchema; }
339336
template<typename ConfigurationSchemaT = Aws::String>

generated/src/aws-cpp-sdk-cloudformation/include/aws/cloudformation/model/ListGeneratedTemplatesRequest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ namespace Model
5050

5151
///@{
5252
/**
53-
* <p> If the number of available results exceeds this maximum, the response
53+
* <p>If the number of available results exceeds this maximum, the response
5454
* includes a <code>NextToken</code> value that you can use for the
5555
* <code>NextToken</code> parameter to get the next set of results. By default the
5656
* <code>ListGeneratedTemplates</code> API action will return at most 50 results in

generated/src/aws-cpp-sdk-cloudformation/include/aws/cloudformation/model/ListResourceScanRelatedResourcesRequest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ namespace Model
7979

8080
///@{
8181
/**
82-
* <p> If the number of available results exceeds this maximum, the response
82+
* <p>If the number of available results exceeds this maximum, the response
8383
* includes a <code>NextToken</code> value that you can use for the
8484
* <code>NextToken</code> parameter to get the next set of results. By default the
8585
* <code>ListResourceScanRelatedResources</code> API action will return up to 100

generated/src/aws-cpp-sdk-cloudformation/include/aws/cloudformation/model/ListResourceScanResourcesRequest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ namespace Model
113113

114114
///@{
115115
/**
116-
* <p> If the number of available results exceeds this maximum, the response
116+
* <p>If the number of available results exceeds this maximum, the response
117117
* includes a <code>NextToken</code> value that you can use for the
118118
* <code>NextToken</code> parameter to get the next set of results. By default the
119119
* <code>ListResourceScanResources</code> API action will return at most 100

0 commit comments

Comments
 (0)