Which CloudFormation resource type should the SysOps administrator create to meet these requirements?
AWS::EC2::Instance with a cfn-init helper script
AWS::OpsWorks::Instance
AWS::SSM::Document
Custom::MyCustomType
Explanations:
AWS::EC2::Instance is used for managing EC2 instances, and while a cfn-init helper script can configure EC2 instances, it doesn’t support creating multiple AWS services as a single resource.
AWS::OpsWorks::Instance is used to create instances in AWS OpsWorks, a configuration management service. It does not allow for managing multiple AWS services as a single resource.
AWS::SSM::Document is used to manage Systems Manager (SSM) documents. It doesn’t allow for creating multiple AWS services as a single resource in CloudFormation.
Custom::MyCustomType is used to create custom resources in CloudFormation. This type supports the creation and deletion of multiple AWS services as a single resource, allowing for complex configurations.