hashicorp / aws-cloudformation-resource-schema-sdk-go

This package provides AWS CloudFormation Resource Schema functionality in Go
Mozilla Public License 2.0
4 stars 2 forks source link

Support `arrayType` property #45

Closed ewbankkit closed 1 year ago

ewbankkit commented 1 year ago

Relates https://github.com/aws-cloudformation/cloudformation-resource-schema/pull/141.

Add support for arrayType.

ewbankkit commented 1 year ago

For example:

    "OptionSettings": {
      "description": "Option values for the Elastic Beanstalk configuration, such as the instance type. If specified, these values override the values obtained from the solution stack or the source configuration template. For a complete list of Elastic Beanstalk configuration options, see [Option Values](https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options.html) in the AWS Elastic Beanstalk Developer Guide. ",
      "type": "array",
      "arrayType": "AttributeList",
      "uniqueItems": false,
      "insertionOrder": false,
      "items": {
        "$ref": "#/definitions/ConfigurationOptionSetting"
      }
    },