AWS AWSCloudFormation documentation change
Summary
Removed single quotes around resource types in CloudFormation template examples
Security assessment
Purely syntactic update for consistency. No modifications to import functionality, resource configurations, or security controls. Nested stack security mechanisms remain unaffected.
Diff
diff --git a/AWSCloudFormation/latest/UserGuide/resource-import-nested-stacks.md b/AWSCloudFormation/latest/UserGuide/resource-import-nested-stacks.md index 674179f74..3f735cbd1 100644 --- a//AWSCloudFormation/latest/UserGuide/resource-import-nested-stacks.md +++ b//AWSCloudFormation/latest/UserGuide/resource-import-nested-stacks.md @@ -76 +76 @@ During a nested stack import operation, CloudFormation performs the following va - Type: 'AWS::DynamoDB::Table' + Type: AWS::DynamoDB::Table @@ -89 +89 @@ During a nested stack import operation, CloudFormation performs the following va - Type: 'AWS::CloudFormation::Stack' + Type: AWS::CloudFormation::Stack @@ -191 +191 @@ It's not necessary to run drift detection on the parent stack after this import - Type: 'AWS::DynamoDB::Table' + Type: AWS::DynamoDB::Table @@ -204 +204 @@ It's not necessary to run drift detection on the parent stack after this import - Type: 'AWS::CloudFormation::Stack' + Type: AWS::CloudFormation::Stack @@ -239 +239 @@ For example, to import `MyNestedStack`, you might create a `ResourcesToImport.tx - ResourceType: 'AWS::CloudFormation::Stack' + ResourceType: AWS::CloudFormation::Stack