{
  "Parameters": {
    "ParameterNameParameter": {
      "Type": "String",
      "Default": "myParamName"
    }
  },
  "Resources": {
    "StringAutogenE7E896E4": {
      "Type": "AWS::SSM::Parameter",
      "Properties": {
        "Type": "String",
        "Value": "hello, world"
      }
    },
    "StringSimpleA681514D": {
      "Type": "AWS::SSM::Parameter",
      "Properties": {
        "Type": "String",
        "Value": "hello, world",
        "Name": "simple-name"
      }
    },
    "StringPathD8120137": {
      "Type": "AWS::SSM::Parameter",
      "Properties": {
        "Type": "String",
        "Value": "hello, world",
        "Name": "/path/name/foo/bar"
      }
    },
    "ListAutogenC5DA1CAE": {
      "Type": "AWS::SSM::Parameter",
      "Properties": {
        "Type": "StringList",
        "Value": "hello,world"
      }
    },
    "ListSimple9DB641CB": {
      "Type": "AWS::SSM::Parameter",
      "Properties": {
        "Type": "StringList",
        "Value": "hello,world",
        "Name": "list-simple-name"
      }
    },
    "ListPath120D6FAB": {
      "Type": "AWS::SSM::Parameter",
      "Properties": {
        "Type": "StringList",
        "Value": "hello,world",
        "Name": "/list/path/name"
      }
    },
    "ParameterizedSimpleB6311859": {
      "Type": "AWS::SSM::Parameter",
      "Properties": {
        "Type": "String",
        "Value": "hello, world",
        "Name": {
          "Ref": "ParameterNameParameter"
        }
      }
    },
    "ParameterizedNonSimple23C44BF6": {
      "Type": "AWS::SSM::Parameter",
      "Properties": {
        "Type": "String",
        "Value": "hello, world",
        "Name": {
          "Fn::Join": [
            "",
            [
              "/",
              {
                "Ref": "ParameterNameParameter"
              },
              "/non/simple"
            ]
          ]
        }
      }
    }
  },
  "Outputs": {
    "StringAutogenArn": {
      "Value": {
        "Fn::Join": [
          "",
          [
            "arn:",
            {
              "Ref": "AWS::Partition"
            },
            ":ssm:",
            {
              "Ref": "AWS::Region"
            },
            ":",
            {
              "Ref": "AWS::AccountId"
            },
            ":parameter/",
            {
              "Ref": "StringAutogenE7E896E4"
            }
          ]
        ]
      }
    },
    "StringSimpleArn": {
      "Value": {
        "Fn::Join": [
          "",
          [
            "arn:",
            {
              "Ref": "AWS::Partition"
            },
            ":ssm:",
            {
              "Ref": "AWS::Region"
            },
            ":",
            {
              "Ref": "AWS::AccountId"
            },
            ":parameter/",
            {
              "Ref": "StringSimpleA681514D"
            }
          ]
        ]
      }
    },
    "StringPathArn": {
      "Value": {
        "Fn::Join": [
          "",
          [
            "arn:",
            {
              "Ref": "AWS::Partition"
            },
            ":ssm:",
            {
              "Ref": "AWS::Region"
            },
            ":",
            {
              "Ref": "AWS::AccountId"
            },
            ":parameter",
            {
              "Ref": "StringPathD8120137"
            }
          ]
        ]
      }
    },
    "ListAutogenArn": {
      "Value": {
        "Fn::Join": [
          "",
          [
            "arn:",
            {
              "Ref": "AWS::Partition"
            },
            ":ssm:",
            {
              "Ref": "AWS::Region"
            },
            ":",
            {
              "Ref": "AWS::AccountId"
            },
            ":parameter/",
            {
              "Ref": "ListAutogenC5DA1CAE"
            }
          ]
        ]
      }
    },
    "ListSimpleArn": {
      "Value": {
        "Fn::Join": [
          "",
          [
            "arn:",
            {
              "Ref": "AWS::Partition"
            },
            ":ssm:",
            {
              "Ref": "AWS::Region"
            },
            ":",
            {
              "Ref": "AWS::AccountId"
            },
            ":parameter/",
            {
              "Ref": "ListSimple9DB641CB"
            }
          ]
        ]
      }
    },
    "ListPathArn": {
      "Value": {
        "Fn::Join": [
          "",
          [
            "arn:",
            {
              "Ref": "AWS::Partition"
            },
            ":ssm:",
            {
              "Ref": "AWS::Region"
            },
            ":",
            {
              "Ref": "AWS::AccountId"
            },
            ":parameter",
            {
              "Ref": "ListPath120D6FAB"
            }
          ]
        ]
      }
    },
    "ParameterizedSimpleArn": {
      "Value": {
        "Fn::Join": [
          "",
          [
            "arn:",
            {
              "Ref": "AWS::Partition"
            },
            ":ssm:",
            {
              "Ref": "AWS::Region"
            },
            ":",
            {
              "Ref": "AWS::AccountId"
            },
            ":parameter/",
            {
              "Ref": "ParameterizedSimpleB6311859"
            }
          ]
        ]
      }
    },
    "ParameterizedNonSimpleArn": {
      "Value": {
        "Fn::Join": [
          "",
          [
            "arn:",
            {
              "Ref": "AWS::Partition"
            },
            ":ssm:",
            {
              "Ref": "AWS::Region"
            },
            ":",
            {
              "Ref": "AWS::AccountId"
            },
            ":parameter",
            {
              "Ref": "ParameterizedNonSimple23C44BF6"
            }
          ]
        ]
      }
    }
  }
}