AWS simspaceweaver documentation change
Summary
Updated references from 'AWS CloudFormation' to 'CloudFormation' for consistency, removed redundant 'AWS' branding in service mentions.
Security assessment
The changes are purely branding/terminology updates (shortening 'AWS CloudFormation' to 'CloudFormation'). There are no security-related content additions, vulnerability fixes, or security feature documentation. The example about IAM roles/permissions was already present and remains unchanged in security context.
Diff
diff --git a/simspaceweaver/1.16/userguide/working-with_cloudformation.md b/simspaceweaver/1.16/userguide/working-with_cloudformation.md index 4d679e924..eb28b5c33 100644 --- a//simspaceweaver/1.16/userguide/working-with_cloudformation.md +++ b//simspaceweaver/1.16/userguide/working-with_cloudformation.md @@ -9 +9 @@ End of support notice: On May 20, 2026, AWS will end support for AWS SimSpace We -You can use AWS CloudFormation to manage your AWS SimSpace Weaver resources. AWS CloudFormation is a separate AWS service that helps you specify, provision, and manage your AWS infrastructure as code. With AWS CloudFormation you create a JSON or YAML file, called a _[template](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-whatis-concepts.html#cfn-concepts-templates template)_. Your template specifies the details of your infrastructure. AWS CloudFormation uses your template to provision your infrastructure as a single unit, called a _[stack](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-whatis-concepts.html#w2ab1b5c15b9)_. When you delete your stack, you can have AWS CloudFormation delete everything in the stack at the same time. You can manage your template using standard source code management processes (for example, tracking it in a version control system like [Git](https://git-scm.com/)). For more information about AWS CloudFormation, see the [_AWS CloudFormation User Guide_](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide). +You can use AWS CloudFormation to manage your AWS SimSpace Weaver resources. CloudFormation is a separate AWS service that helps you specify, provision, and manage your AWS infrastructure as code. With CloudFormation you create a JSON or YAML file, called a _[template](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-whatis-concepts.html#cfn-concepts-templates template)_. Your template specifies the details of your infrastructure. CloudFormation uses your template to provision your infrastructure as a single unit, called a _[stack](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-whatis-concepts.html#w2ab1b5c15b9)_. When you delete your stack, you can have CloudFormation delete everything in the stack at the same time. You can manage your template using standard source code management processes (for example, tracking it in a version control system like [Git](https://git-scm.com/)). For more information about CloudFormation, see the [_AWS CloudFormation User Guide_](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide). @@ -13 +13 @@ You can use AWS CloudFormation to manage your AWS SimSpace Weaver resources. AWS -In AWS, a _resource_ is an entity that you can work with. Examples include an Amazon EC2 instance, an Amazon S3 bucket, or an IAM role. Your SimSpace Weaver simulation is a resource. In configurations, you usually specify an AWS resource in the form `AWS::`service`::resource`. For SimSpace Weaver, you specify your simulation resource as `AWS::SimSpaceWeaver::Simulation`. For more information about your simulation resource in AWS CloudFormation, see the [SimSpace Weaver](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-simspaceweaver-simulation.html) section in the _AWS CloudFormation User Guide_. +In AWS, a _resource_ is an entity that you can work with. Examples include an Amazon EC2 instance, an Amazon S3 bucket, or an IAM role. Your SimSpace Weaver simulation is a resource. In configurations, you usually specify an AWS resource in the form `AWS::`service`::resource`. For SimSpace Weaver, you specify your simulation resource as `AWS::SimSpaceWeaver::Simulation`. For more information about your simulation resource in CloudFormation, see the [SimSpace Weaver](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-simspaceweaver-simulation.html) section in the _AWS CloudFormation User Guide_. @@ -15 +15 @@ In AWS, a _resource_ is an entity that you can work with. Examples include an Am -###### How can I use AWS CloudFormation with SimSpace Weaver? +###### How can I use CloudFormation with SimSpace Weaver? @@ -17 +17 @@ In AWS, a _resource_ is an entity that you can work with. Examples include an Am -You can create an AWS CloudFormation template that specifies the AWS resources that you want to provision. Your template can specify an entire architecture, part of an architecture, or a small solution. For example, you could specify an architecture for your SimSpace Weaver solution that includes Amazon S3 buckets, IAM permissions, a supporting database in Amazon Relational Database Service or Amazon DynamoDB, and your `Simulation` resource. You can then use AWS CloudFormation to provision all of those resources as a unit, and at the same time. +You can create an CloudFormation template that specifies the AWS resources that you want to provision. Your template can specify an entire architecture, part of an architecture, or a small solution. For example, you could specify an architecture for your SimSpace Weaver solution that includes Amazon S3 buckets, IAM permissions, a supporting database in Amazon Relational Database Service or Amazon DynamoDB, and your `Simulation` resource. You can then use CloudFormation to provision all of those resources as a unit, and at the same time. @@ -21 +21 @@ You can create an AWS CloudFormation template that specifies the AWS resources t -The following example template creates an IAM role and permissions that SimSpace Weaver needs to perform actions in your account. The SimSpace Weaver app SDK scripts create the role and permissions in a specific AWS Region when you create a project, but you can use an AWS CloudFormation template to deploy the simulation to another AWS Region without running the scripts again. For example, you can do this to set up a backup simulation for disaster recovery purposes. +The following example template creates an IAM role and permissions that SimSpace Weaver needs to perform actions in your account. The SimSpace Weaver app SDK scripts create the role and permissions in a specific AWS Region when you create a project, but you can use an CloudFormation template to deploy the simulation to another AWS Region without running the scripts again. For example, you can do this to set up a backup simulation for disaster recovery purposes. @@ -23 +23 @@ The following example template creates an IAM role and permissions that SimSpace -In this example, the original simulation name is `MySimulation`. A bucket for the schema already exists in the AWS Region where AWS CloudFormation will build the stack. The bucket contains a version of the schema that is properly configured to run the simulation in that AWS Region. Recall that the schema specifies the location of your app zip files, which is an Amazon S3 bucket in the same AWS Region as the simulation. The app zips bucket and files must already exist in the AWS Region when AWS CloudFormation builds the stack, otherwise your simulation won't start. Note that the bucket name in this example includes the AWS Region, but that doesn't determine where the bucket is actually located. You must make sure that the bucket is actually in that AWS Region (you can check the bucket properties in the Amazon S3 console, with the Amazon S3 APIs, or with the Amazon S3 commands in the AWS CLI). +In this example, the original simulation name is `MySimulation`. A bucket for the schema already exists in the AWS Region where CloudFormation will build the stack. The bucket contains a version of the schema that is properly configured to run the simulation in that AWS Region. Recall that the schema specifies the location of your app zip files, which is an Amazon S3 bucket in the same AWS Region as the simulation. The app zips bucket and files must already exist in the AWS Region when CloudFormation builds the stack, otherwise your simulation won't start. Note that the bucket name in this example includes the AWS Region, but that doesn't determine where the bucket is actually located. You must make sure that the bucket is actually in that AWS Region (you can check the bucket properties in the Amazon S3 console, with the Amazon S3 APIs, or with the Amazon S3 commands in the AWS CLI). @@ -25 +25 @@ In this example, the original simulation name is `MySimulation`. A bucket for th -This example uses some built-in functions and parameters in AWS CloudFormation to perform variable substitution. For more information, see [ Intrinsic function reference](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference.html) and [ Pseudo parameters reference](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/pseudo-parameter-reference.html) in the _AWS CloudFormation User Guide_. +This example uses some built-in functions and parameters in CloudFormation to perform variable substitution. For more information, see [ Intrinsic function reference](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference.html) and [ Pseudo parameters reference](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/pseudo-parameter-reference.html) in the _AWS CloudFormation User Guide_.